mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20: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.
36 lines
1 KiB
NASM
36 lines
1 KiB
NASM
FruitTreeItems:
|
|
; entries correspond to FRUITTREE_* constants
|
|
table_width 1, FruitTreeItems
|
|
db BERRY ; ROUTE_29
|
|
db BERRY ; ROUTE_30_1
|
|
db BERRY ; ROUTE_38
|
|
db BERRY ; ROUTE_46_1
|
|
db PSNCUREBERRY ; ROUTE_30_2
|
|
db PSNCUREBERRY ; ROUTE_33
|
|
db BITTER_BERRY ; ROUTE_31
|
|
db BITTER_BERRY ; ROUTE_43
|
|
db PRZCUREBERRY ; VIOLET_CITY
|
|
db PRZCUREBERRY ; ROUTE_46_2
|
|
db MYSTERYBERRY ; ROUTE_35
|
|
db MYSTERYBERRY ; ROUTE_45
|
|
db ICE_BERRY ; ROUTE_36
|
|
db ICE_BERRY ; ROUTE_26
|
|
db MINT_BERRY ; ROUTE_39
|
|
db BURNT_BERRY ; ROUTE_44
|
|
db RED_APRICORN ; ROUTE_37_1
|
|
db BLU_APRICORN ; ROUTE_37_2
|
|
db BLK_APRICORN ; ROUTE_37_3
|
|
db WHT_APRICORN ; AZALEA_TOWN
|
|
db PNK_APRICORN ; ROUTE_42_1
|
|
db GRN_APRICORN ; ROUTE_42_2
|
|
db YLW_APRICORN ; ROUTE_42_3
|
|
db BERRY ; ROUTE_11
|
|
db PSNCUREBERRY ; ROUTE_2
|
|
db BITTER_BERRY ; ROUTE_1
|
|
db PRZCUREBERRY ; ROUTE_8
|
|
db ICE_BERRY ; PEWTER_CITY_1
|
|
db MINT_BERRY ; PEWTER_CITY_2
|
|
db BURNT_BERRY ; FUCHSIA_CITY
|
|
db GOLD_BERRY ; OLD_CITY - now there's a farming spot!
|
|
assert_table_length NUM_FRUIT_TREES
|