mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
86061d37d2
Labelled WRAM addresses, added constants for mobile commands, fixed some mobile lib function names, documented most of the functions for specific commands.
27 lines
705 B
NASM
27 lines
705 B
NASM
; MobileEZChatCategoryPointers indexes (see mobile/fixed_words.asm)
|
|
const_def
|
|
const EZCHAT_POKEMON
|
|
const EZCHAT_TYPES
|
|
const EZCHAT_GREETINGS
|
|
const EZCHAT_PEOPLE
|
|
const EZCHAT_BATTLE
|
|
const EZCHAT_EXCLAMATIONS
|
|
const EZCHAT_CONVERSATION
|
|
const EZCHAT_FEELINGS
|
|
const EZCHAT_CONDITIONS
|
|
const EZCHAT_LIFE
|
|
const EZCHAT_HOBBIES
|
|
const EZCHAT_ACTIONS
|
|
const EZCHAT_TIME
|
|
const EZCHAT_FAREWELLS
|
|
const EZCHAT_THISANDTHAT
|
|
|
|
NUM_KANA EQU 45 ; length of SortedPokemon table (see mobile/fixed_words.asm)
|
|
|
|
MOBILE_LOGIN_PASSWORD_LENGTH EQU 17
|
|
MOBILE_PHONE_NUMBER_LENGTH EQU 20
|
|
|
|
; Maximum amount of time allowed for mobile battles each day
|
|
MOBILE_BATTLE_ALLOWED_SECONDS EQU 0
|
|
MOBILE_BATTLE_ALLOWED_MINUTES EQU 10
|