Example #1
0
 def __init__(self):
     super().__init__()
     self._name = 'Mithus'
     self._description = 'Avatar of water'
     self._element = Elements.WATER
     self._left_icon = WHALE
     self._right_icon = WHALE
     self._portrait = None
     self._learnable_abilities = [
         LearnableAbilities.razor_fangs(),
         LearnableAbilities.claw(),
         LearnableAbilities.geyser(4),
         LearnableAbilities.frost_barrier(8),
         LearnableAbilities.icy_snap(12),
         LearnableAbilities.enrage(16),
         LearnableAbilities.deluge(25),
         LearnableAbilities.dissonant_roar(30)
     ]
Example #2
0
 def __init__(self):
     super().__init__()
     self._name = 'Felix'
     self._description = ('An aquatic twin-tailed fox with an uncanny ability to sense people in distress.'
                          'It is said to come to the aid of the lost.')
     self._element = Elements.WATER
     self._growth_rate = GrowthRate()
     self._left_icon = ':fox:'
     self._right_icon = ':fox:'
     self._portrait = None
     self._learnable_abilities = [LearnableAbilities.slam(),
                                  LearnableAbilities.blessed_rain(),
                                  LearnableAbilities.geyser(5),
                                  LearnableAbilities.windrush(10),
                                  LearnableAbilities.gale_step(15),
                                  LearnableAbilities.cyclone(20),
                                  LearnableAbilities.deluge(25),
                                  LearnableAbilities.frost_barrier(30),
                                  LearnableAbilities.icy_snap(35)]
Example #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)
     ]