mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-17 02:30:50 +12:00

This adds the Trader NPC to the Lake of Rage and restores its "town" environment. The town is themed around evolution. The mart sells all the "normal" evolution stones, aiming to solve Johto's "stone problem" for Pokemon like Vulpix and Bellsprout. The Trader NPC actualises this, being at a point where most Pokemon are around Level 35-40, as is how we balanced it on Cinnabar Island in KEP. The text is mostly revolved around the Gyarados, but this could shift. The Gym isn't done - I don't have time to sort it at the moment - but I am thinking of making it a Pre-Gym. This doesn't make a lot of sense though, so maybe it should be changed to be the tower seen in an earlier build.
47 lines
1 KiB
NASM
47 lines
1 KiB
NASM
; mart types (see engine/items/mart.asm)
|
|
const_def
|
|
const MARTTYPE_STANDARD
|
|
const MARTTYPE_BITTER
|
|
const MARTTYPE_BARGAIN
|
|
const MARTTYPE_PHARMACY
|
|
const MARTTYPE_ROOFTOP
|
|
|
|
; Marts indexes (see data/items/marts.asm)
|
|
const_def
|
|
const MART_CHERRYGROVE
|
|
const MART_CHERRYGROVE_DEX
|
|
const MART_VIOLET
|
|
const MART_AZALEA
|
|
const MART_CIANWOOD
|
|
const MART_GOLDENROD_2F_1
|
|
const MART_GOLDENROD_2F_2
|
|
const MART_GOLDENROD_3F
|
|
const MART_GOLDENROD_4F
|
|
const MART_GOLDENROD_5F_1
|
|
const MART_GOLDENROD_5F_2
|
|
const MART_GOLDENROD_5F_3
|
|
const MART_GOLDENROD_5F_4
|
|
const MART_OLIVINE
|
|
const MART_ECRUTEAK
|
|
const MART_MAHOGANY_1
|
|
const MART_MAHOGANY_2
|
|
const MART_BLACKTHORN
|
|
const MART_VIRIDIAN
|
|
const MART_PEWTER
|
|
const MART_CERULEAN
|
|
const MART_LAVENDER
|
|
const MART_VERMILION
|
|
const MART_CELADON_2F_1
|
|
const MART_CELADON_2F_2
|
|
const MART_CELADON_3F
|
|
const MART_CELADON_4F
|
|
const MART_CELADON_5F_1
|
|
const MART_CELADON_5F_2
|
|
const MART_FUCHSIA
|
|
const MART_SAFFRON
|
|
const MART_MT_MOON
|
|
const MART_INDIGO_PLATEAU
|
|
const MART_UNDERGROUND
|
|
const MART_LAKEOFRAGE
|
|
DEF NUM_MARTS EQU const_value
|