kep-hack/constants/sprite_constants.asm
Llinos Evans 63a28e410c Celeste Hill Gate & other things
- 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.
2023-09-20 17:02:09 +01:00

99 lines
4 KiB
NASM

; ported from Yellow
; overworld sprites
; SpriteSheetPointerTable indexes (see data/sprites/sprites.asm)
const_def
const SPRITE_NONE ; $00
const SPRITE_RED ; $01
const SPRITE_BLUE ; $02
const SPRITE_OAK ; $03
const SPRITE_YOUNGSTER ; $04
const SPRITE_MONSTER ; $05
const SPRITE_COOLTRAINER_F ; $06
const SPRITE_COOLTRAINER_M ; $07
const SPRITE_LITTLE_GIRL ; $08
const SPRITE_BIRD ; $09
const SPRITE_MIDDLE_AGED_MAN ; $0a
const SPRITE_GAMBLER ; $0b
const SPRITE_SUPER_NERD ; $0c
const SPRITE_GIRL ; $0d
const SPRITE_HIKER ; $0e
const SPRITE_BEAUTY ; $0f
const SPRITE_GENTLEMAN ; $10
const SPRITE_DAISY ; $11
const SPRITE_BIKER ; $12
const SPRITE_SAILOR ; $13
const SPRITE_COOK ; $14
const SPRITE_BIKE_SHOP_CLERK ; $15
const SPRITE_MR_FUJI ; $16
const SPRITE_GIOVANNI ; $17
const SPRITE_ROCKET ; $18
const SPRITE_CHANNELER ; $19
const SPRITE_WAITER ; $1a
const SPRITE_ERIKA ; $1b
const SPRITE_MIDDLE_AGED_WOMAN ; $1c
const SPRITE_BRUNETTE_GIRL ; $1d
const SPRITE_LANCE ; $1e
const SPRITE_UNUSED_RED_1 ; $1f
const SPRITE_SCIENTIST ; $20
const SPRITE_ROCKER ; $21
const SPRITE_SWIMMER ; $22
const SPRITE_SAFARI_ZONE_WORKER ; $23
const SPRITE_GYM_GUIDE ; $24
const SPRITE_GRAMPS ; $25
const SPRITE_CLERK ; $26
const SPRITE_FISHING_GURU ; $27
const SPRITE_GRANNY ; $28
const SPRITE_NURSE ; $29
const SPRITE_LINK_RECEPTIONIST ; $2a
const SPRITE_SILPH_PRESIDENT ; $2b
const SPRITE_SILPH_WORKER ; $2c
const SPRITE_WARDEN ; $2d
const SPRITE_CAPTAIN ; $2e
const SPRITE_FISHER ; $2f
const SPRITE_KOGA ; $30
const SPRITE_GUARD ; $31
const SPRITE_UNUSED_RED_2 ; $32
const SPRITE_MOM ; $33
const SPRITE_BALDING_GUY ; $34
const SPRITE_LITTLE_BOY ; $35
const SPRITE_UNUSED_RED_3 ; $36
const SPRITE_GAMEBOY_KID ; $37
const SPRITE_FAIRY ; $38
const SPRITE_AGATHA ; $39
const SPRITE_BRUNO ; $3a
const SPRITE_LORELEI ; $3b
const SPRITE_SEEL ; $3c
const SPRITE_PIKACHU ; $3d
const SPRITE_OFFICER_JENNY ; $3e
const SPRITE_SANDSHREW ; $3f
const SPRITE_ODDISH ; $40
const SPRITE_BULBASAUR ; $41
const SPRITE_JIGGLYPUFF ; $42
const SPRITE_CLEFAIRY ; $43
const SPRITE_CHANSEY ; $44
const SPRITE_JESSIE ; $45
const SPRITE_JAMES ; $46
const SPRITE_SMALL_BIRD
const SPRITE_CAT
const SPRITE_ARBOK
const SPRITE_KOFFING
const SPRITE_DIGLETT
const SPRITE_VOLTORB
const SPRITE_GENGAR
const SPRITE_MAGIKARP
DEF FIRST_STILL_SPRITE EQU const_value
const SPRITE_POKE_BALL ; $47
const SPRITE_FOSSIL ; $48
const SPRITE_BOULDER ; $49
const SPRITE_PAPER ; $4a
const SPRITE_POKEDEX ; $4b
const SPRITE_CLIPBOARD ; $4c
const SPRITE_SNORLAX ; $4d
const SPRITE_FAKE_TREE ; $4e was SPRITE_UNUSED_OLD_AMBER
const SPRITE_OLD_AMBER ; $4f
const SPRITE_UNUSED_GAMBLER_ASLEEP_1 ; $50
const SPRITE_POLIWAG ; $51 UNUSED_GAMBLER_ASLEEP_2
const SPRITE_GAMBLER_ASLEEP ; $52
DEF NUM_SPRITES EQU const_value - 1
;there are pidgey, and rattata sprites that I can't find discernible use for yet.