mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-08 00:55:28 +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
102
maps/Route21.asm
Normal file
102
maps/Route21.asm
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
object_const_def
|
||||
const ROUTE21_SWIMMER_GIRL
|
||||
const ROUTE21_SWIMMER_GUY
|
||||
const ROUTE21_FISHER
|
||||
|
||||
Route21_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
|
||||
TrainerSwimmermSeth:
|
||||
trainer SWIMMERM, SETH, EVENT_BEAT_SWIMMERM_SETH, SwimmermSethSeenText, SwimmermSethBeatenText, 0, .Script
|
||||
|
||||
.Script:
|
||||
endifjustbattled
|
||||
opentext
|
||||
writetext SwimmermSethAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
TrainerSwimmerfNikki:
|
||||
trainer SWIMMERF, NIKKI, EVENT_BEAT_SWIMMERF_NIKKI, SwimmerfNikkiSeenText, SwimmerfNikkiBeatenText, 0, .Script
|
||||
|
||||
.Script:
|
||||
endifjustbattled
|
||||
opentext
|
||||
writetext SwimmerfNikkiAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
TrainerFisherArnold:
|
||||
trainer FISHER, ARNOLD, EVENT_BEAT_FISHER_ARNOLD, FisherArnoldSeenText, FisherArnoldBeatenText, 0, .Script
|
||||
|
||||
.Script:
|
||||
endifjustbattled
|
||||
opentext
|
||||
writetext FisherArnoldAfterBattleText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
SwimmermSethSeenText:
|
||||
text "Land ho! Gotta"
|
||||
line "keep going!"
|
||||
done
|
||||
|
||||
SwimmermSethBeatenText:
|
||||
text "Glug…"
|
||||
done
|
||||
|
||||
SwimmermSethAfterBattleText:
|
||||
text "This arrogant guy"
|
||||
line "was at CINNABAR's"
|
||||
cont "volcano."
|
||||
done
|
||||
|
||||
SwimmerfNikkiSeenText:
|
||||
text "If I win, you have"
|
||||
line "to help me with my"
|
||||
cont "suntan lotion!"
|
||||
done
|
||||
|
||||
SwimmerfNikkiBeatenText:
|
||||
text "I'm worried about"
|
||||
line "sunburn…"
|
||||
done
|
||||
|
||||
SwimmerfNikkiAfterBattleText:
|
||||
text "I have to watch"
|
||||
line "out for blemishes"
|
||||
cont "caused by the sun."
|
||||
done
|
||||
|
||||
FisherArnoldSeenText:
|
||||
text "I'm bored by fish-"
|
||||
line "ing. Let's battle!"
|
||||
done
|
||||
|
||||
FisherArnoldBeatenText:
|
||||
text "Utter failure…"
|
||||
done
|
||||
|
||||
FisherArnoldAfterBattleText:
|
||||
text "I'll just go back"
|
||||
line "to fishing…"
|
||||
done
|
||||
|
||||
Route21_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
|
||||
def_object_events
|
||||
object_event 11, 16, SPRITE_SWIMMER_GIRL, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 3, TrainerSwimmerfNikki, -1
|
||||
object_event 2, 30, SPRITE_SWIMMER_GUY, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 4, TrainerSwimmermSeth, -1
|
||||
object_event 14, 22, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerFisherArnold, -1
|
||||
Loading…
Add table
Add a link
Reference in a new issue