mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 08:35:23 +13:00
OId City
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.
This commit is contained in:
parent
aa970c326e
commit
4eb81eec25
47 changed files with 699 additions and 147 deletions
66
maps/OldCityPokecenter1F.asm
Normal file
66
maps/OldCityPokecenter1F.asm
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
object_const_def
|
||||
const OLDCITYPOKECENTER1F_NURSE
|
||||
const OLDCITYPOKECENTER1F_FISHER
|
||||
const OLDCITYPOKECENTER1F_COOLTRAINER_M
|
||||
const OLDCITYPOKECENTER1F_COOLTRAINER_F
|
||||
|
||||
OldCityPokecenter1F_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
|
||||
OldCityPokecenter1FNurseScript:
|
||||
jumpstd PokecenterNurseScript
|
||||
|
||||
OldCityPokecenter1FCoolTrainerMScript:
|
||||
jumptextfaceplayer OldCityPokecenter1FCoolTrainerMText
|
||||
|
||||
OldCityPokecenter1FCoolTrainerMText:
|
||||
text "There's a strange"
|
||||
line "house full of odd"
|
||||
cont "geeks on ROUTE 50."
|
||||
|
||||
para "I wonder why? Is"
|
||||
line "something going"
|
||||
cont "on?"
|
||||
done
|
||||
|
||||
OldCityPokecenter1FCoolTrainerFScript:
|
||||
jumptextfaceplayer OldCityPokecenter1FCoolTrainerFText
|
||||
|
||||
OldCityPokecenter1FCoolTrainerFText:
|
||||
text "WALKER is always"
|
||||
line "riding on his"
|
||||
cont "SKARMORY!"
|
||||
|
||||
para "The problem is, he"
|
||||
line "doesn't leave time"
|
||||
cont "for challengers…"
|
||||
done
|
||||
|
||||
OldCityPokecenter1FFisherScript:
|
||||
jumptextfaceplayer OldCityPokecenter1FFisherText
|
||||
|
||||
OldCityPokecenter1FFisherText:
|
||||
text "I caught a strange"
|
||||
line "fish #MON with"
|
||||
cont "wings!"
|
||||
done
|
||||
|
||||
OldCityPokecenter1F_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 3, 7, OLD_CITY, 12
|
||||
warp_event 4, 7, OLD_CITY, 12
|
||||
warp_event 0, 7, NIHON_POKECENTER_2F, 1
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
|
||||
def_object_events
|
||||
object_event 5, 1, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OldCityPokecenter1FNurseScript, -1
|
||||
object_event 13, 3, SPRITE_FISHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OldCityPokecenter1FFisherScript, -1
|
||||
object_event 1, 4, SPRITE_COOLTRAINER_F, SPRITEMOVEDATA_WANDER, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OldCityPokecenter1FCoolTrainerFScript, -1
|
||||
object_event 7, 5, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OldCityPokecenter1FCoolTrainerMScript, -1
|
||||
Loading…
Add table
Add a link
Reference in a new issue