mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
3648afda16
New MACRO and DEF syntax
40 lines
877 B
NASM
40 lines
877 B
NASM
; TypeNames indexes (see data/types/names.asm)
|
|
; also used in:
|
|
; - PokedexTypeSearchConversionTable (see data/types/search_types.asm)
|
|
; - PokedexTypeSearchStrings (see data/types/search_strings.asm)
|
|
; - TypeMatchups (see data/types/type_matchups.asm)
|
|
; - TypeBoostItems (see data/types/type_boost_items.asm)
|
|
const_def
|
|
|
|
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
|
|
|
|
DEF UNUSED_TYPES EQU const_value
|
|
const_next 19
|
|
const CURSE_TYPE
|
|
DEF UNUSED_TYPES_END EQU const_value
|
|
|
|
DEF SPECIAL EQU const_value
|
|
const FIRE
|
|
const WATER
|
|
const GRASS
|
|
const ELECTRIC
|
|
const PSYCHIC_TYPE
|
|
const ICE
|
|
const DRAGON
|
|
const DARK
|
|
DEF TYPES_END EQU const_value
|
|
|
|
DEF NUM_TYPES EQU TYPES_END + UNUSED_TYPES - UNUSED_TYPES_END - 1 ; discount BIRD
|
|
|
|
DEF POKEDEX_TYPE_STRING_LENGTH EQU 9
|