示例#1
0
 def create_minion(self, player):
     return Minion(6,
                   6,
                   divine_shield=True,
                   taunt=True,
                   deathrattle=Deathrattle(Equip(Ashbringer()),
                                           PlayerSelector()))
示例#2
0
 def __init__(self):
     super().__init__("Arathi Weaponsmith",
                      4,
                      CHARACTER_CLASS.WARRIOR,
                      CARD_RARITY.COMMON,
                      battlecry=Battlecry(Equip(BattleAxe()),
                                          PlayerSelector()))
示例#3
0
 def __init__(self):
     super().__init__("Lord Jaraxxus",
                      9,
                      CHARACTER_CLASS.WARLOCK,
                      CARD_RARITY.LEGENDARY,
                      minion_type=MINION_TYPE.DEMON,
                      battlecry=(Battlecry(Transform(Jaraxxus()),
                                           HeroSelector()),
                                 Battlecry(Remove(), SelfSelector()),
                                 Battlecry(Equip(BloodFury()),
                                           PlayerSelector())))