From 4840c16da3153feafde33f6a853528bb7c55366a Mon Sep 17 00:00:00 2001 From: Robert Wall Date: Sun, 7 Jul 2013 13:29:22 -0700 Subject: [PATCH] Change playercounts for drunk, traitor, and wolf2 Per discussion in #wolfgame-dev, this commit changes the playercounts at which drunk, traitor, and wolf2 are introduced. It removes drunk from 6p and 7p games (moving it from 6 to 8), adds traitor to 8p and 9p games (moving it from 10 to 8), and removes wolf2 from 8p and 9p games (moving it from 8 to 10). Or, in other words, it moves drunk later and switches traitor and wolf2. Statistics on the effect of these two changes can be measured independently, because they affect different ranges of games. If this commit causes gameplay or other issues, feel free to revert it. --- settings/wolfgame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/wolfgame.py b/settings/wolfgame.py index 0015a28..bab497a 100644 --- a/settings/wolfgame.py +++ b/settings/wolfgame.py @@ -52,8 +52,8 @@ DETECTIVE_REVEALED_CHANCE = 2/5 # ROLE INDEX: PLAYERS SEER WOLF CURSED DRUNK HARLOT TRAITOR GUNNER CROW ANGEL DETECTIVE ## ################################################################################################################# ROLES_GUIDE = { 4 : ( 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ), ## - 6 : ( 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 ), ## - 8 : ( 1 , 2 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 ), ## + 6 : ( 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ), ## + 8 : ( 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 ), ## 10 : ( 1 , 2 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 ), ## 12 : ( 1 , 2 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 ), ## 15 : ( 1 , 3 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 1 ), ##