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
69
maps/TradeCenter.asm
Normal file
69
maps/TradeCenter.asm
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
object_const_def
|
||||
const TRADECENTER_CHRIS1
|
||||
const TRADECENTER_CHRIS2
|
||||
|
||||
TradeCenter_MapScripts:
|
||||
def_scene_scripts
|
||||
scene_script TradeCenterInitializeScene, SCENE_TRADECENTER_INITIALIZE
|
||||
scene_script TradeCenterNoopScene, SCENE_TRADECENTER_NOOP
|
||||
|
||||
def_callbacks
|
||||
callback MAPCALLBACK_OBJECTS, TradeCenterSetWhichChrisCallback
|
||||
|
||||
TradeCenterInitializeScene:
|
||||
sdefer TradeCenterInitializeAndPreparePokecenter2FScript
|
||||
end
|
||||
|
||||
TradeCenterNoopScene:
|
||||
end
|
||||
|
||||
TradeCenterSetWhichChrisCallback:
|
||||
special CableClubCheckWhichChris
|
||||
iffalse .Chris2
|
||||
disappear TRADECENTER_CHRIS2
|
||||
appear TRADECENTER_CHRIS1
|
||||
endcallback
|
||||
|
||||
.Chris2:
|
||||
disappear TRADECENTER_CHRIS1
|
||||
appear TRADECENTER_CHRIS2
|
||||
endcallback
|
||||
|
||||
TradeCenterInitializeAndPreparePokecenter2FScript:
|
||||
setscene SCENE_TRADECENTER_NOOP
|
||||
setmapscene POKECENTER_2F, SCENE_POKECENTER2F_LEAVE_TRADE_CENTER
|
||||
end
|
||||
|
||||
TradeCenterConsoleScript:
|
||||
special TradeCenter
|
||||
newloadmap MAPSETUP_LINKRETURN
|
||||
end
|
||||
|
||||
TradeCenterFriendScript: ; unreferenced
|
||||
opentext
|
||||
writetext TradeCenterFriendReadyText
|
||||
waitbutton
|
||||
closetext
|
||||
end
|
||||
|
||||
TradeCenterFriendReadyText:
|
||||
text "Your friend is"
|
||||
line "ready."
|
||||
done
|
||||
|
||||
TradeCenter_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 4, 7, POKECENTER_2F, 2
|
||||
warp_event 5, 7, POKECENTER_2F, 2
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
bg_event 4, 4, BGEVENT_RIGHT, TradeCenterConsoleScript
|
||||
bg_event 5, 4, BGEVENT_LEFT, TradeCenterConsoleScript
|
||||
|
||||
def_object_events
|
||||
object_event 3, 4, SPRITE_CHRIS, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, CableClubFriendScript, EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
|
||||
object_event 6, 4, SPRITE_CHRIS, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, CableClubFriendScript, EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2
|
||||
Loading…
Add table
Add a link
Reference in a new issue