def text(self, converter: AsTextConverter) -> str:
     if self.toggle == 1:
         return converter.awakening_heal_convert(self)
     elif self.toggle == 2:
         return converter.awakening_attack_boost_convert(self)
     elif self.toggle == 3:
         return converter.awakening_shield_convert(self)
     else:
         return None
 def text(self, converter: AsTextConverter) -> str:
     return converter.random_nuke_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.auto_heal_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.absorb_mechanic_void_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.true_gravity_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.attr_nuke_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.random_orb_change_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.lock_convert(self)
 def text(self, converter: AsTextConverter) -> str:
     return converter.drain_attr_attack_convert(self)
Esempio n. 10
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.grudge_strike_convert(self)
Esempio n. 11
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.leader_swap(self)
Esempio n. 12
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.type_attack_boost_convert(self)
Esempio n. 13
0
 def text(self, converter: AsTextConverter) -> str:
     if self.duration == 0:
         return None
     return converter.attribute_attack_boost_convert(self)
Esempio n. 14
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.suicide_nuke_convert(self)
Esempio n. 15
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.counterattack_convert(self)
Esempio n. 16
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.heal_active_convert(self)
Esempio n. 17
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.haste_convert(self)
Esempio n. 18
0
 def full_text(self, converter: AsTextConverter):
     return self.text if self.repeat == 1 else converter.fmt_repeated(
         self.text, self.repeat)
Esempio n. 19
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.change_enemies_attribute_convert(self)
Esempio n. 20
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.random_skill(self)
Esempio n. 21
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.row_change_convert(self)
Esempio n. 22
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.move_time_buff_convert(self)
Esempio n. 23
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.extra_combo_convert(self)
Esempio n. 24
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.enhance_convert(self)
Esempio n. 25
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.unlock_all_orbs(self)
Esempio n. 26
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.spawn_orb_convert(self)
Esempio n. 27
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.fixed_pos_convert(self)
Esempio n. 28
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.attack_attr_x_team_atk_convert(self)
Esempio n. 29
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.no_skyfall_convert(self)
Esempio n. 30
0
 def text(self, converter: AsTextConverter) -> str:
     return converter.mass_attack_convert(self)