Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fight club mode added #144

Merged
merged 14 commits into from
Jan 4, 2018
Binary file added audio/Joust/sounds/beep_loud.wav
Binary file not shown.
7 changes: 4 additions & 3 deletions common.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ class Games(enum.Enum):
Zombies = (5, 'Zombies', 4)
Commander = (6, 'Commander', 4)
Swapper = (7, 'Swapper', 3)
Tournament = (8, 'Tournament', 3)
Ninja = (9, 'Ninja Bomb', 2)
Random = (10, 'Random', 2)
FightClub = (8, 'Fight Club', 3)
Tournament = (9, 'Tournament', 3)
Ninja = (10, 'Ninja Bomb', 2)
Random = (11, 'Random', 2)


def __new__(cls, value, pretty_name, min_players):
Expand Down
Loading