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