kep-hack/data/items/prices.asm
May Evans a85c26b7d3 LOTS of things
- Replaces the Old Rod with the Candy Sack, an item to evolve Meltan into Melmetal. Meltan and Melmetal aren't in yet.
- Improves Gym Leader and Elite Four AI by a lot. They still use items, they're just better. Fixes XSpecial use while we're at it; before, it didn't actually increase the stat...
- The Scarlet Book now takes up both shelves, one section for each Paradox Pokemon. I also moved the bookshelf so it looks nicer.
- Text in Celadon University has been reduced significantly, taking up less memory and being a bit more RBY-like. It has also been made more accurate (thanks to Daiginjo for translating my booklet!)
- The Magikarp researcher in Celadon University now gives TM Dragon Rage (no longer unused!)
- Added a guard for Mt. Moon Crater.
- Removed TrainerNamePointers, Blank Leader Name Code, and Dakutens/Hakutens using a guide published by YakiNeen.
- PP no longer uses a shitty graphic and is instead properly implemented into the font, optimising the status screen. Also displays in-battle which is kinda cool.
- Lorelei, Bruno, and Agatha now play the Gym Leader theme, not just Lance.

Still unsure how to fix Celadon University's trainers, all I know is a lot of the information should be taken from the Oak fight I did. The code is radically different and doesn't call trainer headers at all. You'll likely want to start from scratch.

The Mt. Moon Crater Guard's text is a little wonky, not sure what's up there. May have been from the way I accessed Mt. Moon in testing. Anyway, if you want to mess around feel free.
2023-02-19 06:25:33 +00:00

109 lines
2.7 KiB
NASM

ItemPrices::
table_width 3, ItemPrices
bcd3 0 ; MASTER_BALL
bcd3 1200 ; ULTRA_BALL
bcd3 600 ; GREAT_BALL
bcd3 200 ; POKE_BALL
bcd3 0 ; TOWN_MAP
bcd3 0 ; BICYCLE
bcd3 0 ; SURFBOARD
bcd3 1000 ; SAFARI_BALL
bcd3 0 ; POKEDEX
bcd3 0 ; MOON_STONE
bcd3 100 ; ANTIDOTE
bcd3 250 ; BURN_HEAL
bcd3 250 ; ICE_HEAL
bcd3 200 ; AWAKENING
bcd3 200 ; PARLYZ_HEAL
bcd3 3000 ; FULL_RESTORE
bcd3 2500 ; MAX_POTION
bcd3 1500 ; HYPER_POTION
bcd3 700 ; SUPER_POTION
bcd3 300 ; POTION
bcd3 0 ; BOULDERBADGE
bcd3 0 ; CASCADEBADGE
bcd3 0 ; THUNDERBADGE
bcd3 0 ; RAINBOWBADGE
bcd3 0 ; SOULBADGE
bcd3 0 ; MARSHBADGE
bcd3 0 ; VOLCANOBADGE
bcd3 0 ; EARTHBADGE
bcd3 550 ; ESCAPE_ROPE
bcd3 350 ; REPEL
bcd3 0 ; OLD_AMBER
bcd3 2100 ; FIRE_STONE
bcd3 2100 ; THUNDER_STONE
bcd3 2100 ; WATER_STONE
bcd3 9800 ; HP_UP
bcd3 9800 ; PROTEIN
bcd3 9800 ; IRON
bcd3 9800 ; CARBOS
bcd3 9800 ; CALCIUM
bcd3 4800 ; RARE_CANDY
bcd3 0 ; DOME_FOSSIL
bcd3 0 ; HELIX_FOSSIL
bcd3 0 ; SECRET_KEY
bcd3 2100 ; HEART_STONE
bcd3 0 ; BIKE_VOUCHER
bcd3 950 ; X_ACCURACY
bcd3 2100 ; LEAF_STONE
bcd3 0 ; CARD_KEY
bcd3 10000 ; NUGGET
bcd3 0 ; WING_FOSSIL
bcd3 1000 ; POKE_DOLL
bcd3 600 ; FULL_HEAL
bcd3 1500 ; REVIVE
bcd3 4000 ; MAX_REVIVE
bcd3 700 ; GUARD_SPEC
bcd3 500 ; SUPER_REPEL
bcd3 700 ; MAX_REPEL
bcd3 650 ; DIRE_HIT
bcd3 10 ; COIN
bcd3 200 ; FRESH_WATER
bcd3 300 ; SODA_POP
bcd3 350 ; LEMONADE
bcd3 0 ; S_S_TICKET
bcd3 0 ; GOLD_TEETH
bcd3 500 ; X_ATTACK
bcd3 550 ; X_DEFEND
bcd3 350 ; X_SPEED
bcd3 350 ; X_SPECIAL
bcd3 0 ; COIN_CASE
bcd3 0 ; OAKS_PARCEL
bcd3 0 ; ITEMFINDER
bcd3 0 ; SILPH_SCOPE
bcd3 0 ; POKE_FLUTE
bcd3 0 ; LIFT_KEY
bcd3 0 ; EXP_ALL
bcd3 0 ; was OLD_ROD, now CANDY_SACK. Plan to be one-of-a-kind, so 0 to discourage sale a la Master Ball.
bcd3 0 ; GOOD_ROD
bcd3 0 ; SUPER_ROD
bcd3 0 ; PP_UP
bcd3 0 ; ETHER
bcd3 0 ; MAX_ETHER
bcd3 0 ; ELIXER
bcd3 0 ; MAX_ELIXER
assert_table_length NUM_ITEMS
bcd3 0 ; FLOOR_B2F
bcd3 0 ; FLOOR_B1F
bcd3 0 ; FLOOR_1F
bcd3 0 ; FLOOR_2F
bcd3 0 ; FLOOR_3F
bcd3 0 ; FLOOR_4F
bcd3 0 ; FLOOR_5F
bcd3 0 ; FLOOR_6F
bcd3 0 ; FLOOR_7F
bcd3 0 ; FLOOR_8F
bcd3 0 ; FLOOR_9F
bcd3 0 ; FLOOR_10F
bcd3 0 ; FLOOR_11F
bcd3 0 ; FLOOR_B4F
bcd3 2100 ; ICE_STONE
bcd3 3000 ; PROTECTOR
bcd3 2100 ; POISON_STONE
bcd3 2100 ; BLK_AUGURITE
bcd3 3000 ; DUBIOUS_DISC
bcd3 0 ; CITRINE_PASS
bcd3 0 ; OLDSEACHART
assert_table_length NUM_ITEMS + NUM_FLOORS