diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-05-13 13:04:22 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-05-13 13:04:22 -0700 |
commit | 4bc797117826dff27cdb0901b10c382d5f4fa4ab (patch) | |
tree | f8d0432e20330792f04d20598a23a4a941702c6c /constants | |
parent | 5837b8a4b25bca509431895c241cba269ab5f888 (diff) |
Rename 'evolution line' to 'catchem mon' because those constants represent catchable pokemon during catchem mode
Diffstat (limited to 'constants')
-rw-r--r-- | constants/catchem_pokemon_constants.asm | 81 | ||||
-rw-r--r-- | constants/evolution_line_constants.asm | 81 |
2 files changed, 81 insertions, 81 deletions
diff --git a/constants/catchem_pokemon_constants.asm b/constants/catchem_pokemon_constants.asm new file mode 100644 index 0000000..9d75ec1 --- /dev/null +++ b/constants/catchem_pokemon_constants.asm @@ -0,0 +1,81 @@ +const_value = 0 + + const CATCHEM_BULBASAUR ; $0 + const CATCHEM_CHARMANDER ; $1 + const CATCHEM_SQUIRTLE ; $2 + const CATCHEM_CATERPIE ; $3 + const CATCHEM_WEEDLE ; $4 + const CATCHEM_PIDGEY ; $5 + const CATCHEM_RATTATA ; $6 + const CATCHEM_SPEAROW ; $7 + const CATCHEM_EKANS ; $8 + const CATCHEM_PIKACHU ; $9 + const CATCHEM_SANDSHREW ; $a + const CATCHEM_NIDORAN_F ; $b + const CATCHEM_NIDORAN_M ; $c + const CATCHEM_CLEFAIRY ; $d + const CATCHEM_VULPIX ; $e + const CATCHEM_JIGGLYPUFF ; $f + const CATCHEM_ZUBAT ; $10 + const CATCHEM_ODDISH ; $11 + const CATCHEM_PARAS ; $12 + const CATCHEM_VENONAT ; $13 + const CATCHEM_DIGLETT ; $14 + const CATCHEM_MEOWTH ; $15 + const CATCHEM_PSYDUCK ; $16 + const CATCHEM_MANKEY ; $17 + const CATCHEM_GROWLITHE ; $18 + const CATCHEM_POLIWAG ; $19 + const CATCHEM_ABRA ; $1a + const CATCHEM_MACHOP ; $1b + const CATCHEM_BELLSPROUT ; $1c + const CATCHEM_TENTACOOL ; $1d + const CATCHEM_GEODUDE ; $1e + const CATCHEM_PONYTA ; $1f + const CATCHEM_SLOWPOKE ; $20 + const CATCHEM_MAGNEMITE ; $21 + const CATCHEM_FARFETCH_D ; $22 + const CATCHEM_DODUO ; $23 + const CATCHEM_SEEL ; $24 + const CATCHEM_GRIMER ; $25 + const CATCHEM_SHELLDER ; $26 + const CATCHEM_GASTLY ; $27 + const CATCHEM_ONIX ; $28 + const CATCHEM_DROWZEE ; $29 + const CATCHEM_KRABBY ; $2a + const CATCHEM_VOLTORB ; $2b + const CATCHEM_EXEGGCUTE ; $2c + const CATCHEM_CUBONE ; $2d + const CATCHEM_HITMONLEE ; $2e + const CATCHEM_HITMONCHAN ; $2f + const CATCHEM_LICKITUNG ; $30 + const CATCHEM_KOFFING ; $31 + const CATCHEM_RHYHORN ; $32 + const CATCHEM_CHANSEY ; $33 + const CATCHEM_TANGELA ; $34 + const CATCHEM_KANGASKHAN ; $35 + const CATCHEM_HORSEA ; $36 + const CATCHEM_GOLDEEN ; $37 + const CATCHEM_STARYU ; $38 + const CATCHEM_MR_MIME ; $39 + const CATCHEM_SCYTHER ; $3a + const CATCHEM_JYNX ; $3b + const CATCHEM_ELECTABUZZ ; $3c + const CATCHEM_MAGMAR ; $3d + const CATCHEM_PINSIR ; $3e + const CATCHEM_TAUROS ; $3f + const CATCHEM_MAGIKARP ; $40 + const CATCHEM_LAPRAS ; $41 + const CATCHEM_DITTO ; $42 + const CATCHEM_EEVEE ; $43 + const CATCHEM_PORYGON ; $44 + const CATCHEM_OMANYTE ; $45 + const CATCHEM_KABUTO ; $46 + const CATCHEM_AERODACTYL ; $47 + const CATCHEM_SNORLAX ; $48 + const CATCHEM_ARTICUNO ; $49 + const CATCHEM_ZAPDOS ; $4a + const CATCHEM_MOLTRES ; $4b + const CATCHEM_DRATINI ; $4c + const CATCHEM_MEWTWO ; $4d + const CATCHEM_MEW ; $4e diff --git a/constants/evolution_line_constants.asm b/constants/evolution_line_constants.asm deleted file mode 100644 index 871da64..0000000 --- a/constants/evolution_line_constants.asm +++ /dev/null @@ -1,81 +0,0 @@ -const_value = 0 - - const EVOLINE_BULBASAUR ; $0 - const EVOLINE_CHARMANDER ; $1 - const EVOLINE_SQUIRTLE ; $2 - const EVOLINE_CATERPIE ; $3 - const EVOLINE_WEEDLE ; $4 - const EVOLINE_PIDGEY ; $5 - const EVOLINE_RATTATA ; $6 - const EVOLINE_SPEAROW ; $7 - const EVOLINE_EKANS ; $8 - const EVOLINE_PIKACHU ; $9 - const EVOLINE_SANDSHREW ; $a - const EVOLINE_NIDORAN_F ; $b - const EVOLINE_NIDORAN_M ; $c - const EVOLINE_CLEFAIRY ; $d - const EVOLINE_VULPIX ; $e - const EVOLINE_JIGGLYPUFF ; $f - const EVOLINE_ZUBAT ; $10 - const EVOLINE_ODDISH ; $11 - const EVOLINE_PARAS ; $12 - const EVOLINE_VENONAT ; $13 - const EVOLINE_DIGLETT ; $14 - const EVOLINE_MEOWTH ; $15 - const EVOLINE_PSYDUCK ; $16 - const EVOLINE_MANKEY ; $17 - const EVOLINE_GROWLITHE ; $18 - const EVOLINE_POLIWAG ; $19 - const EVOLINE_ABRA ; $1a - const EVOLINE_MACHOP ; $1b - const EVOLINE_BELLSPROUT ; $1c - const EVOLINE_TENTACOOL ; $1d - const EVOLINE_GEODUDE ; $1e - const EVOLINE_PONYTA ; $1f - const EVOLINE_SLOWPOKE ; $20 - const EVOLINE_MAGNEMITE ; $21 - const EVOLINE_FARFETCH_D ; $22 - const EVOLINE_DODUO ; $23 - const EVOLINE_SEEL ; $24 - const EVOLINE_GRIMER ; $25 - const EVOLINE_SHELLDER ; $26 - const EVOLINE_GASTLY ; $27 - const EVOLINE_ONIX ; $28 - const EVOLINE_DROWZEE ; $29 - const EVOLINE_KRABBY ; $2a - const EVOLINE_VOLTORB ; $2b - const EVOLINE_EXEGGCUTE ; $2c - const EVOLINE_CUBONE ; $2d - const EVOLINE_HITMONLEE ; $2e - const EVOLINE_HITMONCHAN ; $2f - const EVOLINE_LICKITUNG ; $30 - const EVOLINE_KOFFING ; $31 - const EVOLINE_RHYHORN ; $32 - const EVOLINE_CHANSEY ; $33 - const EVOLINE_TANGELA ; $34 - const EVOLINE_KANGASKHAN ; $35 - const EVOLINE_HORSEA ; $36 - const EVOLINE_GOLDEEN ; $37 - const EVOLINE_STARYU ; $38 - const EVOLINE_MR_MIME ; $39 - const EVOLINE_SCYTHER ; $3a - const EVOLINE_JYNX ; $3b - const EVOLINE_ELECTABUZZ ; $3c - const EVOLINE_MAGMAR ; $3d - const EVOLINE_PINSIR ; $3e - const EVOLINE_TAUROS ; $3f - const EVOLINE_MAGIKARP ; $40 - const EVOLINE_LAPRAS ; $41 - const EVOLINE_DITTO ; $42 - const EVOLINE_EEVEE ; $43 - const EVOLINE_PORYGON ; $44 - const EVOLINE_OMANYTE ; $45 - const EVOLINE_KABUTO ; $46 - const EVOLINE_AERODACTYL ; $47 - const EVOLINE_SNORLAX ; $48 - const EVOLINE_ARTICUNO ; $49 - const EVOLINE_ZAPDOS ; $4a - const EVOLINE_MOLTRES ; $4b - const EVOLINE_DRATINI ; $4c - const EVOLINE_MEWTWO ; $4d - const EVOLINE_MEW ; $4e |