예제 #1
0
 def __init__(self):
     super().__init__("Druid of the Claw",
                      5,
                      CHARACTER_CLASS.DRUID,
                      CARD_RARITY.COMMON,
                      choices=[
                          Choice(CatForm(), Transform(CatDruid()),
                                 SelfSelector()),
                          Choice(BearForm(), Transform(BearDruid()),
                                 SelfSelector())
                      ])
예제 #2
0
 def __init__(self):
     super().__init__("Druid of the Flame",
                      3,
                      CHARACTER_CLASS.DRUID,
                      CARD_RARITY.COMMON,
                      choices=[
                          Choice(FlameCatForm(), Transform(FlameCat()),
                                 SelfSelector()),
                          Choice(FlameBirdForm(), Transform(FlameBird()),
                                 SelfSelector())
                      ])
예제 #3
0
 def __init__(self):
     super().__init__("Druid of the Fang",
                      5,
                      CHARACTER_CLASS.DRUID,
                      CARD_RARITY.COMMON,
                      battlecry=Battlecry(
                          Transform(CobraForm()), SelfSelector(),
                          GreaterThan(Count(
                              MinionSelector(IsType(MINION_TYPE.BEAST))),
                                      value=0)))
예제 #4
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())))