pokefirered/data/maps/ThreeIsland_DunsparceTunnel/scripts.inc
2020-01-28 14:26:34 -05:00

56 lines
2.0 KiB
C++

ThreeIsland_DunsparceTunnel_MapScripts:: @ 8164D26
map_script MAP_SCRIPT_ON_TRANSITION, ThreeIsland_DunsparceTunnel_OnTransition
.byte 0
ThreeIsland_DunsparceTunnel_OnTransition:: @ 8164D2C
setworldmapflag FLAG_WORLD_MAP_THREE_ISLAND_DUNSPARCE_TUNNEL
specialvar VAR_RESULT, IsNationalPokedexEnabled
copyvar VAR_0x8008, VAR_RESULT
compare VAR_0x8008, TRUE
call_if_eq ThreeIsland_DunsparceTunnel_EventScript_SetLayoutDugOut
compare VAR_0x8008, FALSE
call_if_eq ThreeIsland_DunsparceTunnel_EventScript_MoveProspectorToWall
end
ThreeIsland_DunsparceTunnel_EventScript_SetLayoutDugOut:: @ 8164D50
setmaplayoutindex LAYOUT_THREE_ISLAND_DUNSPARCE_TUNNEL_DUG_OUT
return
ThreeIsland_DunsparceTunnel_EventScript_MoveProspectorToWall:: @ 8164D54
setobjectxyperm 1, 6, 3
setobjectmovementtype 1, MOVEMENT_TYPE_FACE_RIGHT
return
ThreeIsland_DunsparceTunnel_EventScript_Prospector:: @ 8164D60
lock
faceplayer
goto_if_set FLAG_GOT_NUGGET_FROM_DUNSPARCE_TUNNEL, ThreeIsland_DunsparceTunnel_EventScript_ProspectorAlreadyGaveNugget
specialvar VAR_RESULT, IsNationalPokedexEnabled
compare VAR_RESULT, TRUE
goto_if_eq ThreeIsland_DunsparceTunnel_EventScript_ProspectorStruckGold
msgbox ThreeIsland_DunsparceTunnel_Text_ProspectingForGold
closemessage
applymovement 1, Movement_FaceOriginalDirection
waitmovement 0
release
end
ThreeIsland_DunsparceTunnel_EventScript_ProspectorStruckGold:: @ 8164D90
msgbox ThreeIsland_DunsparceTunnel_Text_StruckGoldThisIsForYou
giveitem ITEM_NUGGET
compare VAR_RESULT, FALSE
goto_if_eq ThreeIsland_DunsparceTunnel_EventScript_NoRoomForNugget
setflag FLAG_GOT_NUGGET_FROM_DUNSPARCE_TUNNEL
goto ThreeIsland_DunsparceTunnel_EventScript_ProspectorAlreadyGaveNugget
end
ThreeIsland_DunsparceTunnel_EventScript_NoRoomForNugget:: @ 8164DB8
msgbox ThreeIsland_DunsparceTunnel_Text_WhoopsBagCrammedFull
release
end
ThreeIsland_DunsparceTunnel_EventScript_ProspectorAlreadyGaveNugget:: @ 8164DC2
msgbox ThreeIsland_DunsparceTunnel_Text_ThatsANugget
release
end