pokecrystal-board/constants/type_constants.asm

38 lines
795 B
NASM
Raw Normal View History

2018-01-10 22:45:27 -08:00
; TypeNames indexes (see data/types/names.asm)
; also used in:
2018-01-10 22:45:27 -08:00
; - PokedexTypeSearchConversionTable (see data/types/search_types.asm)
; - PokedexTypeSearchStrings (see data/types/search_strings.asm)
2018-01-22 13:23:34 -08:00
; - TypeMatchups (see data/types/type_matchups.asm)
; - TypeBoostItems (see data/types/type_boost_items.asm)
2014-01-05 05:24:19 -08:00
const_def
PHYSICAL EQU const_value
const NORMAL
const FIGHTING
const FLYING
const POISON
const GROUND
const ROCK
const BIRD
const BUG
const GHOST
const STEEL
UNUSED_TYPES EQU const_value
const_next 19
const CURSE_TYPE
UNUSED_TYPES_END EQU const_value
2014-01-05 05:24:19 -08:00
SPECIAL EQU const_value
const FIRE
const WATER
const GRASS
const ELECTRIC
const PSYCHIC_TYPE
2014-01-05 05:24:19 -08:00
const ICE
const DRAGON
const DARK
TYPES_END EQU const_value
2018-01-10 22:45:27 -08:00
NUM_TYPES EQU TYPES_END + UNUSED_TYPES - UNUSED_TYPES_END