mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-27 12:14:20 +01:00
61 lines
2.1 KiB
PHP
61 lines
2.1 KiB
PHP
ShoalCave_LowTideLowerRoom_MapScripts:: @ 8237156
|
|
map_script MAP_SCRIPT_ON_LOAD, ShoalCave_LowTideLowerRoom_OnLoad
|
|
.byte 0
|
|
|
|
ShoalCave_LowTideLowerRoom_OnLoad: @ 823715C
|
|
call ShoalCave_LowTideLowerRoom_EventScript_SetShoalItemMetatiles
|
|
end
|
|
|
|
ShoalCave_LowTideLowerRoom_EventScript_SetShoalItemMetatiles:: @ 8237162
|
|
goto_if_set FLAG_RECEIVED_SHOAL_SALT_4, ShoalCave_LowTideLowerRoom_EventScript_SetShoalItemMetatilesEnd
|
|
setmetatile 18, 2, METATILE_Cave_ShoalCave_DirtPile_Large, 1
|
|
return
|
|
|
|
ShoalCave_LowTideLowerRoom_EventScript_SetShoalItemMetatilesEnd:: @ 8237175
|
|
return
|
|
|
|
ShoalCave_LowTideLowerRoom_EventScript_ShoalSalt4:: @ 8237176
|
|
lockall
|
|
goto_if_set FLAG_RECEIVED_SHOAL_SALT_4, ShoalCave_LowTideLowerRoom_EventScript_ReceivedShoalSalt
|
|
giveitem ITEM_SHOAL_SALT
|
|
compare VAR_RESULT, FALSE
|
|
goto_if_eq Common_EventScript_ShowBagIsFull
|
|
setmetatile 18, 2, METATILE_Cave_ShoalCave_DirtPile_Small, 0
|
|
special DrawWholeMapView
|
|
setflag FLAG_RECEIVED_SHOAL_SALT_4
|
|
releaseall
|
|
end
|
|
|
|
ShoalCave_LowTideLowerRoom_EventScript_ReceivedShoalSalt:: @ 82371A8
|
|
msgbox ShoalCave_Text_WasShoalSaltNowNothing, MSGBOX_DEFAULT
|
|
releaseall
|
|
end
|
|
|
|
ShoalCave_LowTideLowerRoom_EventScript_BlackBelt:: @ 82371B2
|
|
lock
|
|
faceplayer
|
|
goto_if_set FLAG_RECEIVED_FOCUS_BAND, ShoalCave_LowTideLowerRoom_EventScript_ReceivedFocusBand
|
|
msgbox ShoalCave_LowTideLowerRoom_Text_CanOvercomeColdWithFocus, MSGBOX_DEFAULT
|
|
giveitem ITEM_FOCUS_BAND
|
|
compare VAR_RESULT, FALSE
|
|
goto_if_eq Common_EventScript_ShowBagIsFull
|
|
setflag FLAG_RECEIVED_FOCUS_BAND
|
|
release
|
|
end
|
|
|
|
ShoalCave_LowTideLowerRoom_EventScript_ReceivedFocusBand:: @ 82371E1
|
|
msgbox ShoalCave_LowTideLowerRoom_Text_EverythingStartsWithFocus, MSGBOX_DEFAULT
|
|
release
|
|
end
|
|
|
|
ShoalCave_LowTideLowerRoom_Text_CanOvercomeColdWithFocus: @ 82371EB
|
|
.string "The penetrating cold around these\n"
|
|
.string "parts is an impediment to training.\p"
|
|
.string "But with focus, one can overcome!\p"
|
|
.string "With this FOCUS BAND, buckle down and\n"
|
|
.string "withstand the cold!$"
|
|
|
|
ShoalCave_LowTideLowerRoom_Text_EverythingStartsWithFocus: @ 823728D
|
|
.string "Everything starts with focus!$"
|
|
|