Example #1
0
 def __init__(self):
     super().__init__()
     self._name = 'Tophu'
     self._description = 'A lesser elemental, also called an elemental mote.'
     self._element = Elements.LIGHT
     self._left_icon = '✨'
     self._right_icon = '✨'
     self._portrait = None
     self._learnable_abilities = [
         LearnableAbilities.claw(),
         LearnableAbilities.slam()
     ]
Example #2
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)]
Example #3
0
 def __init__(self):
     super().__init__()
     self._name = 'Slyfe'
     self._description = 'Avatar of the Wind'
     self._element = Elements.WIND
     self._left_icon = ':dove:'
     self._right_icon = ':dove:'
     self._portrait = None
     self._learnable_abilities = [
         LearnableAbilities.slam(),
         LearnableAbilities.cyclone(),
         LearnableAbilities.windrush(4),
         LearnableAbilities.gale_step(8),
         LearnableAbilities.stormbolt(12),
         LearnableAbilities.blessed_rain(16)
     ]
Example #4
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)]
Example #5
0
 def __init__(self):
     super().__init__()
     self._name = 'Rainatu'
     self._description = 'Not a pineapple.'
     self._element = Elements.LIGHTNING
     self._left_icon = PINEAPPLE
     self._right_icon = PINEAPPLE
     self._portrait = None
     self._growth_rate = GrowthRate()
     self._learnable_abilities = [
         LearnableAbilities.slam(),
         LearnableAbilities.rolling_thunder(),
         LearnableAbilities.stormbolt(4),
         LearnableAbilities.windrush(8),
         LearnableAbilities.recharge(12),
         LearnableAbilities.gale_step(16),
         LearnableAbilities.aurora(25)
     ]
Example #6
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)]