pokecrystal-board/constants/phone_constants.asm

65 lines
1.7 KiB
NASM
Raw Permalink Normal View History

2018-01-09 16:51:30 -08:00
; PhoneContacts indexes (see data/phone/phone_contacts.asm)
const_def
const PHONE_00
const PHONE_MOM
const PHONE_OAK
const PHONE_BILL
const PHONE_ELM
const PHONE_SCHOOLBOY_JACK
const PHONE_POKEFAN_BEVERLY
const PHONE_SAILOR_HUEY
const_skip
const_skip
const_skip
const PHONE_COOLTRAINERM_GAVEN
const PHONE_COOLTRAINERF_BETH
const PHONE_BIRDKEEPER_JOSE
const PHONE_COOLTRAINERF_REENA
const PHONE_YOUNGSTER_JOEY
const PHONE_BUG_CATCHER_WADE
const PHONE_FISHER_RALPH
const PHONE_PICNICKER_LIZ
const PHONE_HIKER_ANTHONY
const PHONE_CAMPER_TODD
const PHONE_PICNICKER_GINA
const PHONE_JUGGLER_IRWIN
const PHONE_BUG_CATCHER_ARNIE
const PHONE_SCHOOLBOY_ALAN
const_skip
const PHONE_LASS_DANA
const PHONE_SCHOOLBOY_CHAD
const PHONE_POKEFANM_DEREK
const PHONE_FISHER_TULLY
const PHONE_POKEMANIAC_BRENT
const PHONE_PICNICKER_TIFFANY
const PHONE_BIRDKEEPER_VANCE
const PHONE_FISHER_WILTON
const PHONE_BLACKBELT_KENJI
const PHONE_HIKER_PARRY
const PHONE_PICNICKER_ERIN
const PHONE_BUENA
DEF NUM_PHONE_CONTACTS EQU const_value - 1
2018-01-09 16:51:30 -08:00
; SpecialPhoneCallList indexes (see data/phone/special_calls.asm)
const_def
2015-10-24 07:34:19 -07:00
const SPECIALCALL_NONE
DEF NUM_SPECIALCALLS EQU const_value - 1
DEF SPECIALCALL_SIZE EQU 6
; phone struct members
2021-03-16 14:53:42 -07:00
rsreset
DEF PHONE_CONTACT_TRAINER_CLASS rb
DEF PHONE_CONTACT_TRAINER_NUMBER rb
DEF PHONE_CONTACT_MAP_GROUP rb
DEF PHONE_CONTACT_MAP_NUMBER rb
DEF PHONE_CONTACT_SCRIPT1_TIME rb
DEF PHONE_CONTACT_SCRIPT1_BANK rb
DEF PHONE_CONTACT_SCRIPT1_ADDR rw
DEF PHONE_CONTACT_SCRIPT2_TIME rb
DEF PHONE_CONTACT_SCRIPT2_BANK rb
DEF PHONE_CONTACT_SCRIPT2_ADDR rw
DEF PHONE_CONTACT_SIZE EQU _RS
; maximum number of pokegear contacts
DEF CONTACT_LIST_SIZE EQU 10