blob: 83bced7359a6a12d8ce623b05ca413bb5ea3c71b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
MtPyre_Exterior_MapScripts::
map_script MAP_SCRIPT_ON_TRANSITION, MtPyre_Exterior_OnTransition
.byte 0
MtPyre_Exterior_OnTransition:
call MtPyre_Exterior_EventScript_CheckEnterFromSummit
end
MtPyre_Exterior_EventScript_CheckEnterFromSummit::
getplayerxy VAR_TEMP_0, VAR_TEMP_1
goto_if_lt VAR_TEMP_1, 12, MtPyre_Exterior_EventScript_EnterFromSummit
return
MtPyre_Exterior_EventScript_EnterFromSummit::
setweather WEATHER_FOG_HORIZONTAL
return
MtPyre_Exterior_EventScript_FogTrigger::
setweather WEATHER_FOG_HORIZONTAL
doweather
end
MtPyre_Exterior_EventScript_SunTrigger::
setweather WEATHER_SUNNY
doweather
end
|