Skip to content

Commit

Permalink
Fight club mode added (adangert#144)
Browse files Browse the repository at this point in the history
* Rename commander.py to games/commander.py

* Rename speed_bomb.py to games/speed_bomb.py

* Rename zombie.py to games/zombie.py

* Rename tournament.py to games/tournament.py

* Rename swapper.py to games/swapper.py

* Update piparty.py

* Create fight_club

* Update fight_club

* added fightclub WIP

* fixed timer/sound bug

* added wip changes

* added faceoff for fight_club

* added more bug fixes for fight club
  • Loading branch information
adangert authored Jan 4, 2018
1 parent 79627e8 commit 053e372
Show file tree
Hide file tree
Showing 6 changed files with 648 additions and 7 deletions.
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

0 comments on commit 053e372

Please sign in to comment.