Пример #1
0
 def __init__(self):
     super().__init__()
     self._name = 'Nepharus'
     self._description = ('A jet-black serpent with baleful eyes. It'
                          'resides in the far recesses of the cosmos.')
     self._element = Elements.DARK
     self._left_icon = ':tophat:'
     self._right_icon = ':tophat:'
     self._portrait = None
     self._learnable_abilities = [
         LearnableAbilities.razor_fangs(),
         LearnableAbilities.reap(),
         LearnableAbilities.blood_fangs(5),
         LearnableAbilities.rend(10),
         LearnableAbilities.black_pinion(15),
         LearnableAbilities.geyser(20),
         LearnableAbilities.quake(25),
         LearnableAbilities.dissonant_roar(30),
         LearnableAbilities.howling_dark(35)
     ]
Пример #2
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)
     ]