Beispiel #1
0
 def create_minion(self, player):
     minion = Minion(2, 2)
     minion.spell_damage = 1
     return minion
Beispiel #2
0
 def create_minion(self, player):
     minion = Minion(4, 4, MINION_TYPE.DRAGON, battlecry=draw_card)
     minion.spell_damage = 1
     return minion
Beispiel #3
0
 def create_minion(self, player):
     minion = Minion(1, 1, deathrattle=draw_card)
     minion.spell_damage = 1
     return minion
Beispiel #4
0
 def create_minion(self, player):
     minion = Minion(4, 12, MINION_TYPE.DRAGON)
     minion.spell_damage = 5
     return minion