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

This implements Old City, the Honey Grandma's House, and its Pokecenter+Mart. Bunch of other bits and pieces not added yet, need to figure out the lore for them. Honey Grandma is designed to make it easier to get important Pokemon, rather than give access to anything new. Thus, she's Nihon-locked by being an Old City resident. Martha's Perfect Rod will follow this trend. Gold Berry tree exists to make them renewable in-game, I think this is very important. The flypoint seems bugged.
48 lines
1.1 KiB
NASM
48 lines
1.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
|
|
const MART_OLDCITY
|
|
DEF NUM_MARTS EQU const_value
|