Skip to content

Commit

Permalink
fix bugs for event listener cards
Browse files Browse the repository at this point in the history
* [ICC_238] Animated Berserker
* [GIL_672] Spectral Cutlass
* [GIL_807] Bogshaper
* [OG_334] Hooded Acolyte
  • Loading branch information
shinoi2 committed Mar 12, 2024
1 parent ae652cd commit 336e0b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fireplace/cards/icecrown/warrior.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ICC_062:

class ICC_238:
"""Animated Berserker"""
play = Play(CONTROLLER, MINION).after(Hit(Play.CARD, 1))
events = Play(CONTROLLER, MINION).after(Hit(Play.CARD, 1))


class ICC_405:
Expand Down
2 changes: 1 addition & 1 deletion fireplace/cards/witchwood/rogue.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class GIL_696:
class GIL_672:
"""Spectral Cutlass"""
# [x]<b>Lifesteal</b> Whenever you play a card from another class, gain +1 Durability.
play = Play(CONTROLLER, OTHER_CLASS_CHARACTER).after(Buff(SELF, "GIL_672e"))
events = Play(CONTROLLER, OTHER_CLASS_CHARACTER).after(Buff(SELF, "GIL_672e"))


GIL_672e = buff(health=1)
2 changes: 1 addition & 1 deletion fireplace/cards/witchwood/shaman.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GIL_583:
class GIL_807:
"""Bogshaper"""
# Whenever you cast a spell, draw a minion from your_deck.
play = Play(CONTROLLER, SPELL).after(ForceDraw(FRIENDLY_DECK + MINION))
events = Play(CONTROLLER, SPELL).after(ForceDraw(FRIENDLY_DECK + MINION))


class GIL_820:
Expand Down
2 changes: 1 addition & 1 deletion fireplace/cards/wog/priest.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class OG_096:

class OG_334:
"""Hooded Acolyte"""
play = Heal(ALL_CHARACTERS).on(Buff(CTHUN, "OG_281e", atk=1, max_health=1))
events = Heal(ALL_CHARACTERS).on(Buff(CTHUN, "OG_281e", atk=1, max_health=1))


class OG_234:
Expand Down

0 comments on commit 336e0b4

Please sign in to comment.