kep-hack/constants/palette_constants.asm
Martha Schilling c939b46740 Custom palette for Game Corner, slight early game rebalance
I did these a few days ago and forgot to push the commit lol

- Gives the Game Corner and the prize building a new palette

- Makes encounter levels a bit more consistent in the early game, as well as spreading out species a bit more evenly
2023-06-09 14:58:59 +01:00

81 lines
2.2 KiB
NASM

; monochrome palette color ids
const_def
const SHADE_WHITE ; %00
const SHADE_LIGHT ; %01
const SHADE_DARK ; %10
const SHADE_BLACK ; %11
DEF NUM_PAL_COLORS EQU const_value
DEF PAL_COLOR_SIZE EQU 2
DEF PALETTE_SIZE EQU NUM_PAL_COLORS * PAL_COLOR_SIZE
; pal/blk packets
; SetPalFunctions indexes (see engine/gfx/palettes.asm)
const_def
const SET_PAL_BATTLE_BLACK ; $00
const SET_PAL_BATTLE ; $01
const SET_PAL_TOWN_MAP ; $02
const SET_PAL_STATUS_SCREEN ; $03
const SET_PAL_POKEDEX ; $04
const SET_PAL_SLOTS ; $05
const SET_PAL_TITLE_SCREEN ; $06
const SET_PAL_NIDORINO_INTRO ; $07
const SET_PAL_GENERIC ; $08
const SET_PAL_OVERWORLD ; $09
const SET_PAL_PARTY_MENU ; $0A
const SET_PAL_POKEMON_WHOLE_SCREEN ; $0B
const SET_PAL_GAME_FREAK_INTRO ; $0C
const SET_PAL_TRAINER_CARD ; $0D
DEF SET_PAL_PARTY_MENU_HP_BARS EQU $fc
DEF SET_PAL_DEFAULT EQU $ff
; sgb palettes
; SuperPalettes indexes (see data/sgb/sgb_palettes.asm)
const_def
const PAL_ROUTE ; $00
const PAL_PALLET ; $01
const PAL_VIRIDIAN ; $02
const PAL_PEWTER ; $03
const PAL_CERULEAN ; $04
const PAL_VERMILION ; $05
const PAL_LAVENDER ; $06
const PAL_CELADON ; $07
const PAL_CELADONUNI ; $08
const PAL_FUCHSIA ; $09
const PAL_SAFFRON ; $0A
const PAL_CINNABAR ; $0B
const PAL_INDIGO ; $0C
const PAL_CITRINE ; $0D
const PAL_TOWNMAP ; $0E
const PAL_LOGO1 ; $0F
const PAL_LOGO2 ; $10
const PAL_0F ; $11
const PAL_MEWMON ; $12
const PAL_BLUEMON ; $13
const PAL_REDMON ; $14
const PAL_CYANMON ; $15
const PAL_PURPLEMON ; $16
const PAL_BROWNMON ; $17
const PAL_GREENMON ; $18
const PAL_PINKMON ; $19
const PAL_YELLOWMON ; $1A
const PAL_GREYMON ; $1B
const PAL_SLOTS1 ; $1C
const PAL_SLOTS2 ; $1D
const PAL_SLOTS3 ; $1E
const PAL_SLOTS4 ; $1F
const PAL_BLACK ; $20
const PAL_GREENBAR ; $21
const PAL_YELLOWBAR ; $22
const PAL_REDBAR ; $23
const PAL_BADGE ; $24
const PAL_CAVE ; $25
const PAL_GAMEFREAK ; $26
const PAL_CELESTE ; $27
const PAL_GARNET ; $28
const PAL_BRUNSWICK ; $29
const PAL_VOLCANO ; $2A
const PAL_CASINO ; $2B
DEF NUM_SGB_PALS EQU const_value