This commit is contained in:
2026-03-19 22:34:02 +01:00
parent d1a39620a7
commit fa05447895
18 changed files with 796 additions and 369 deletions

View File

@@ -253,7 +253,8 @@ def action_sacrifice(state: GameState, slot: int) -> str | None:
if card is None:
return "No card in that slot"
player.energy += card.cost
# player.energy += card.cost
player.energy += 1
player.board[slot] = None
return None