mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-04-01 00:59:47 +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
107
maps/Route6.asm
Normal file
107
maps/Route6.asm
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
object_const_def
|
||||
const ROUTE6_POKEFAN_M1
|
||||
const ROUTE6_POKEFAN_M2
|
||||
const ROUTE6_POKEFAN_M3
|
||||
|
||||
Route6_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
|
||||
TrainerPokefanmRex:
|
||||
trainer POKEFANM, REX, EVENT_BEAT_POKEFANM_REX, PokefanmRexSeenText, PokefanmRexBeatenText, 0, .Script
|
||||
|
||||
.Script:
|
||||
endifjustbattled
|
||||
opentext
|
||||
writetext PokefanmRexAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
TrainerPokefanmAllan:
|
||||
trainer POKEFANM, ALLAN, EVENT_BEAT_POKEFANM_ALLAN, PokefanmAllanSeenText, PokefanmAllanBeatenText, 0, .Script
|
||||
|
||||
.Script:
|
||||
endifjustbattled
|
||||
opentext
|
||||
writetext PokefanmAllanAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
Route6PokefanMScript:
|
||||
jumptextfaceplayer Route6PokefanMText
|
||||
|
||||
Route6UndergroundPathSign:
|
||||
jumptext Route6UndergroundPathSignText
|
||||
|
||||
Route6PokefanMText:
|
||||
text "The road is closed"
|
||||
line "until the problem"
|
||||
|
||||
para "at the POWER PLANT"
|
||||
line "is solved."
|
||||
done
|
||||
|
||||
Route6UndergroundPathSignText:
|
||||
text "UNDERGROUND PATH"
|
||||
|
||||
para "CERULEAN CITY -"
|
||||
line "VERMILION CITY"
|
||||
done
|
||||
|
||||
PokefanmRexSeenText:
|
||||
text "My PHANPY is the"
|
||||
line "cutest in the"
|
||||
cont "world."
|
||||
done
|
||||
|
||||
PokefanmRexBeatenText:
|
||||
text "My PHANPY!"
|
||||
done
|
||||
|
||||
PokefanmRexAfterBattleText:
|
||||
text "Look how adorable"
|
||||
line "my PHANPY acts!"
|
||||
|
||||
para "Isn't it cute"
|
||||
line "enough to make"
|
||||
cont "your heart melt?"
|
||||
done
|
||||
|
||||
PokefanmAllanSeenText:
|
||||
text "My TEDDIURSA is"
|
||||
line "the cutest in the"
|
||||
cont "world."
|
||||
done
|
||||
|
||||
PokefanmAllanBeatenText:
|
||||
text "My TEDDIURSA!"
|
||||
done
|
||||
|
||||
PokefanmAllanAfterBattleText:
|
||||
text "Look how adorable"
|
||||
line "my TEDDIURSA acts!"
|
||||
|
||||
para "Isn't it cute"
|
||||
line "enough to make"
|
||||
cont "your heart melt?"
|
||||
done
|
||||
|
||||
Route6_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 17, 3, ROUTE_6_UNDERGROUND_PATH_ENTRANCE, 1
|
||||
warp_event 6, 1, ROUTE_6_SAFFRON_GATE, 3
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
bg_event 19, 5, BGEVENT_READ, Route6UndergroundPathSign
|
||||
|
||||
def_object_events
|
||||
object_event 17, 4, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 2, Route6PokefanMScript, EVENT_ROUTE_5_6_POKEFAN_M_BLOCKS_UNDERGROUND_PATH
|
||||
object_event 9, 12, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 0, TrainerPokefanmRex, -1
|
||||
object_event 10, 12, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 0, TrainerPokefanmAllan, -1
|
||||
Loading…
Add table
Add a link
Reference in a new issue