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

This covers everything but Blue's Lab. Cal's House has Cal play the role of SW97 Gold, with his mother lamenting his leaving and his brother Ken praising his travels. Silver's House is a carbon copy of the original. It's worth noting that Silver is less of an arsehole in SW97, so things could change wrt dialogue. This also violates some canon: It's heavily implied in HGSS onwards that Ariana is Silver's mother, chiefly because of her hair. It's worth noting that this hasn't been fully substantiated, and in GSC itself, Ariana has brown/purple hair in all interpretations, which is the basis for the theory. This warrants further discussion.
50 lines
1.1 KiB
NASM
50 lines
1.1 KiB
NASM
; Text in this area uses translations from Minamitoku.
|
|
; https://www.youtube.com/watch?v=Pe1vsKRl7_M&ab_channel=Minamitoku
|
|
|
|
object_const_def
|
|
const SILVERSHOUSE_MOM
|
|
|
|
SilversHouse_MapScripts:
|
|
def_scene_scripts
|
|
|
|
def_callbacks
|
|
|
|
SilversMom:
|
|
jumptextfaceplayer SilversMomText
|
|
|
|
SilversMomText:
|
|
text "The other day,"
|
|
line "I saw a strangely-"
|
|
cont "colored PIDGEY!"
|
|
done
|
|
|
|
SilversHousePCJournal:
|
|
jumpstd PCJournalScript
|
|
|
|
SilversHouseAnimeTV:
|
|
jumpstd AnimeTVScript1
|
|
|
|
SilversHouseStove:
|
|
jumpstd GenericStoveScript
|
|
|
|
SilversHouseSink:
|
|
jumpstd GenericSinkScript
|
|
|
|
SilversHouse_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
def_warp_events
|
|
warp_event 4, 9, SILENT_HILLS, 5
|
|
warp_event 5, 9, SILENT_HILLS, 5
|
|
|
|
def_coord_events
|
|
|
|
def_bg_events
|
|
bg_event 0, 1, BGEVENT_READ, SilversHousePCJournal
|
|
bg_event 4, 1, BGEVENT_READ, SilversHouseAnimeTV
|
|
bg_event 9, 1, BGEVENT_READ, SilversHouseStove
|
|
bg_event 8, 1, BGEVENT_READ, SilversHouseSink
|
|
|
|
def_object_events
|
|
object_event 5, 4, SPRITE_POKEFAN_F, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, SilversMom, -1
|