From 336e0b425360bfcf43f73bd276cdfb2a7a460000 Mon Sep 17 00:00:00 2001 From: shinoi2 Date: Tue, 12 Mar 2024 14:08:09 +0800 Subject: [PATCH] fix bugs for event listener cards * [ICC_238] Animated Berserker * [GIL_672] Spectral Cutlass * [GIL_807] Bogshaper * [OG_334] Hooded Acolyte --- fireplace/cards/icecrown/warrior.py | 2 +- fireplace/cards/witchwood/rogue.py | 2 +- fireplace/cards/witchwood/shaman.py | 2 +- fireplace/cards/wog/priest.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fireplace/cards/icecrown/warrior.py b/fireplace/cards/icecrown/warrior.py index 25580b01a..3d54e2772 100644 --- a/fireplace/cards/icecrown/warrior.py +++ b/fireplace/cards/icecrown/warrior.py @@ -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: diff --git a/fireplace/cards/witchwood/rogue.py b/fireplace/cards/witchwood/rogue.py index 5bfcc12c1..ab097b3ad 100644 --- a/fireplace/cards/witchwood/rogue.py +++ b/fireplace/cards/witchwood/rogue.py @@ -74,7 +74,7 @@ class GIL_696: class GIL_672: """Spectral Cutlass""" # [x]Lifesteal 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) diff --git a/fireplace/cards/witchwood/shaman.py b/fireplace/cards/witchwood/shaman.py index 711aa26e8..0389bcad2 100644 --- a/fireplace/cards/witchwood/shaman.py +++ b/fireplace/cards/witchwood/shaman.py @@ -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: diff --git a/fireplace/cards/wog/priest.py b/fireplace/cards/wog/priest.py index 1810bba67..cdb885a06 100644 --- a/fireplace/cards/wog/priest.py +++ b/fireplace/cards/wog/priest.py @@ -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: