示例#1
0
 def __init__(self, checker, move):
     name = {
         "Att. d'Ala": "Attacco d'Ala",
         "Sottomiss.": "Sottomissione",
         "Mov. Sismico": "Movimento Sismico",
         "Megassorbim.": "Megassorbimento",
         "Att. Rapido": "Attacco Rapido",
         "Teletraspor.": "Teletrasporto",
         "Ombra Nott.": "Ombra Notturna",
         "Autodistruz.": "Autodistruzione",
         "Att. Pioggia": "Attacco Pioggia",
         "Trasformaz.": "Trasformazione",
         "Destinobbl.": "Destinobbligato",
         "Gigassorbim.": "Gigassorbimento",
     }.get(move.name, move.name)
     ArticleChecker.__init__(self, checker, name + " (mossa)")
     self.move = move
示例#2
0
 def __init__(self, checker, move):
     ArticleChecker.__init__(self, checker, move.name + ' (move)')
     self.move = move
示例#3
0
 def __init__(self, checker, species):
     ArticleChecker.__init__(self, checker, species.name + ' (Pokémon)')
     self.species = species
示例#4
0
 def __init__(self, checker, species):
     ArticleChecker.__init__(self, checker, species.name_map[en])
     self.species = species