Add slice effect

This commit is contained in:
Chris Proctor
2026-03-19 13:08:24 -04:00
parent cfb06479ae
commit d504fd6a05
2 changed files with 47 additions and 1 deletions

View File

@@ -12,6 +12,6 @@ def play():
Catcher((11, 29)),
FruitManager(),
]
state = {'score': 0, 'lives': 5}
state = {'score': 0, 'lives': 5, 'slices': 3}
game = Game(agents, state, board_size=(WIDTH, HEIGHT), framerate=24, color="white_on_indigo", dump_state="result.json")
game.play()