Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/constants/palette_constants.asm
1270 views
1
; pal/blk packets
2
; SetPalFunctions indexes (see engine/gfx/palettes.asm)
3
const_def
4
const SET_PAL_BATTLE_BLACK ; $00
5
const SET_PAL_BATTLE ; $01
6
const SET_PAL_TOWN_MAP ; $02
7
const SET_PAL_STATUS_SCREEN ; $03
8
const SET_PAL_POKEDEX ; $04
9
const SET_PAL_SLOTS ; $05
10
const SET_PAL_TITLE_SCREEN ; $06
11
const SET_PAL_NIDORINO_INTRO ; $07
12
const SET_PAL_GENERIC ; $08
13
const SET_PAL_OVERWORLD ; $09
14
const SET_PAL_PARTY_MENU ; $0A
15
const SET_PAL_POKEMON_WHOLE_SCREEN ; $0B
16
const SET_PAL_GAME_FREAK_INTRO ; $0C
17
const SET_PAL_TRAINER_CARD ; $0D
18
19
DEF SET_PAL_PARTY_MENU_HP_BARS EQU $fc
20
DEF SET_PAL_DEFAULT EQU $ff
21
22
; sgb palettes
23
; SuperPalettes indexes (see data/sgb/sgb_palettes.asm)
24
const_def
25
const PAL_ROUTE ; $00
26
const PAL_PALLET ; $01
27
const PAL_VIRIDIAN ; $02
28
const PAL_PEWTER ; $03
29
const PAL_CERULEAN ; $04
30
const PAL_LAVENDER ; $05
31
const PAL_VERMILION ; $06
32
const PAL_CELADON ; $07
33
const PAL_FUCHSIA ; $08
34
const PAL_CINNABAR ; $09
35
const PAL_INDIGO ; $0A
36
const PAL_SAFFRON ; $0B
37
const PAL_TOWNMAP ; $0C
38
const PAL_LOGO1 ; $0D
39
const PAL_LOGO2 ; $0E
40
const PAL_0F ; $0F
41
const PAL_MEWMON ; $10
42
const PAL_BLUEMON ; $11
43
const PAL_REDMON ; $12
44
const PAL_CYANMON ; $13
45
const PAL_PURPLEMON ; $14
46
const PAL_BROWNMON ; $15
47
const PAL_GREENMON ; $16
48
const PAL_PINKMON ; $17
49
const PAL_YELLOWMON ; $18
50
const PAL_GRAYMON ; $19
51
const PAL_SLOTS1 ; $1A
52
const PAL_SLOTS2 ; $1B
53
const PAL_SLOTS3 ; $1C
54
const PAL_SLOTS4 ; $1D
55
const PAL_BLACK ; $1E
56
const PAL_GREENBAR ; $1F
57
const PAL_YELLOWBAR ; $20
58
const PAL_REDBAR ; $21
59
const PAL_BADGE ; $22
60
const PAL_CAVE ; $23
61
const PAL_GAMEFREAK ; $24
62
DEF NUM_SGB_PALS EQU const_value
63
64