mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-04-25 15:57:07 -05:00
73 lines
857 B
Python
73 lines
857 B
Python
# coding: utf-8
|
|
|
|
cry_names = [
|
|
'Nidoran_M',
|
|
'Nidoran_F',
|
|
'Slowpoke',
|
|
'Kangaskhan',
|
|
'Charmander',
|
|
'Grimer',
|
|
'Voltorb',
|
|
'Muk',
|
|
'Oddish',
|
|
'Raichu',
|
|
'Nidoqueen',
|
|
'Diglett',
|
|
'Seel',
|
|
'Drowzee',
|
|
'Pidgey',
|
|
'Bulbasaur',
|
|
'Spearow',
|
|
'Rhydon',
|
|
'Golem',
|
|
'Blastoise',
|
|
'Pidgeotto',
|
|
'Weedle',
|
|
'Caterpie',
|
|
'Ekans',
|
|
'Fearow',
|
|
'Clefairy',
|
|
'Venonat',
|
|
'Lapras',
|
|
'Metapod',
|
|
'Squirtle',
|
|
'Paras',
|
|
'Growlithe',
|
|
'Krabby',
|
|
'Psyduck',
|
|
'Rattata',
|
|
'Vileplume',
|
|
'Vulpix',
|
|
'Weepinbell',
|
|
'Marill',
|
|
'Spinarak',
|
|
'Togepi',
|
|
'Girafarig',
|
|
'Raikou',
|
|
'Mareep',
|
|
'Togetic',
|
|
'Hoothoot',
|
|
'Sentret',
|
|
'Slowking',
|
|
'Cyndaquil',
|
|
'Chikorita',
|
|
'Totodile',
|
|
'Gligar',
|
|
'Cleffa',
|
|
'Slugma',
|
|
'Ledyba',
|
|
'Entei',
|
|
'Wooper',
|
|
'Mantine',
|
|
'Typhlosion',
|
|
'Natu',
|
|
'Teddiursa',
|
|
'Sunflora',
|
|
'Ampharos',
|
|
'Magcargo',
|
|
'Pichu',
|
|
'Aipom',
|
|
'Dunsparce',
|
|
'Donphan',
|
|
]
|