Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/constants/list_constants.asm
1270 views
1
; list menu IDs
2
const_def
3
const PCPOKEMONLISTMENU ; $00 ; PC pokemon withdraw/deposit lists
4
const MOVESLISTMENU ; $01 ; XXX where is this used?
5
const PRICEDITEMLISTMENU ; $02 ; Pokemart buy menu / Pokemart buy/sell choose quantity menu
6
const ITEMLISTMENU ; $03 ; Start menu Item menu / Pokemart sell menu
7
const SPECIALLISTMENU ; $04 ; list of special "items" e.g. floor list in elevators / list of badges
8
9
; NamePointers indexes (see home/names2.asm)
10
const_def 1
11
const MONSTER_NAME ; 1
12
const MOVE_NAME ; 2
13
const UNUSED_NAME ; 3
14
const ITEM_NAME ; 4
15
const PLAYEROT_NAME ; 5
16
const ENEMYOT_NAME ; 6
17
const TRAINER_NAME ; 7
18
19
const_def 1
20
const INIT_ENEMYOT_LIST ; 1
21
const INIT_BAG_ITEM_LIST ; 2
22
const INIT_OTHER_ITEM_LIST ; 3
23
const INIT_PLAYEROT_LIST ; 4
24
const INIT_MON_LIST ; 5
25
26