pokecrystal-board/data/types/names.asm

52 lines
927 B
NASM
Raw Permalink Normal View History

2018-06-24 07:09:41 -07:00
TypeNames:
; entries correspond to types (see constants/type_constants.asm)
table_width 2, TypeNames
2023-07-26 17:50:16 -07:00
dw Normal
dw Fighting
dw Flying
dw Poison
dw Ground
dw Rock
dw Bird
dw Bug
dw Ghost
dw Steel
assert_table_length UNUSED_TYPES
2023-07-26 17:50:16 -07:00
rept UNUSED_TYPES_END - UNUSED_TYPES - 1 ; discount CURSE_TYPE
dw Normal
2023-07-26 17:50:16 -07:00
endr
dw CurseType
assert_table_length UNUSED_TYPES_END
2023-07-26 17:50:16 -07:00
dw Fire
dw Water
dw Grass
dw Electric
dw Psychic
dw Ice
dw Dragon
dw Dark
assert_table_length TYPES_END
Normal: db "NORMAL@"
Fighting: db "FIGHTING@"
Flying: db "FLYING@"
Poison: db "POISON@"
CurseType: db "???@"
Fire: db "FIRE@"
Water: db "WATER@"
Grass: db "GRASS@"
Electric: db "ELECTRIC@"
Psychic: db "PSYCHIC@"
Ice: db "ICE@"
Ground: db "GROUND@"
Rock: db "ROCK@"
Bird: db "BIRD@"
Bug: db "BUG@"
Ghost: db "GHOST@"
Steel: db "STEEL@"
Dragon: db "DRAGON@"
Dark: db "DARK@"