kep-hack/data/events/prizes.asm
Martha Schilling 19c4bec9ee this is a commit.
- Added another counter to the Game Corner prize room, adding Abra, Clefairy and Dratini back as prizes.

- Fixed Thorn Avery's and Zeta Null's names in the credits

- Small map changes to postgame areas

- Polished the new dex entries again

- Mewtwo no longer gets Waterfall and Roar from tradebacks

- Fixed a bug where you couldn't surf in the water on the Ferry tileset

- Gave Giovanni's room the same palette as Rocket HQ

- Minor text fixes

- Fixed an issue where LAST_MAP wouldn't update when sailing to Citrine
2023-12-02 16:02:40 +00:00

57 lines
752 B
NASM

PrizeDifferentMenuPtrs:
dw PrizeMenuMon1Entries, PrizeMenuMon1Cost
dw PrizeMenuMon2Entries, PrizeMenuMon2Cost
dw PrizeMenuMon3Entries, PrizeMenuMon3Cost
dw PrizeMenuTMsEntries, PrizeMenuTMsCost
NoThanksText:
db "NO THANKS@"
PrizeMenuMon1Entries:
db ABRA
db SEEL
db CLEFAIRY
db "@"
PrizeMenuMon1Cost:
bcd2 300
bcd2 500
bcd2 1000
db "@"
PrizeMenuMon2Entries:
db CACTORMUS
db SQUEAMATA
db DRATINI
db "@"
PrizeMenuMon2Cost:
bcd2 1500
bcd2 3000
bcd2 3000
db "@"
PrizeMenuMon3Entries:
db SCYTHER
db PINSIR
db PORYGON
db "@"
PrizeMenuMon3Cost:
bcd2 4500
bcd2 4500
bcd2 7000
db "@"
PrizeMenuTMsEntries:
db MOON_STONE
db TM_HYPER_BEAM
db TM_SUBSTITUTE
db "@"
PrizeMenuTMsCost:
bcd2 3000
bcd2 5000
bcd2 7000
db "@"