We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f022ced commit 7c1f8e2Copy full SHA for 7c1f8e2
fireplace/brawls/__init__.py
@@ -1,4 +1,6 @@
1
import random
2
+from ..actions import RandomCardGenerator, Give
3
+from ..enums import CardType
4
from ..game import Game
5
6
@@ -69,3 +71,21 @@ def prepare(self):
69
71
else:
70
72
player.summon("BRMC_94") # Sulfuras
73
74
+
75
+class BananaBrawl(Game):
76
+ """
77
+ Banana Brawl!
78
79
+ Mukla is a year older, and he LOVES bananas! Whenever
80
+ one of your minions dies, he gives you a Banana to
81
+ celebrate!
82
83
84
+ class RandomBanana(RandomCardGenerator):
85
+ cards = ("EX1_014t", "TB_006", "TB_007", "TB_008")
86
87
+ def _schedule_death(self, card):
88
+ ret = super()._schedule_death(card)
89
+ if card.type == CardType.MINION:
90
+ ret.append(Give(card.controller, self.RandomBanana()))
91
+ return ret
0 commit comments