39 lines
924 B
PHP
Raw Normal View History

.set LOCALID_FOSSIL, 1
2017-11-09 19:21:31 -06:00
DesertUnderpass_MapScripts:: @ 823AF37
2019-04-04 19:28:37 -04:00
map_script MAP_SCRIPT_ON_TRANSITION, DesertUnderpass_OnTransition
2017-11-09 19:21:31 -06:00
.byte 0
2019-04-04 19:28:37 -04:00
DesertUnderpass_OnTransition: @ 823AF3D
2017-12-26 21:20:29 -06:00
setflag FLAG_LANDMARK_DESERT_UNDERPASS
2017-11-09 19:21:31 -06:00
end
DesertUnderpass_EventScript_Fossil:: @ 823AF41
2017-11-09 19:21:31 -06:00
lock
faceplayer
goto_if_set FLAG_CHOSE_ROOT_FOSSIL, DesertUnderpass_EventScript_GiveClawFossil
goto_if_set FLAG_CHOSE_CLAW_FOSSIL, DesertUnderpass_EventScript_GiveRootFossil
2017-11-09 19:21:31 -06:00
release
end
DesertUnderpass_EventScript_GiveClawFossil:: @ 823AF57
giveitem ITEM_CLAW_FOSSIL
removeobject LOCALID_FOSSIL
2017-11-09 19:21:31 -06:00
release
end
DesertUnderpass_EventScript_GiveRootFossil:: @ 823AF68
giveitem ITEM_ROOT_FOSSIL
removeobject LOCALID_FOSSIL
2017-11-09 19:21:31 -06:00
release
end
@ Unused
DesertUnderpass_Text_FoundRootFossil:: @ 823AF79
.string "{PLAYER} found the ROOT FOSSIL.$"
@ Unused
DesertUnderpass_Text_FoundClawFossil:: @ 823AF93
.string "{PLAYER} found the CLAW FOSSIL.$"
2017-11-09 19:21:31 -06:00