mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 08:35:23 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
88
maps/ViridianPokecenter1F.asm
Normal file
88
maps/ViridianPokecenter1F.asm
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
object_const_def
|
||||
const VIRIDIANPOKECENTER1F_NURSE
|
||||
const VIRIDIANPOKECENTER1F_COOLTRAINER_M
|
||||
const VIRIDIANPOKECENTER1F_COOLTRAINER_F
|
||||
const VIRIDIANPOKECENTER1F_BUG_CATCHER
|
||||
|
||||
ViridianPokecenter1F_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
|
||||
ViridianPokecenter1FNurseScript:
|
||||
jumpstd PokecenterNurseScript
|
||||
|
||||
ViridianPokecenter1FCooltrainerMScript:
|
||||
faceplayer
|
||||
opentext
|
||||
checkevent EVENT_BLUE_IN_CINNABAR
|
||||
iftrue .BlueReturned
|
||||
writetext ViridianPokecenter1FCooltrainerMText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
.BlueReturned:
|
||||
writetext ViridianPokecenter1FCooltrainerMText_BlueReturned
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
ViridianPokecenter1FCooltrainerFScript:
|
||||
jumptextfaceplayer ViridianPokecenter1FCooltrainerFText
|
||||
|
||||
ViridianPokecenter1FBugCatcherScript:
|
||||
jumptextfaceplayer ViridianPokecenter1FBugCatcherText
|
||||
|
||||
ViridianPokecenter1FCooltrainerMText:
|
||||
text "Where in the world"
|
||||
line "is VIRIDIAN's GYM"
|
||||
|
||||
para "LEADER? I wanted"
|
||||
line "to challenge him."
|
||||
done
|
||||
|
||||
ViridianPokecenter1FCooltrainerMText_BlueReturned:
|
||||
text "There are no GYM"
|
||||
line "TRAINERS at the"
|
||||
cont "VIRIDIAN GYM."
|
||||
|
||||
para "The LEADER claims"
|
||||
line "his policy is to"
|
||||
|
||||
para "win without having"
|
||||
line "any underlings."
|
||||
done
|
||||
|
||||
ViridianPokecenter1FCooltrainerFText:
|
||||
text "I heard that the"
|
||||
line "GYM in CINNABAR is"
|
||||
cont "gone."
|
||||
|
||||
para "I wonder what be-"
|
||||
line "came of BLAINE,"
|
||||
cont "the GYM LEADER."
|
||||
done
|
||||
|
||||
ViridianPokecenter1FBugCatcherText:
|
||||
text "My dream is to be-"
|
||||
line "come a GYM LEADER."
|
||||
done
|
||||
|
||||
ViridianPokecenter1F_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 3, 7, VIRIDIAN_CITY, 5
|
||||
warp_event 4, 7, VIRIDIAN_CITY, 5
|
||||
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, ViridianPokecenter1FNurseScript, -1
|
||||
object_event 8, 4, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, ViridianPokecenter1FCooltrainerMScript, -1
|
||||
object_event 5, 3, SPRITE_COOLTRAINER_F, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ViridianPokecenter1FCooltrainerFScript, -1
|
||||
object_event 1, 6, SPRITE_BUG_CATCHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, ViridianPokecenter1FBugCatcherScript, -1
|
||||
Loading…
Add table
Add a link
Reference in a new issue