From b4fc0a214b61b1b7f7e0d1b070dbfa181831f6f9 Mon Sep 17 00:00:00 2001 From: skizzerz Date: Sat, 3 Jan 2015 21:29:25 -0600 Subject: [PATCH] Reduce number of immunizations doctor gets Now doctor gets 2 at 10p, 3 at 15p, and 4 at 23p. Formerly it was 2 at 10p, 3 at 12p, 4 at 18p, and 5 at 24p. This reduces the doctor to being able to only immunize between 13.64% and 20% of the village (min at 22p, max at 10p and 15p), down from between 17.39% and 25% (min at 23p, max at 12p). --- settings/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/wolfgame.py b/settings/wolfgame.py index a1b9c11..65960dd 100644 --- a/settings/wolfgame.py +++ b/settings/wolfgame.py @@ -95,7 +95,7 @@ SHARPSHOOTER_CHANCE = 1/5 # if sharpshooter is enabled, chance that a gunner wil AMNESIAC_NIGHTS = 3 # amnesiac gets to know their actual role on this night ALPHA_WOLF_NIGHTS = 3 # alpha wolf turns the target into a wolf after this many nights (note the night they are bitten is considered night 1) -DOCTOR_IMMUNIZATION_MULTIPLIER = 0.17 # ceil(num_players * multiplier) = number of immunizations +DOCTOR_IMMUNIZATION_MULTIPLIER = 0.135 # ceil(num_players * multiplier) = number of immunizations TOTEM_ORDER = ( "shaman" , "crazed shaman" ) TOTEM_CHANCES = { "death": ( 1 , 1 ),