No Description

pokedex_order.s 23KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123
  1. #include <pkmn_name.h>
  2. .align 2
  3. .thumb
  4. .text
  5. .global pokedex_order
  6. pokedex_order:
  7. .hword PKMN_BISASAM
  8. .hword PKMN_BISAKNOSP
  9. .hword PKMN_BISAFLOR
  10. .hword PKMN_GLUMANDA
  11. .hword PKMN_GLUTEXO
  12. .hword PKMN_GLURAK
  13. .hword PKMN_SCHIGGY
  14. .hword PKMN_SCHILLOK
  15. .hword PKMN_TURTOK
  16. .hword PKMN_RAUPY
  17. .hword PKMN_SAFCON
  18. .hword PKMN_SMETTBO
  19. .hword PKMN_HORNLIU
  20. .hword PKMN_KOKUNA
  21. .hword PKMN_BIBOR
  22. .hword PKMN_TAUBSI
  23. .hword PKMN_TAUBOGA
  24. .hword PKMN_TAUBOSS
  25. .hword PKMN_RATTFRATZ
  26. .hword PKMN_RATTIKARL
  27. .hword PKMN_HABITAK
  28. .hword PKMN_IBITAK
  29. .hword PKMN_RETTAN
  30. .hword PKMN_ARBOK
  31. .hword PKMN_PIKACHU
  32. .hword PKMN_RAICHU
  33. .hword PKMN_SANDAN
  34. .hword PKMN_SANDAMER
  35. .hword PKMN_NIDORAN_W
  36. .hword PKMN_NIDORINA
  37. .hword PKMN_NIDOQUEEN
  38. .hword PKMN_NIDORAN_M
  39. .hword PKMN_NIDORINO
  40. .hword PKMN_NIDOKING
  41. .hword PKMN_PIEPI
  42. .hword PKMN_PIXI
  43. .hword PKMN_VULPIX
  44. .hword PKMN_VULNONA
  45. .hword PKMN_PUMMELUFF
  46. .hword PKMN_KNUDDELUFF
  47. .hword PKMN_ZUBAT
  48. .hword PKMN_GOLBAT
  49. .hword PKMN_MYRAPLA
  50. .hword PKMN_DUFLOR
  51. .hword PKMN_GIFLOR
  52. .hword PKMN_PARAS
  53. .hword PKMN_PARASEK
  54. .hword PKMN_BLUZUK
  55. .hword PKMN_OMOT
  56. .hword PKMN_DIGDA
  57. .hword PKMN_DIGDRI
  58. .hword PKMN_MAUZI
  59. .hword PKMN_SNOBILIKAT
  60. .hword PKMN_ENTON
  61. .hword PKMN_ENTORON
  62. .hword PKMN_MENKI
  63. .hword PKMN_RASAFF
  64. .hword PKMN_FUKANO
  65. .hword PKMN_ARKANI
  66. .hword PKMN_QUAPSEL
  67. .hword PKMN_QUAPUTZI
  68. .hword PKMN_QUAPPO
  69. .hword PKMN_ABRA
  70. .hword PKMN_KADABRA
  71. .hword PKMN_SIMSALA
  72. .hword PKMN_MACHOLLO
  73. .hword PKMN_MASCHOCK
  74. .hword PKMN_MACHOMEI
  75. .hword PKMN_KNOFENSA
  76. .hword PKMN_ULTRIGARIA
  77. .hword PKMN_SARZENIA
  78. .hword PKMN_TENTACHA
  79. .hword PKMN_TENTOXA
  80. .hword PKMN_KLEINSTEIN
  81. .hword PKMN_GEOROK
  82. .hword PKMN_GEOWAZ
  83. .hword PKMN_PONITA
  84. .hword PKMN_GALLOPA
  85. .hword PKMN_FLEGMON
  86. .hword PKMN_LAHMUS
  87. .hword PKMN_MAGNETILO
  88. .hword PKMN_MAGNETON
  89. .hword PKMN_PORENTA
  90. .hword PKMN_DODU
  91. .hword PKMN_DODRI
  92. .hword PKMN_JUROB
  93. .hword PKMN_JUGONG
  94. .hword PKMN_SLEIMA
  95. .hword PKMN_SLEIMOK
  96. .hword PKMN_MUSCHAS
  97. .hword PKMN_AUSTOS
  98. .hword PKMN_NEBULAK
  99. .hword PKMN_ALPOLLO
  100. .hword PKMN_GENGAR
  101. .hword PKMN_ONIX
  102. .hword PKMN_TRAUMATO
  103. .hword PKMN_HYPNO
  104. .hword PKMN_KRABBY
  105. .hword PKMN_KINGLER
  106. .hword PKMN_VOLTOBAL
  107. .hword PKMN_LEKTROBAL
  108. .hword PKMN_OWEI
  109. .hword PKMN_KOKOWEI
  110. .hword PKMN_TRAGOSSO
  111. .hword PKMN_KNOGGA
  112. .hword PKMN_KICKLEE
  113. .hword PKMN_NOCKCHAN
  114. .hword PKMN_SCHLURP
  115. .hword PKMN_SMOGON
  116. .hword PKMN_SMOGMOG
  117. .hword PKMN_RIHORN
  118. .hword PKMN_RIZEROS
  119. .hword PKMN_CHANEIRA
  120. .hword PKMN_TANGELA
  121. .hword PKMN_KANGAMA
  122. .hword PKMN_SEEPER
  123. .hword PKMN_SEEMON
  124. .hword PKMN_GOLDINI
  125. .hword PKMN_GOLKING
  126. .hword PKMN_STERNDU
  127. .hword PKMN_STARMIE
  128. .hword PKMN_PANTIMOS
  129. .hword PKMN_SICHLOR
  130. .hword PKMN_ROSSANA
  131. .hword PKMN_ELEKTEK
  132. .hword PKMN_MAGMAR
  133. .hword PKMN_PINSIR
  134. .hword PKMN_TAUROS
  135. .hword PKMN_KARPADOR
  136. .hword PKMN_GARADOS
  137. .hword PKMN_LAPRAS
  138. .hword PKMN_DITTO
  139. .hword PKMN_EVOLI
  140. .hword PKMN_AQUANA
  141. .hword PKMN_BLITZA
  142. .hword PKMN_FLAMARA
  143. .hword PKMN_PORYGON
  144. .hword PKMN_AMONITAS
  145. .hword PKMN_AMOROSO
  146. .hword PKMN_KABUTO
  147. .hword PKMN_KABUTOPS
  148. .hword PKMN_AERODACTYL
  149. .hword PKMN_RELAXO
  150. .hword PKMN_ARKTOS
  151. .hword PKMN_ZAPDOS
  152. .hword PKMN_LAVADOS
  153. .hword PKMN_DRATINI
  154. .hword PKMN_DRAGONIR
  155. .hword PKMN_DRAGORAN
  156. .hword PKMN_MEWTU
  157. .hword PKMN_MEW
  158. .hword PKMN_ENDIVIE
  159. .hword PKMN_LORBLATT
  160. .hword PKMN_MEGANIE
  161. .hword PKMN_FEURIGEL
  162. .hword PKMN_IGELAVAR
  163. .hword PKMN_TORNUPTO
  164. .hword PKMN_KARNIMANI
  165. .hword PKMN_TYRACROC
  166. .hword PKMN_IMPERGATOR
  167. .hword PKMN_WIESOR
  168. .hword PKMN_WIESENIOR
  169. .hword PKMN_HOOTHOOT
  170. .hword PKMN_NOCTUH
  171. .hword PKMN_LEDYBA
  172. .hword PKMN_LEDIAN
  173. .hword PKMN_WEBARAK
  174. .hword PKMN_ARIADOS
  175. .hword PKMN_IKSBAT
  176. .hword PKMN_LAMPI
  177. .hword PKMN_LANTURN
  178. .hword PKMN_PICHU
  179. .hword PKMN_PII
  180. .hword PKMN_FLUFFELUFF
  181. .hword PKMN_TOGEPI
  182. .hword PKMN_TOGETIC
  183. .hword PKMN_NATU
  184. .hword PKMN_XATU
  185. .hword PKMN_VOLTILAMM
  186. .hword PKMN_WAATY
  187. .hword PKMN_AMPHAROS
  188. .hword PKMN_BLUBELLA
  189. .hword PKMN_MARILL
  190. .hword PKMN_AZUMARILL
  191. .hword PKMN_MOGELBAUM
  192. .hword PKMN_QUAXO
  193. .hword PKMN_HOPPSPROSS
  194. .hword PKMN_HUBELUPF
  195. .hword PKMN_PAPUNGHA
  196. .hword PKMN_GRIFFEL
  197. .hword PKMN_SONNKERN
  198. .hword PKMN_SONNFLORA
  199. .hword PKMN_YANMA
  200. .hword PKMN_FELINO
  201. .hword PKMN_MORLORD
  202. .hword PKMN_PSIANA
  203. .hword PKMN_NACHTARA
  204. .hword PKMN_KRAMURX
  205. .hword PKMN_LASCHOKING
  206. .hword PKMN_TRAUNFUGIL
  207. .hword PKMN_ICOGNITO
  208. .hword PKMN_WOINGENAU
  209. .hword PKMN_GIRAFARIG
  210. .hword PKMN_TANNZA
  211. .hword PKMN_FORSTELLKA
  212. .hword PKMN_DUMMISEL
  213. .hword PKMN_SKORGLA
  214. .hword PKMN_STAHLOS
  215. .hword PKMN_SNUBBULL
  216. .hword PKMN_GRANBULL
  217. .hword PKMN_BALDORFISH
  218. .hword PKMN_SCHEROX
  219. .hword PKMN_POTTROTT
  220. .hword PKMN_SKARABORN
  221. .hword PKMN_SNIEBEL
  222. .hword PKMN_TEDDIURSA
  223. .hword PKMN_URSARING
  224. .hword PKMN_SCHNECKMAG
  225. .hword PKMN_MAGCARGO
  226. .hword PKMN_QUIEKEL
  227. .hword PKMN_KEIFEL
  228. .hword PKMN_CORASONN
  229. .hword PKMN_REMORAID
  230. .hword PKMN_OCTILLERY
  231. .hword PKMN_BOTOGEL
  232. .hword PKMN_MANTAX
  233. .hword PKMN_PANZAERON
  234. .hword PKMN_HUNDUSTER
  235. .hword PKMN_HUNDEMON
  236. .hword PKMN_SEEDRAKING
  237. .hword PKMN_PHANPY
  238. .hword PKMN_DONPHAN
  239. .hword PKMN_PORYGON2
  240. .hword PKMN_DAMHIRPLEX
  241. .hword PKMN_FARBEAGLE
  242. .hword PKMN_RABAUZ
  243. .hword PKMN_KAPOERA
  244. .hword PKMN_KUSSILLA
  245. .hword PKMN_ELEKID
  246. .hword PKMN_MAGBY
  247. .hword PKMN_MILTANK
  248. .hword PKMN_HEITEIRA
  249. .hword PKMN_RAIKOU
  250. .hword PKMN_ENTEI
  251. .hword PKMN_SUICUNE
  252. .hword PKMN_LARVITAR
  253. .hword PKMN_PUPITAR
  254. .hword PKMN_DESPOTAR
  255. .hword PKMN_LUGIA
  256. .hword PKMN_HO_OH
  257. .hword PKMN_CELEBI
  258. .hword PKMN_ALOLA_RATTFRATZ
  259. .hword PKMN_ALOLA_RATIKARL
  260. .hword PKMN_ALOLA_RAICHU
  261. .hword PKMN_ALOLA_SANDAN
  262. .hword PKMN_ALOLA_SANDAMER
  263. .hword PKMN_ALOLA_VULPIX
  264. .hword PKMN_ALOLA_VULNONA
  265. .hword PKMN_ALOLA_DIGDA
  266. .hword PKMN_ALOLA_DIGDRI
  267. .hword PKMN_ALOLA_MAUZI
  268. .hword PKMN_ALOLA_SNOBILIKAT
  269. .hword PKMN_ALOLA_KLEINSTEIN
  270. .hword PKMN_ALOLA_GEOROK
  271. .hword PKMN_ALOLA_GEOWAZ
  272. .hword PKMN_ALOLA_SLEIMA
  273. .hword PKMN_ALOLA_SLEIMOK
  274. .hword PKMN_ALOLA_KOKOWEI
  275. .hword PKMN_ALOLA_KNOGGA
  276. .hword PKMN_VEMOI
  277. .hword PKMN_LUMONA
  278. .hword PKMN_LIASU
  279. .hword PKMN_MAMOI
  280. .hword PKMN_LUMOYO
  281. .hword PKMN_LIOSU
  282. .hword PKMN_PSIAUGON_M
  283. .hword PKMN_GECKARBOR
  284. .hword PKMN_REPTAIN
  285. .hword PKMN_GEWALDRO
  286. .hword PKMN_FLEMMLI
  287. .hword PKMN_JUNGGLUT
  288. .hword PKMN_LOHGOCK
  289. .hword PKMN_HYDROPI
  290. .hword PKMN_MOORABBEL
  291. .hword PKMN_SUMPEX
  292. .hword PKMN_FIFFYEN
  293. .hword PKMN_MAGNAYEN
  294. .hword PKMN_ZIGZACHS
  295. .hword PKMN_GERADAKS
  296. .hword PKMN_WAUMPEL
  297. .hword PKMN_SCHALOKO
  298. .hword PKMN_PAPINELLA
  299. .hword PKMN_PANEKON
  300. .hword PKMN_PUDOX
  301. .hword PKMN_LOTURZEL
  302. .hword PKMN_LOMBRERO
  303. .hword PKMN_KAPPALORES
  304. .hword PKMN_SAMURZEL
  305. .hword PKMN_BLANAS
  306. .hword PKMN_TENGULIST
  307. .hword PKMN_NINCADA
  308. .hword PKMN_NINJASK
  309. .hword PKMN_NINJATOM
  310. .hword PKMN_SCHWALBINI
  311. .hword PKMN_SCHWALBOSS
  312. .hword PKMN_KNILZ
  313. .hword PKMN_KAPILZ
  314. .hword PKMN_PANDIR
  315. .hword PKMN_WINGULL
  316. .hword PKMN_PELIPPER
  317. .hword PKMN_GEHWEIHER
  318. .hword PKMN_MASKEREGEN
  319. .hword PKMN_WAILMER
  320. .hword PKMN_WAILORD
  321. .hword PKMN_ENECO
  322. .hword PKMN_ENEKORO
  323. .hword PKMN_KECLEON
  324. .hword PKMN_PUPPANCE
  325. .hword PKMN_LEPUMENTAS
  326. .hword PKMN_NASGNET
  327. .hword PKMN_QURTEL
  328. .hword PKMN_ZOBIRIS
  329. .hword PKMN_SCHMERBE
  330. .hword PKMN_WELSAR
  331. .hword PKMN_LIEBISKUS
  332. .hword PKMN_KREBSCORPS
  333. .hword PKMN_KREBUTACK
  334. .hword PKMN_BARSCHWA
  335. .hword PKMN_MILOTIC
  336. .hword PKMN_KANIVANHA
  337. .hword PKMN_TOHAIDO
  338. .hword PKMN_KNACKLION
  339. .hword PKMN_VIBRAVA
  340. .hword PKMN_LIBELLDRA
  341. .hword PKMN_MAKUHITA
  342. .hword PKMN_HARIYAMA
  343. .hword PKMN_FRIZELBLIZ
  344. .hword PKMN_VOLTENSO
  345. .hword PKMN_CAMAUB
  346. .hword PKMN_CAMERUPT
  347. .hword PKMN_SEEMOPS
  348. .hword PKMN_SEEJONG
  349. .hword PKMN_WALRAISA
  350. .hword PKMN_TUSKA
  351. .hword PKMN_NOKTUSKA
  352. .hword PKMN_SCHNEPPKE
  353. .hword PKMN_FIRNONTOR
  354. .hword PKMN_LUNASTEIN
  355. .hword PKMN_SONNFEL
  356. .hword PKMN_AZURILL
  357. .hword PKMN_SPOINK
  358. .hword PKMN_GROINK
  359. .hword PKMN_PLUSLE
  360. .hword PKMN_MINUN
  361. .hword PKMN_FLUNKIFER
  362. .hword PKMN_MEDITIE
  363. .hword PKMN_MEDITALIS
  364. .hword PKMN_WABLU
  365. .hword PKMN_ALTARIA
  366. .hword PKMN_ISSO
  367. .hword PKMN_ZWIRRLICHT
  368. .hword PKMN_ZWIRRKLOP
  369. .hword PKMN_ROSELIA
  370. .hword PKMN_BUMMELZ
  371. .hword PKMN_MUNTIER
  372. .hword PKMN_LETARKING
  373. .hword PKMN_SCHLUPPUCK
  374. .hword PKMN_SCHLUKWECH
  375. .hword PKMN_TROPIUS
  376. .hword PKMN_FLURMEL
  377. .hword PKMN_KRAKEELO
  378. .hword PKMN_KRAWUMMS
  379. .hword PKMN_PERLU
  380. .hword PKMN_AALABYSS
  381. .hword PKMN_SAGANABYSS
  382. .hword PKMN_ABSOL
  383. .hword PKMN_SHUPPET
  384. .hword PKMN_BANETTE
  385. .hword PKMN_VIPITIS
  386. .hword PKMN_SENGO
  387. .hword PKMN_RELICANTH
  388. .hword PKMN_STOLLUNIOR
  389. .hword PKMN_STOLLRAK
  390. .hword PKMN_STOLLOSS
  391. .hword PKMN_FORMEO
  392. .hword PKMN_VOLBEAT
  393. .hword PKMN_ILLUMISE
  394. .hword PKMN_LILIEP
  395. .hword PKMN_WIELIE
  396. .hword PKMN_ANORITH
  397. .hword PKMN_ARMALDO
  398. .hword PKMN_TRASLA
  399. .hword PKMN_KIRLIA
  400. .hword PKMN_GUARDEVOIR
  401. .hword PKMN_KINDWURM
  402. .hword PKMN_DRASCHEL
  403. .hword PKMN_BRUTALANDA
  404. .hword PKMN_TANHEL
  405. .hword PKMN_METANG
  406. .hword PKMN_METAGROSS
  407. .hword PKMN_REGIROCK
  408. .hword PKMN_REGICE
  409. .hword PKMN_REGISTEEL
  410. .hword PKMN_KYOGRE
  411. .hword PKMN_GROUDON
  412. .hword PKMN_RAYQUAZA
  413. .hword PKMN_LATIAS
  414. .hword PKMN_LATIOS
  415. .hword PKMN_JIRACHI
  416. .hword PKMN_DEOXYS
  417. .hword PKMN_PALIMPALIM
  418. #NV
  419. .hword PKMN_ICOGNITO
  420. .hword PKMN_ICOGNITO
  421. .hword PKMN_ICOGNITO
  422. .hword PKMN_ICOGNITO
  423. .hword PKMN_ICOGNITO
  424. .hword PKMN_ICOGNITO
  425. .hword PKMN_ICOGNITO
  426. .hword PKMN_ICOGNITO
  427. .hword PKMN_ICOGNITO
  428. .hword PKMN_ICOGNITO
  429. .hword PKMN_ICOGNITO
  430. .hword PKMN_ICOGNITO
  431. .hword PKMN_ICOGNITO
  432. .hword PKMN_ICOGNITO
  433. .hword PKMN_ICOGNITO
  434. .hword PKMN_ICOGNITO
  435. .hword PKMN_ICOGNITO
  436. .hword PKMN_ICOGNITO
  437. .hword PKMN_ICOGNITO
  438. .hword PKMN_ICOGNITO
  439. .hword PKMN_ICOGNITO
  440. .hword PKMN_ICOGNITO
  441. .hword PKMN_ICOGNITO
  442. .hword PKMN_ICOGNITO
  443. .hword PKMN_ICOGNITO
  444. .hword PKMN_ICOGNITO
  445. .hword PKMN_ICOGNITO
  446. .hword PKMN_CHELAST
  447. .hword PKMN_CHELCARAIN
  448. .hword PKMN_CHELTERRAR
  449. .hword PKMN_PANFLAM
  450. .hword PKMN_PANPYRO
  451. .hword PKMN_PANFERNO
  452. .hword PKMN_PLINFA
  453. .hword PKMN_PLIPRIN
  454. .hword PKMN_IMPOLEON
  455. .hword PKMN_STARALILI
  456. .hword PKMN_STARAVIA
  457. .hword PKMN_STARAPTOR
  458. .hword PKMN_BIDIZA
  459. .hword PKMN_BIDIFAS
  460. .hword PKMN_ZIRPURZE
  461. .hword PKMN_ZIRPEISE
  462. .hword PKMN_SHEINUX
  463. .hword PKMN_LUXIO
  464. .hword PKMN_LUXTRA
  465. .hword PKMN_KNOSPI
  466. .hword PKMN_ROSERADE
  467. .hword PKMN_KOKNODON
  468. .hword PKMN_RAMEIDON
  469. .hword PKMN_SCHILTERUS
  470. .hword PKMN_BOLLTERUS
  471. .hword PKMN_BURMY
  472. .hword PKMN_BURMADAME
  473. .hword PKMN_MOTERPEL
  474. .hword PKMN_WADRIBIE
  475. .hword PKMN_HONWEISEL
  476. .hword PKMN_PACHIRISU
  477. .hword PKMN_BAMELIN
  478. .hword PKMN_BOJELIN
  479. .hword PKMN_KIKUGI
  480. .hword PKMN_KINOSO
  481. .hword PKMN_SCHALELLOS
  482. .hword PKMN_GASTRODON
  483. .hword PKMN_AMBIDIFFEL
  484. .hword PKMN_DRIFTLON
  485. .hword PKMN_DRIFZEPELI
  486. .hword PKMN_HASPIROR
  487. .hword PKMN_SCHLAPOR
  488. .hword PKMN_TRAUNMAGIL
  489. .hword PKMN_KRAMSHEF
  490. .hword PKMN_CHARMIAN
  491. .hword PKMN_SHNURGARST
  492. .hword PKMN_KLINGPLIM
  493. .hword PKMN_SKUNKAPUH
  494. .hword PKMN_SKUNTANK
  495. .hword PKMN_BRONZEL
  496. .hword PKMN_BRONZONG
  497. .hword PKMN_MOBAI
  498. .hword PKMN_PANTIMIMI
  499. .hword PKMN_WONNEIRA
  500. .hword PKMN_PLAUDAGEI
  501. .hword PKMN_KRYPPUK
  502. .hword PKMN_KAUMALAT
  503. .hword PKMN_KNARKSEL
  504. .hword PKMN_KNAKRACK
  505. .hword PKMN_MAMPFAXO
  506. .hword PKMN_RIOLU
  507. .hword PKMN_LUCARIO
  508. .hword PKMN_HIPPOPOTAS
  509. .hword PKMN_HIPPOTERUS
  510. .hword PKMN_PIONSKORA
  511. .hword PKMN_PIONDRAGI
  512. .hword PKMN_GLIBUNKEL
  513. .hword PKMN_TOXIQUAK
  514. .hword PKMN_VENUFLIBIS
  515. .hword PKMN_FINNEON
  516. .hword PKMN_LUMINEON
  517. .hword PKMN_MANTIRPS
  518. .hword PKMN_SHNEBEDECK
  519. .hword PKMN_REXBLISAR
  520. .hword PKMN_SNIBUNNA
  521. .hword PKMN_MAGNEZONE
  522. .hword PKMN_SCHLURPLEK
  523. .hword PKMN_RIHORNIOR
  524. .hword PKMN_TANGOLOSS
  525. .hword PKMN_ELEVOLTEK
  526. .hword PKMN_MAGBRANT
  527. .hword PKMN_TOGEKISS
  528. .hword PKMN_YANMEGA
  529. .hword PKMN_FOLIPURBA
  530. .hword PKMN_GLAZIOLA
  531. .hword PKMN_SKORGRO
  532. .hword PKMN_MAMUTEL
  533. .hword PKMN_PORYGON_Z
  534. .hword PKMN_GALAGLADI
  535. .hword PKMN_VOLUMINAS
  536. .hword PKMN_ZWIRRFINST
  537. .hword PKMN_FROSDEDJE
  538. .hword PKMN_ROTOM
  539. .hword PKMN_SELFE
  540. .hword PKMN_VESPRIT
  541. .hword PKMN_TOBUTZ
  542. .hword PKMN_DIALGA
  543. .hword PKMN_PALKIA
  544. .hword PKMN_HEATRAN
  545. .hword PKMN_REGIGIGAS
  546. .hword PKMN_GIRATINA
  547. .hword PKMN_CRESSELIA
  548. .hword PKMN_PHIONE
  549. .hword PKMN_MANAPHY
  550. .hword PKMN_DARKRAI
  551. .hword PKMN_SHAYMIN
  552. .hword PKMN_ARCEUS
  553. .hword PKMN_VICTINI
  554. .hword PKMN_SERPIFEU
  555. .hword PKMN_EFOSERP
  556. .hword PKMN_SERPIROYAL
  557. .hword PKMN_FLOINK
  558. .hword PKMN_FERKOKEL
  559. .hword PKMN_FLAMBIREX
  560. .hword PKMN_OTTARO
  561. .hword PKMN_ZWOTTRONIN
  562. .hword PKMN_ADMURAI
  563. .hword PKMN_NAGELOTZ
  564. .hword PKMN_KUKMARDA
  565. .hword PKMN_YORKLEFF
  566. .hword PKMN_TERRIBARK
  567. .hword PKMN_BISSBARK
  568. .hword PKMN_FELILOU
  569. .hword PKMN_KLEOPARDA
  570. .hword PKMN_VEGIMAK
  571. .hword PKMN_VEGICHITA
  572. .hword PKMN_GRILLMAK
  573. .hword PKMN_GRILLCHITA
  574. .hword PKMN_SODAMAK
  575. .hword PKMN_SODACHITA
  576. .hword PKMN_SOMNIAM
  577. .hword PKMN_SOMNIVORA
  578. .hword PKMN_DUSSELGURR
  579. .hword PKMN_NAVITAUB
  580. .hword PKMN_FASASNOB
  581. .hword PKMN_ELEZEBA
  582. .hword PKMN_ZEBRITZ
  583. .hword PKMN_KIESLING
  584. .hword PKMN_SEDIMANTUR
  585. .hword PKMN_BROCKOLOSS
  586. .hword PKMN_FLEKNOIL
  587. .hword PKMN_FLETIAMO
  588. .hword PKMN_ROTOMURF
  589. .hword PKMN_STALOBOR
  590. .hword PKMN_OHRDOCH
  591. .hword PKMN_PRAKTIBALK
  592. .hword PKMN_STREPOLI
  593. .hword PKMN_MEISTAGRIF
  594. .hword PKMN_SCHALLQUAP
  595. .hword PKMN_MEBRANA
  596. .hword PKMN_BRANAWARZ
  597. .hword PKMN_JIUTESTO
  598. .hword PKMN_KARADONIS
  599. .hword PKMN_STRAWICKL
  600. .hword PKMN_FOLIKON
  601. .hword PKMN_MATRIFOL
  602. .hword PKMN_TOXIPED
  603. .hword PKMN_ROLLUM
  604. .hword PKMN_CERAPENDRA
  605. .hword PKMN_WAUMBOLL
  606. .hword PKMN_ELFUN
  607. .hword PKMN_LILMINIP
  608. .hword PKMN_DRESSELLA
  609. .hword PKMN_BARSCHUFT
  610. .hword PKMN_GANOVIL
  611. .hword PKMN_ROKKAIMAN
  612. .hword PKMN_RABIGATOR
  613. .hword PKMN_FLAMPION
  614. .hword PKMN_FLAMPIVIAN
  615. .hword PKMN_MARACAMBA
  616. .hword PKMN_LITHOMITH
  617. .hword PKMN_CASTELLITH
  618. .hword PKMN_ZURROKEX
  619. .hword PKMN_IROKEX
  620. .hword PKMN_SYMVOLARA
  621. .hword PKMN_MAKABAJA
  622. .hword PKMN_ECHNATOLL
  623. .hword PKMN_GALAPAFLOS
  624. .hword PKMN_KARIPPAS
  625. .hword PKMN_FLAPTERYX
  626. .hword PKMN_AEROPTERYX
  627. .hword PKMN_UNRATUETOX
  628. .hword PKMN_DEPONITOX
  629. .hword PKMN_ZORUA
  630. .hword PKMN_ZOROARK
  631. .hword PKMN_PICOCHILLA
  632. .hword PKMN_CHILLABELL
  633. .hword PKMN_MOLLIMORBA
  634. .hword PKMN_HYPNOMORBA
  635. .hword PKMN_MORBITESSE
  636. .hword PKMN_MONOZYTO
  637. .hword PKMN_MITODOS
  638. .hword PKMN_ZYTOMEGA
  639. .hword PKMN_PICCOLENTE
  640. .hword PKMN_SWARONESS
  641. .hword PKMN_GELATINI
  642. .hword PKMN_GELATROPPO
  643. .hword PKMN_GELATWINO
  644. .hword PKMN_SESOKITZ
  645. .hword PKMN_KRONJUWILD
  646. .hword PKMN_EMOLGA
  647. .hword PKMN_LAUKAPS
  648. .hword PKMN_CAVALANZAS
  649. .hword PKMN_TARNPIGNON
  650. .hword PKMN_HUTSASSA
  651. .hword PKMN_QUABBEL
  652. .hword PKMN_APOQUALLYP
  653. .hword PKMN_MAMOLIDA
  654. .hword PKMN_WATTZAPF
  655. .hword PKMN_VOLTULA
  656. .hword PKMN_KASTADUR
  657. .hword PKMN_TENTANTEL
  658. .hword PKMN_KLIKK
  659. .hword PKMN_KLIKLAK
  660. .hword PKMN_KLIKDIKLAK
  661. .hword PKMN_ZAPPLARDIN
  662. .hword PKMN_ZAPPLALEK
  663. .hword PKMN_ZAPPLARANG
  664. .hword PKMN_PYGRAULON
  665. .hword PKMN_MEGALON
  666. .hword PKMN_LICHTEL
  667. .hword PKMN_LATERNECTO
  668. .hword PKMN_SKELABRA
  669. .hword PKMN_MILZA
  670. .hword PKMN_SHARFAX
  671. .hword PKMN_MAXAX
  672. .hword PKMN_PETZNIEF
  673. .hword PKMN_SIBERIO
  674. .hword PKMN_FRIGOMETRI
  675. .hword PKMN_SCHNUTHELM
  676. .hword PKMN_HYDRAGIL
  677. .hword PKMN_FLUNSCHLIK
  678. .hword PKMN_LIN_FU
  679. .hword PKMN_WIE_SHU
  680. .hword PKMN_SHARDRAGO
  681. .hword PKMN_GOLBIT
  682. .hword PKMN_GOLGANTES
  683. .hword PKMN_GLADIANTRI
  684. .hword PKMN_CAESURIO
  685. .hword PKMN_BISOFANK
  686. .hword PKMN_GERONIMATZ
  687. .hword PKMN_WASHAKWIL
  688. .hword PKMN_SKALLYK
  689. .hword PKMN_GRYPHELDIS
  690. .hword PKMN_FURNIFRASS
  691. .hword PKMN_FERMICULA
  692. .hword PKMN_KAPUNO
  693. .hword PKMN_DUODINO
  694. .hword PKMN_TRIKEPHALO
  695. .hword PKMN_IGNIVOR
  696. .hword PKMN_RAMOTH
  697. .hword PKMN_KOBALIUM
  698. .hword PKMN_TERRAKIUM
  699. .hword PKMN_VIRIDIUM
  700. .hword PKMN_BOREOS
  701. .hword PKMN_VOLTOLOS
  702. .hword PKMN_RESHIRAM
  703. .hword PKMN_ZEKROM
  704. .hword PKMN_DEMETEROS
  705. .hword PKMN_KYUREM
  706. .hword PKMN_KELDEO
  707. .hword PKMN_MELOETTA
  708. .hword PKMN_GENESECT
  709. .hword PKMN_IGAMARO
  710. .hword PKMN_IGASTARNISH
  711. .hword PKMN_BRIGARON
  712. .hword PKMN_FYNX
  713. .hword PKMN_RUTENA
  714. .hword PKMN_FENNEXIS
  715. .hword PKMN_FROXY
  716. .hword PKMN_AMPHIZEL
  717. .hword PKMN_QUAJUTSU
  718. .hword PKMN_SCOPPEL
  719. .hword PKMN_GREBBIT
  720. .hword PKMN_DARTIRI
  721. .hword PKMN_DARTIGNIS
  722. .hword PKMN_FIARO
  723. .hword PKMN_PURMEL
  724. .hword PKMN_PUPONCHO
  725. .hword PKMN_VIVILLON
  726. .hword PKMN_LEUFEO
  727. .hword PKMN_PYROLEO
  728. .hword PKMN_FLABEBE
  729. .hword PKMN_FLOETTE
  730. .hword PKMN_FLORGES
  731. .hword PKMN_MAEHIKEL
  732. .hword PKMN_CHEVRUMM
  733. .hword PKMN_PAM_PAM
  734. .hword PKMN_PANDAGRO
  735. .hword PKMN_COIFFWAFF
  736. .hword PKMN_PSIAU
  737. .hword PKMN_PSIAUGON_W
  738. .hword PKMN_GRAMOKLES
  739. .hword PKMN_DUOKLES
  740. .hword PKMN_DURENGARD
  741. .hword PKMN_PARFI
  742. .hword PKMN_PARFINESSE
  743. .hword PKMN_FLAUSCHLING
  744. .hword PKMN_SABBAIONE
  745. .hword PKMN_ISCALAR
  746. .hword PKMN_CALAMANERO
  747. .hword PKMN_BITHORA
  748. .hword PKMN_THANATHORA
  749. .hword PKMN_ALGITT
  750. .hword PKMN_TANDRAK
  751. .hword PKMN_SCAMPISTO
  752. .hword PKMN_WUMMER
  753. .hword PKMN_EGUANA
  754. .hword PKMN_ELEZARD
  755. .hword PKMN_BALGORAS
  756. .hword PKMN_MONARGORAS
  757. .hword PKMN_AMARINO
  758. .hword PKMN_AMAGARGA
  759. .hword PKMN_FEELINARA
  760. .hword PKMN_RESLADERO
  761. .hword PKMN_DEDENNE
  762. .hword PKMN_ROCARA
  763. .hword PKMN_VISCORA
  764. .hword PKMN_VISCARGOT
  765. .hword PKMN_VISCOGON
  766. .hword PKMN_CLAVION
  767. .hword PKMN_PARAGONI
  768. .hword PKMN_TROMBORK
  769. .hword PKMN_IRRBIS
  770. .hword PKMN_PUMPDJINN
  771. .hword PKMN_ARKTIP
  772. .hword PKMN_ARKTILAS
  773. .hword PKMN_EF_EM
  774. .hword PKMN_UHAFNIR
  775. .hword PKMN_XERNEAS
  776. .hword PKMN_YVELTAL
  777. .hword PKMN_ZYGARDE
  778. .hword PKMN_DIANCIE
  779. .hword PKMN_HOOPA
  780. .hword PKMN_VOLCANION
  781. .hword PKMN_BAUZ
  782. .hword PKMN_ARBORETOSS
  783. .hword PKMN_SILVARRO
  784. .hword PKMN_FLAMIAU
  785. .hword PKMN_MIEZUNDER
  786. .hword PKMN_FUEGRO
  787. .hword PKMN_ROBBALL
  788. .hword PKMN_MARIKECK
  789. .hword PKMN_PRIMARENE
  790. .hword PKMN_PEPPECK
  791. .hword PKMN_TROMPECK
  792. .hword PKMN_TUKANON
  793. .hword PKMN_MANGUNIOR
  794. .hword PKMN_MANGUSPEKTOR
  795. .hword PKMN_MABULA
  796. .hword PKMN_AKKUP
  797. .hword PKMN_DONARION
  798. .hword PKMN_KRABBOX
  799. .hword PKMN_KRAWELL
  800. .hword PKMN_CHOREOGEL
  801. .hword PKMN_WOMMEL
  802. .hword PKMN_BANDELBY
  803. .hword PKMN_WUFFELS
  804. .hword PKMN_WOLWEROCK
  805. .hword PKMN_LUSARDIN
  806. .hword PKMN_GARSTELLA
  807. .hword PKMN_AGGROSTELLA
  808. .hword PKMN_PAMPULI
  809. .hword PKMN_PAMPROSS
  810. .hword PKMN_ARAQUA
  811. .hword PKMN_ARANESTRO
  812. .hword PKMN_IMANTIS
  813. .hword PKMN_MANTIDEA
  814. .hword PKMN_BUBUNGUS
  815. .hword PKMN_LAMELLUX
  816. .hword PKMN_MOLUNK
  817. .hword PKMN_AMFIRA
  818. .hword PKMN_VELURSI
  819. .hword PKMN_KOSTURSO
  820. .hword PKMN_FRUBBERL
  821. .hword PKMN_FRUBAILA
  822. .hword PKMN_FRUYAL
  823. .hword PKMN_CURELEI
  824. .hword PKMN_KOMMANDUTAN
  825. .hword PKMN_QUARTERMAK
  826. .hword PKMN_REISSLAUS
  827. .hword PKMN_TECTASS
  828. .hword PKMN_SANKABUH
  829. .hword PKMN_COLOSSAND
  830. .hword PKMN_GUFA
  831. .hword PKMN_TYP_NULL
  832. .hword PKMN_AMIGENTO
  833. .hword PKMN_METENO
  834. .hword PKMN_KOALELU
  835. .hword PKMN_TORTUNATOR
  836. .hword PKMN_TOGEDEMARU
  837. .hword PKMN_MIMIGMA
  838. .hword PKMN_KNIRFISH
  839. .hword PKMN_SEN_LONG
  840. .hword PKMN_MORUDA
  841. .hword PKMN_MINIRAS
  842. .hword PKMN_MEDIRAS
  843. .hword PKMN_GRANDIRAS
  844. .hword PKMN_KAPU_RIKI
  845. .hword PKMN_KAPU_FALA
  846. .hword PKMN_KAPU_TORO
  847. .hword PKMN_KAPU_KIME
  848. .hword PKMN_COSMOG
  849. .hword PKMN_COSMOVUM
  850. .hword PKMN_SOLGALEO
  851. .hword PKMN_LUNALA
  852. .hword PKMN_ANEGO
  853. .hword PKMN_MASSKITO
  854. .hword PKMN_SCHABELLE
  855. .hword PKMN_VOLTRIANT
  856. .hword PKMN_KAGURON
  857. .hword PKMN_KATAGAMI
  858. .hword PKMN_SCHLINGKING
  859. .hword PKMN_NECROZMA
  860. .hword PKMN_MAGEARNA
  861. .hword PKMN_MARSHADOW
  862. .hword PKMN_VENICRO
  863. .hword PKMN_AGOYON
  864. .hword PKMN_MURAMURA
  865. .hword PKMN_KOPPLOSIO
  866. .hword PKMN_ZERAORA
  867. .hword PKMN_DEOXYS
  868. .hword PKMN_DEOXYS
  869. .hword PKMN_DEOXYS
  870. .hword PKMN_BURMY
  871. .hword PKMN_BURMADAME
  872. .hword PKMN_BURMY
  873. .hword PKMN_BURMADAME
  874. .hword PKMN_SCHALELLOS
  875. .hword PKMN_GASTRODON
  876. .hword PKMN_KINOSO
  877. .hword PKMN_ROTOM
  878. .hword PKMN_ROTOM
  879. .hword PKMN_ROTOM
  880. .hword PKMN_ROTOM
  881. .hword PKMN_ROTOM
  882. .hword PKMN_GIRATINA
  883. .hword PKMN_SHAYMIN
  884. .hword PKMN_ARCEUS
  885. .hword PKMN_ARCEUS
  886. .hword PKMN_ARCEUS
  887. .hword PKMN_ARCEUS
  888. .hword PKMN_ARCEUS
  889. .hword PKMN_ARCEUS
  890. .hword PKMN_ARCEUS
  891. .hword PKMN_ARCEUS
  892. .hword PKMN_ARCEUS
  893. .hword PKMN_ARCEUS
  894. .hword PKMN_ARCEUS
  895. .hword PKMN_ARCEUS
  896. .hword PKMN_ARCEUS
  897. .hword PKMN_ARCEUS
  898. .hword PKMN_ARCEUS
  899. .hword PKMN_ARCEUS
  900. .hword PKMN_ARCEUS
  901. .hword PKMN_BARSCHUFT
  902. .hword PKMN_FLAMPIVIAN
  903. .hword PKMN_SESOKITZ
  904. .hword PKMN_KRONJUWILD
  905. .hword PKMN_SESOKITZ
  906. .hword PKMN_KRONJUWILD
  907. .hword PKMN_SESOKITZ
  908. .hword PKMN_KRONJUWILD
  909. .hword PKMN_KYUREM
  910. .hword PKMN_KYUREM
  911. .hword PKMN_MELOETTA
  912. .hword PKMN_GENESECT
  913. .hword PKMN_GENESECT
  914. .hword PKMN_GENESECT
  915. .hword PKMN_GENESECT
  916. .hword PKMN_BOREOS
  917. .hword PKMN_VOLTOLOS
  918. .hword PKMN_DEMETEROS
  919. .hword PKMN_KELDEO
  920. .hword PKMN_FLABEBE
  921. .hword PKMN_FLOETTE
  922. .hword PKMN_FLORGES
  923. .hword PKMN_FLABEBE
  924. .hword PKMN_FLOETTE
  925. .hword PKMN_FLORGES
  926. .hword PKMN_FLABEBE
  927. .hword PKMN_FLOETTE
  928. .hword PKMN_FLORGES
  929. .hword PKMN_FLABEBE
  930. .hword PKMN_FLOETTE
  931. .hword PKMN_FLORGES
  932. .hword PKMN_IRRBIS
  933. .hword PKMN_PUMPDJINN
  934. .hword PKMN_IRRBIS
  935. .hword PKMN_PUMPDJINN
  936. .hword PKMN_IRRBIS
  937. .hword PKMN_PUMPDJINN
  938. .hword PKMN_DURENGARD
  939. .hword PKMN_ZYGARDE
  940. .hword PKMN_ZYGARDE
  941. .hword PKMN_HOOPA
  942. .hword PKMN_QUAJUTSU
  943. .hword PKMN_CHOREOGEL
  944. .hword PKMN_CHOREOGEL
  945. .hword PKMN_CHOREOGEL
  946. .hword PKMN_WOLWEROCK
  947. .hword PKMN_WOLWEROCK
  948. .hword PKMN_LUSARDIN
  949. .hword PKMN_AMIGENTO
  950. .hword PKMN_AMIGENTO
  951. .hword PKMN_AMIGENTO
  952. .hword PKMN_AMIGENTO
  953. .hword PKMN_AMIGENTO
  954. .hword PKMN_AMIGENTO
  955. .hword PKMN_AMIGENTO
  956. .hword PKMN_AMIGENTO
  957. .hword PKMN_AMIGENTO
  958. .hword PKMN_AMIGENTO
  959. .hword PKMN_AMIGENTO
  960. .hword PKMN_AMIGENTO
  961. .hword PKMN_AMIGENTO
  962. .hword PKMN_AMIGENTO
  963. .hword PKMN_AMIGENTO
  964. .hword PKMN_AMIGENTO
  965. .hword PKMN_AMIGENTO
  966. .hword PKMN_METENO
  967. .hword PKMN_METENO
  968. .hword PKMN_METENO
  969. .hword PKMN_METENO
  970. .hword PKMN_METENO
  971. .hword PKMN_METENO
  972. .hword PKMN_METENO
  973. .hword PKMN_MIMIGMA
  974. .hword PKMN_NECROZMA
  975. .hword PKMN_NECROZMA
  976. .hword PKMN_NECROZMA
  977. .hword PKMN_BISAFLOR
  978. .hword PKMN_SMETTBO
  979. .hword PKMN_RATTFRATZ
  980. .hword PKMN_RATTIKARL
  981. .hword PKMN_PIKACHU
  982. .hword PKMN_RAICHU
  983. .hword PKMN_ZUBAT
  984. .hword PKMN_GOLBAT
  985. .hword PKMN_DUFLOR
  986. .hword PKMN_GIFLOR
  987. .hword PKMN_KADABRA
  988. .hword PKMN_SIMSALA
  989. .hword PKMN_DODU
  990. .hword PKMN_DODRI
  991. .hword PKMN_HYPNO
  992. .hword PKMN_RIHORN
  993. .hword PKMN_RIZEROS
  994. .hword PKMN_GOLDINI
  995. .hword PKMN_GOLKING
  996. .hword PKMN_SICHLOR
  997. .hword PKMN_KARPADOR
  998. .hword PKMN_GARADOS
  999. .hword PKMN_MEGANIE
  1000. .hword PKMN_LEDYBA
  1001. .hword PKMN_LEDIAN
  1002. .hword PKMN_XATU
  1003. .hword PKMN_MOGELBAUM
  1004. .hword PKMN_QUAXO
  1005. .hword PKMN_GRIFFEL
  1006. .hword PKMN_FELINO
  1007. .hword PKMN_MORLORD
  1008. .hword PKMN_KRAMURX
  1009. .hword PKMN_WOINGENAU
  1010. .hword PKMN_GIRAFARIG
  1011. .hword PKMN_SKORGLA
  1012. .hword PKMN_STAHLOS
  1013. .hword PKMN_SCHEROX
  1014. .hword PKMN_SKARABORN
  1015. .hword PKMN_SNIEBEL
  1016. .hword PKMN_URSARING
  1017. .hword PKMN_KEIFEL
  1018. .hword PKMN_OCTILLERY
  1019. .hword PKMN_HUNDEMON
  1020. .hword PKMN_DONPHAN
  1021. .hword PKMN_FLEMMLI
  1022. .hword PKMN_JUNGGLUT
  1023. .hword PKMN_LOHGOCK
  1024. .hword PKMN_PAPINELLA
  1025. .hword PKMN_PUDOX
  1026. .hword PKMN_KAPPALORES
  1027. .hword PKMN_BLANAS
  1028. .hword PKMN_TENGULIST
  1029. .hword PKMN_MEDITIE
  1030. .hword PKMN_MEDITALIS
  1031. .hword PKMN_ROSELIA
  1032. .hword PKMN_SCHLUPPUCK
  1033. .hword PKMN_SCHLUKWECH
  1034. .hword PKMN_CAMAUB
  1035. .hword PKMN_CAMERUPT
  1036. .hword PKMN_NOKTUSKA
  1037. .hword PKMN_MILOTIC
  1038. .hword PKMN_RELICANTH
  1039. .hword PKMN_STARALILI
  1040. .hword PKMN_STARAVIA
  1041. .hword PKMN_STARAPTOR
  1042. .hword PKMN_BIDIZA
  1043. .hword PKMN_BIDIFAS
  1044. .hword PKMN_ZIRPURZE
  1045. .hword PKMN_ZIRPEISE
  1046. .hword PKMN_SHEINUX
  1047. .hword PKMN_LUXIO
  1048. .hword PKMN_LUXTRA
  1049. .hword PKMN_ROSERADE
  1050. .hword PKMN_WADRIBIE
  1051. .hword PKMN_PACHIRISU
  1052. .hword PKMN_BAMELIN
  1053. .hword PKMN_BOJELIN
  1054. .hword PKMN_AMBIDIFFEL
  1055. .hword PKMN_KAUMALAT
  1056. .hword PKMN_KNARKSEL
  1057. .hword PKMN_KNAKRACK
  1058. .hword PKMN_HIPPOPOTAS
  1059. .hword PKMN_HIPPOTERUS
  1060. .hword PKMN_GLIBUNKEL
  1061. .hword PKMN_TOXIQUAK
  1062. .hword PKMN_FINNEON
  1063. .hword PKMN_LUMINEON
  1064. .hword PKMN_SHNEBEDECK
  1065. .hword PKMN_REXBLISAR
  1066. .hword PKMN_SNIBUNNA
  1067. .hword PKMN_RIHORNIOR
  1068. .hword PKMN_TANGOLOSS
  1069. .hword PKMN_MAMUTEL
  1070. .hword PKMN_FASASNOB
  1071. .hword PKMN_QUABBEL
  1072. .hword PKMN_APOQUALLYP
  1073. .hword PKMN_PYROLEO
  1074. .hword PKMN_BISAFLOR
  1075. .hword PKMN_GLURAK
  1076. .hword PKMN_GLURAK
  1077. .hword PKMN_TURTOK
  1078. .hword PKMN_BIBOR
  1079. .hword PKMN_TAUBOSS
  1080. .hword PKMN_SIMSALA
  1081. .hword PKMN_LAHMUS
  1082. .hword PKMN_GENGAR
  1083. .hword PKMN_KANGAMA
  1084. .hword PKMN_PINSIR
  1085. .hword PKMN_GARADOS
  1086. .hword PKMN_AERODACTYL
  1087. .hword PKMN_MEWTU
  1088. .hword PKMN_MEWTU
  1089. .hword PKMN_AMPHAROS
  1090. .hword PKMN_STAHLOS
  1091. .hword PKMN_SCHEROX
  1092. .hword PKMN_SKARABORN
  1093. .hword PKMN_HUNDEMON
  1094. .hword PKMN_DESPOTAR
  1095. .hword PKMN_GEWALDRO
  1096. .hword PKMN_LOHGOCK
  1097. .hword PKMN_SUMPEX
  1098. .hword PKMN_GUARDEVOIR
  1099. .hword PKMN_ZOBIRIS
  1100. .hword PKMN_FLUNKIFER
  1101. .hword PKMN_STOLLOSS
  1102. .hword PKMN_MEDITALIS
  1103. .hword PKMN_VOLTENSO
  1104. .hword PKMN_TOHAIDO
  1105. .hword PKMN_CAMERUPT
  1106. .hword PKMN_ALTARIA
  1107. .hword PKMN_BANETTE
  1108. .hword PKMN_ABSOL
  1109. .hword PKMN_FIRNONTOR
  1110. .hword PKMN_BRUTALANDA
  1111. .hword PKMN_METAGROSS
  1112. .hword PKMN_LATIAS
  1113. .hword PKMN_LATIOS
  1114. .hword PKMN_RAYQUAZA
  1115. .hword PKMN_SCHLAPOR
  1116. .hword PKMN_KNAKRACK
  1117. .hword PKMN_LUCARIO
  1118. .hword PKMN_REXBLISAR
  1119. .hword PKMN_GALAGLADI
  1120. .hword PKMN_OHRDOCH
  1121. .hword PKMN_DIANCIE
  1122. .hword PKMN_KYOGRE