summaryrefslogtreecommitdiff
path: root/data/maps/MtEmber_Summit/scripts.inc
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2020-01-22 11:41:14 -0500
committerGitHub <noreply@github.com>2020-01-22 11:41:14 -0500
commite97d3532d4d72a1fe9aec755cd2a3c6527484e27 (patch)
tree0ad5656457aff5ac67fd50c32d6600592815a9a5 /data/maps/MtEmber_Summit/scripts.inc
parent6eec1c1cc9c115492aec43f80c8a6be7a86c61a5 (diff)
parenta4f5f41e2496a4c2b91cd0643dc44d98faed0c89 (diff)
Merge pull request #231 from GriffinRichards/doc-staticmon
Document static mon scripts
Diffstat (limited to 'data/maps/MtEmber_Summit/scripts.inc')
-rw-r--r--data/maps/MtEmber_Summit/scripts.inc22
1 files changed, 11 insertions, 11 deletions
diff --git a/data/maps/MtEmber_Summit/scripts.inc b/data/maps/MtEmber_Summit/scripts.inc
index e7e926ec1..e68a30c85 100644
--- a/data/maps/MtEmber_Summit/scripts.inc
+++ b/data/maps/MtEmber_Summit/scripts.inc
@@ -4,10 +4,10 @@ MtEmber_Summit_MapScripts:: @ 8163AFC
.byte 0
MtEmber_Summit_OnResume:: @ 8163B07
- call_if_set FLAG_SYS_SPECIAL_WILD_BATTLE, EventScript_163B11
+ call_if_set FLAG_SYS_SPECIAL_WILD_BATTLE, MtEmber_Summit_EventScript_TryRemoveMoltres
end
-EventScript_163B11:: @ 8163B11
+MtEmber_Summit_EventScript_TryRemoveMoltres:: @ 8163B11
specialvar VAR_RESULT, Special_GetBattleOutcome
compare VAR_RESULT, B_OUTCOME_CAUGHT
goto_if_ne EventScript_Return
@@ -15,14 +15,14 @@ EventScript_163B11:: @ 8163B11
return
MtEmber_Summit_OnTransition:: @ 8163B25
- call_if_unset FLAG_FOUGHT_MOLTRES, EventScript_163B2F
+ call_if_unset FLAG_FOUGHT_MOLTRES, MtEmber_Summit_EventScript_ShowMoltres
end
-EventScript_163B2F:: @ 8163B2F
+MtEmber_Summit_EventScript_ShowMoltres:: @ 8163B2F
clearflag FLAG_HIDE_MOLTRES
return
-MtEmber_Summit_EventScript_163B33:: @ 8163B33
+MtEmber_Summit_EventScript_Moltres:: @ 8163B33
goto_if_questlog EventScript_ReleaseEnd
special sub_8112364
lock
@@ -30,7 +30,7 @@ MtEmber_Summit_EventScript_163B33:: @ 8163B33
setwildbattle SPECIES_MOLTRES, 50, ITEM_NONE
waitse
playmoncry SPECIES_MOLTRES, 2
- message Text_1A6448
+ message Text_Gyaoo
waitmessage
waitmoncry
delay 10
@@ -42,21 +42,21 @@ MtEmber_Summit_EventScript_163B33:: @ 8163B33
clearflag FLAG_SYS_SPECIAL_WILD_BATTLE
specialvar VAR_RESULT, Special_GetBattleOutcome
compare VAR_RESULT, B_OUTCOME_WON
- goto_if_eq EventScript_163B96
+ goto_if_eq MtEmber_Summit_EventScript_DefeatedMoltres
compare VAR_RESULT, B_OUTCOME_RAN
- goto_if_eq EventScript_163B9F
+ goto_if_eq MtEmber_Summit_EventScript_RanFromMoltres
compare VAR_RESULT, B_OUTCOME_PLAYER_TELEPORTED
- goto_if_eq EventScript_163B9F
+ goto_if_eq MtEmber_Summit_EventScript_RanFromMoltres
setflag FLAG_FOUGHT_MOLTRES
release
end
-EventScript_163B96:: @ 8163B96
+MtEmber_Summit_EventScript_DefeatedMoltres:: @ 8163B96
setflag FLAG_FOUGHT_MOLTRES
goto EventScript_RemoveStaticMon
end
-EventScript_163B9F:: @ 8163B9F
+MtEmber_Summit_EventScript_RanFromMoltres:: @ 8163B9F
setvar VAR_0x8004, SPECIES_MOLTRES
goto EventScript_MonFlewAway
end