mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-16 04:04:39 +13: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.
96 lines
2.4 KiB
NASM
96 lines
2.4 KiB
NASM
object_const_def
|
|
const LAKEOFRAGEPOKECENTER1F_NURSE
|
|
const LAKEOFRAGEPOKECENTER1F_SCIENTIST
|
|
const LAKEOFRAGEPOKECENTER1F_GENTLEMAN
|
|
const LAKEOFRAGEPOKECENTER1F_YOUNGSTER
|
|
|
|
LakeOfRagePokecenter1F_MapScripts:
|
|
def_scene_scripts
|
|
|
|
def_callbacks
|
|
|
|
LakeOfRagePokecenter1FNurseScript:
|
|
jumpstd PokecenterNurseScript
|
|
|
|
LakeOfRagePokecenter1FGentlemanScript:
|
|
jumptextfaceplayer LakeOfRagePokecenter1FGentlemanText
|
|
|
|
LakeOfRagePokecenter1FScientistScript:
|
|
jumptextfaceplayer LakeOfRagePokecenter1FScientistText
|
|
|
|
LakeOfRagePokecenter1FYoungsterScript:
|
|
faceplayer
|
|
opentext
|
|
checkevent EVENT_LAKE_OF_RAGE_RED_GYARADOS
|
|
iftrue .GyaradosDefeated
|
|
writetext LakeOfRagePokecenter1FYoungsterText
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
.GyaradosDefeated:
|
|
writetext LakeOfRagePokecenter1FYoungsterText_GyaradosDefeated
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
LakeOfRagePokecenter1FScientistText:
|
|
text "GYARADOS are very"
|
|
line "sensitive to"
|
|
cont "changes in their"
|
|
cont "environment."
|
|
|
|
para "Even a minor"
|
|
line "tremor can drive"
|
|
cont "them wild!"
|
|
done
|
|
|
|
LakeOfRagePokecenter1FGentlemanText:
|
|
text "I wonder who is"
|
|
line "behind all this"
|
|
cont "nonsense?"
|
|
|
|
para "First the RADIO"
|
|
line "TOWER, now the"
|
|
cont "lake..."
|
|
|
|
done
|
|
|
|
LakeOfRagePokecenter1FYoungsterText:
|
|
text "Dad said I have"
|
|
line "to stay inside."
|
|
|
|
para "I hear a monster"
|
|
line "outside..."
|
|
|
|
para "And my #GEAR"
|
|
line "keeps playing"
|
|
cont "this weird music!"
|
|
|
|
para "Waaah! So scary!"
|
|
done
|
|
|
|
LakeOfRagePokecenter1FYoungsterText_GyaradosDefeated:
|
|
text "The monster is"
|
|
line "gone! I can go"
|
|
cont "outside again!"
|
|
done
|
|
|
|
LakeOfRagePokecenter1F_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
def_warp_events
|
|
warp_event 3, 7, LAKE_OF_RAGE, 4
|
|
warp_event 4, 7, LAKE_OF_RAGE, 4
|
|
warp_event 0, 7, POKECENTER_2F, 1
|
|
|
|
def_coord_events
|
|
|
|
def_bg_events
|
|
|
|
def_object_events
|
|
object_event 3, 1, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, LakeOfRagePokecenter1FNurseScript, -1
|
|
object_event 7, 6, SPRITE_SCIENTIST, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, LakeOfRagePokecenter1FScientistScript, -1
|
|
object_event 5, 3, SPRITE_GENTLEMAN, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, LakeOfRagePokecenter1FGentlemanScript, -1
|
|
object_event 1, 5, SPRITE_YOUNGSTER, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, LakeOfRagePokecenter1FYoungsterScript, -1
|