mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 02:13:23 +12:00

- New Celeste Hill Gate location so the entrance into the location makes more sense. Also took the opportunity to include more lore. This replaces Pokemon Tower 4F. - Fixed a bug that caused the Cat icon to not animate correctly. - Made the infinite Nugget glitch work properly because I was stupid and didn't test it. - Luxwan now uses the Small Bird icon to fit with the rest of the line. - Nidoreign has a new Pokedex entry and classification, centred on the Nido's origins in the Moon Rabbit of Asian mythology.
22 lines
576 B
NASM
22 lines
576 B
NASM
; Backported from Yellow
|
|
; party menu icons
|
|
; used in MonPartySpritePointers (see data/icon_pointers.asm)
|
|
const_def
|
|
const ICON_MON ; $0
|
|
const ICON_BALL ; $1
|
|
const ICON_HELIX ; $2
|
|
const ICON_FAIRY ; $3
|
|
const ICON_BIRD ; $4
|
|
const ICON_WATER ; $5
|
|
const ICON_BUG ; $6
|
|
const ICON_GRASS ; $7
|
|
const ICON_SNAKE ; $8
|
|
const ICON_QUADRUPED ; $9
|
|
const ICON_PIKACHU ; $0A
|
|
const ICON_CAT ; $0B
|
|
const ICON_SMALL_BIRD; $0C
|
|
|
|
DEF ICON_TRADEBUBBLE EQU $0e
|
|
|
|
DEF ICONOFFSET EQU $40 ; difference between alternating icon frames' tile IDs
|