Пример #1
0
 def __init__(self):
     super().__init__()
     self._name = 'Roaus'
     self._description = 'A horse with a thousand hammers'
     self._element = Elements.EARTH
     self._left_icon = OX
     self._right_icon = OX
     self._portrait = None
     self._learnable_abilities = [LearnableAbilities.charge(),
                                  LearnableAbilities.slam(),
                                  LearnableAbilities.windrush(4),
                                  LearnableAbilities.quake(8),
                                  LearnableAbilities.counter(12),
                                  LearnableAbilities.stonehide(16)]
Пример #2
0
 def __init__(self):
     super().__init__()
     self._name = 'Rex'
     self._description = 'The mountains awoke when their charge granted them a portion of her life force.'
     self._element = Elements.EARTH
     self._left_icon = ':rhino:'
     self._right_icon = ':rhino:'
     self._portrait = None
     self._learnable_abilities = [LearnableAbilities.slam(),
                                  LearnableAbilities.charge(),
                                  LearnableAbilities.enrage(4),
                                  LearnableAbilities.rampage(9),
                                  LearnableAbilities.rend(14),
                                  LearnableAbilities.quake(18),
                                  LearnableAbilities.fireball(23),
                                  LearnableAbilities.stormbolt(28),
                                  LearnableAbilities.counter(33)]
Пример #3
0
 def __init__(self):
     super().__init__()
     self._name = 'Noel'
     self._description = (
         'A great ice-aspected warg. Ancient Eldorian legend states '
         'that it will appear to the one destined to rule.')
     self._element = Elements.WATER
     self._left_icon = ':wolf:'
     self._right_icon = ':wolf:'
     self._portrait = None
     self._learnable_abilities = [
         LearnableAbilities.reap(),
         LearnableAbilities.razor_fangs(),
         LearnableAbilities.geyser(4),
         LearnableAbilities.blood_fangs(8),
         LearnableAbilities.rend(12),
         LearnableAbilities.gale_step(17),
         LearnableAbilities.windrush(22),
         LearnableAbilities.frost_barrier(25),
         LearnableAbilities.deluge(27),
         LearnableAbilities.icy_snap(32),
         LearnableAbilities.counter(37)
     ]