mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 00:25:24 +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/PalletTown.asm
Normal file
88
maps/PalletTown.asm
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
object_const_def
|
||||
const PALLETTOWN_TEACHER
|
||||
const PALLETTOWN_FISHER
|
||||
|
||||
PalletTown_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
callback MAPCALLBACK_NEWMAP, PalletTownFlypointCallback
|
||||
|
||||
PalletTownFlypointCallback:
|
||||
setflag ENGINE_FLYPOINT_PALLET
|
||||
endcallback
|
||||
|
||||
PalletTownTeacherScript:
|
||||
jumptextfaceplayer PalletTownTeacherText
|
||||
|
||||
PalletTownFisherScript:
|
||||
jumptextfaceplayer PalletTownFisherText
|
||||
|
||||
PalletTownSign:
|
||||
jumptext PalletTownSignText
|
||||
|
||||
RedsHouseSign:
|
||||
jumptext RedsHouseSignText
|
||||
|
||||
OaksLabSign:
|
||||
jumptext OaksLabSignText
|
||||
|
||||
BluesHouseSign:
|
||||
jumptext BluesHouseSignText
|
||||
|
||||
PalletTownTeacherText:
|
||||
text "I'm raising #-"
|
||||
line "MON too."
|
||||
|
||||
para "They serve as my"
|
||||
line "private guards."
|
||||
done
|
||||
|
||||
PalletTownFisherText:
|
||||
text "Technology is"
|
||||
line "incredible!"
|
||||
|
||||
para "You can now trade"
|
||||
line "#MON across"
|
||||
cont "time like e-mail."
|
||||
done
|
||||
|
||||
PalletTownSignText:
|
||||
text "PALLET TOWN"
|
||||
|
||||
para "A Tranquil Setting"
|
||||
line "of Peace & Purity"
|
||||
done
|
||||
|
||||
RedsHouseSignText:
|
||||
text "RED'S HOUSE"
|
||||
done
|
||||
|
||||
OaksLabSignText:
|
||||
text "OAK #MON"
|
||||
line "RESEARCH LAB"
|
||||
done
|
||||
|
||||
BluesHouseSignText:
|
||||
text "BLUE'S HOUSE"
|
||||
done
|
||||
|
||||
PalletTown_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 5, 5, REDS_HOUSE_1F, 1
|
||||
warp_event 13, 5, BLUES_HOUSE, 1
|
||||
warp_event 12, 11, OAKS_LAB, 1
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
bg_event 7, 9, BGEVENT_READ, PalletTownSign
|
||||
bg_event 3, 5, BGEVENT_READ, RedsHouseSign
|
||||
bg_event 13, 13, BGEVENT_READ, OaksLabSign
|
||||
bg_event 11, 5, BGEVENT_READ, BluesHouseSign
|
||||
|
||||
def_object_events
|
||||
object_event 3, 8, SPRITE_TEACHER, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PalletTownTeacherScript, -1
|
||||
object_event 12, 14, SPRITE_FISHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 2, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PalletTownFisherScript, -1
|
||||
Loading…
Add table
Add a link
Reference in a new issue