Document Saffron City scripts

This commit is contained in:
GriffinR
2020-01-25 15:54:20 -05:00
parent a09e66b53f
commit ce9f821b4e
62 changed files with 911 additions and 904 deletions
+4 -4
View File
@@ -23,7 +23,7 @@
"movement_range_y": 1,
"trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0,
"script": "Route8_WestEntrance_EventScript_16FB54",
"script": "Route8_WestEntrance_EventScript_Guard",
"flag": "0"
}
],
@@ -65,7 +65,7 @@
"elevation": 3,
"var": "VAR_MAP_SCENE_ROUTE5_ROUTE6_ROUTE7_ROUTE8_GATES",
"var_value": 0,
"script": "Route8_WestEntrance_EventScript_16FB5D"
"script": "Route8_WestEntrance_EventScript_GuardTriggerTop"
},
{
"type": "trigger",
@@ -74,7 +74,7 @@
"elevation": 3,
"var": "VAR_MAP_SCENE_ROUTE5_ROUTE6_ROUTE7_ROUTE8_GATES",
"var_value": 0,
"script": "Route8_WestEntrance_EventScript_16FB69"
"script": "Route8_WestEntrance_EventScript_GuardTriggerMid"
},
{
"type": "trigger",
@@ -83,7 +83,7 @@
"elevation": 3,
"var": "VAR_MAP_SCENE_ROUTE5_ROUTE6_ROUTE7_ROUTE8_GATES",
"var_value": 0,
"script": "Route8_WestEntrance_EventScript_16FB75"
"script": "Route8_WestEntrance_EventScript_GuardTriggerBottom"
}
],
"bg_events": []
+36 -34
View File
@@ -1,97 +1,99 @@
Route8_WestEntrance_MapScripts:: @ 816FB53
.byte 0
Route8_WestEntrance_EventScript_16FB54:: @ 816FB54
msgbox gUnknown_819E50F, MSGBOX_NPC
Route8_WestEntrance_EventScript_Guard:: @ 816FB54
msgbox Route8_WestEntrance_Text_HiHowsItGoing, MSGBOX_NPC
end
Route8_WestEntrance_EventScript_16FB5D:: @ 816FB5D
Route8_WestEntrance_EventScript_GuardTriggerTop:: @ 816FB5D
lockall
setvar VAR_TEMP_1, 0
goto EventScript_16FB81
goto Route8_WestEntrance_EventScript_GuardTrigger
end
Route8_WestEntrance_EventScript_16FB69:: @ 816FB69
Route8_WestEntrance_EventScript_GuardTriggerMid:: @ 816FB69
lockall
setvar VAR_TEMP_1, 1
goto EventScript_16FB81
goto Route8_WestEntrance_EventScript_GuardTrigger
end
Route8_WestEntrance_EventScript_16FB75:: @ 816FB75
Route8_WestEntrance_EventScript_GuardTriggerBottom:: @ 816FB75
lockall
setvar VAR_TEMP_1, 2
goto EventScript_16FB81
goto Route8_WestEntrance_EventScript_GuardTrigger
end
EventScript_16FB81:: @ 816FB81
Route8_WestEntrance_EventScript_GuardTrigger:: @ 816FB81
textcolor 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp
waitmovement 0
goto_if_set FLAG_GOT_TEA, EventScript_16FBAB
msgbox gUnknown_819E3ED
goto_if_set FLAG_GOT_TEA, Route8_WestEntrance_EventScript_GiveTea
msgbox Route8_WestEntrance_Text_ThirstyOnGuardDuty
closemessage
applymovement OBJ_EVENT_ID_PLAYER, Movement_16FC2D
applymovement OBJ_EVENT_ID_PLAYER, Route8_WestEntrance_Movement_BlockPlayerEntry
waitmovement 0
releaseall
end
EventScript_16FBAB:: @ 816FBAB
Route8_WestEntrance_EventScript_GiveTea:: @ 816FBAB
removeitem ITEM_TEA, 1
goto EventScript_16FBCC
goto Route8_WestEntrance_EventScript_GuardDrinkTea
end
EventScript_16FBB6:: @ 816FBB6
@ Unused
Route8_WestEntrance_EventScript_GiveSodaPop:: @ 816FBB6
removeitem ITEM_SODA_POP, 1
goto EventScript_16FBCC
goto Route8_WestEntrance_EventScript_GuardDrinkTea
end
EventScript_16FBC1:: @ 816FBC1
@ Unused
Route8_WestEntrance_EventScript_GiveLemonade:: @ 816FBC1
removeitem ITEM_LEMONADE, 1
goto EventScript_16FBCC
goto Route8_WestEntrance_EventScript_GuardDrinkTea
end
EventScript_16FBCC:: @ 816FBCC
msgbox gUnknown_819E43D
Route8_WestEntrance_EventScript_GuardDrinkTea:: @ 816FBCC
msgbox Route8_WestEntrance_Text_ThatTeaLooksTasty
closemessage
compare VAR_TEMP_1, 0
call_if_eq EventScript_16FC05
call_if_eq Route8_WestEntrance_EventScript_WalkToGuardTop
compare VAR_TEMP_1, 1
call_if_eq EventScript_16FC10
call_if_eq Route8_WestEntrance_EventScript_WalkToGuardMid
compare VAR_TEMP_1, 2
call_if_eq EventScript_16FC1B
msgbox gUnknown_819E463
call_if_eq Route8_WestEntrance_EventScript_WalkToGuardBottom
msgbox Route8_WestEntrance_Text_ThanksIllShareTeaWithGuards
setvar VAR_MAP_SCENE_ROUTE5_ROUTE6_ROUTE7_ROUTE8_GATES, 1
releaseall
end
EventScript_16FC05:: @ 816FC05
applymovement OBJ_EVENT_ID_PLAYER, Movement_16FC2B
Route8_WestEntrance_EventScript_WalkToGuardTop:: @ 816FC05
applymovement OBJ_EVENT_ID_PLAYER, Route8_WestEntrance_Movement_WalkToGuardTop
waitmovement 0
return
EventScript_16FC10:: @ 816FC10
applymovement OBJ_EVENT_ID_PLAYER, Movement_16FC26
Route8_WestEntrance_EventScript_WalkToGuardMid:: @ 816FC10
applymovement OBJ_EVENT_ID_PLAYER, Route8_WestEntrance_Movement_WalkToGuardMid
waitmovement 0
return
EventScript_16FC1B:: @ 816FC1B
applymovement OBJ_EVENT_ID_PLAYER, Movement_16FC28
Route8_WestEntrance_EventScript_WalkToGuardBottom:: @ 816FC1B
applymovement OBJ_EVENT_ID_PLAYER, Route8_WestEntrance_Movement_WalkToGuardBottom
waitmovement 0
return
Movement_16FC26:: @ 816FC26
Route8_WestEntrance_Movement_WalkToGuardMid:: @ 816FC26
walk_up
step_end
Movement_16FC28:: @ 816FC28
Route8_WestEntrance_Movement_WalkToGuardBottom:: @ 816FC28
walk_up
walk_up
step_end
Movement_16FC2B:: @ 816FC2B
Route8_WestEntrance_Movement_WalkToGuardTop:: @ 816FC2B
walk_in_place_up
step_end
Movement_16FC2D:: @ 816FC2D
Route8_WestEntrance_Movement_BlockPlayerEntry:: @ 816FC2D
walk_right
step_end
+4 -4
View File
@@ -1,13 +1,13 @@
gUnknown_819E3ED:: @ 819E3ED
Route8_WestEntrance_Text_ThirstyOnGuardDuty:: @ 819E3ED
.string "I'm on guard duty.\n"
.string "Gee, I'm thirsty, though!\p"
.string "Oh, wait there, the road's closed.$"
gUnknown_819E43D:: @ 819E43D
Route8_WestEntrance_Text_ThatTeaLooksTasty:: @ 819E43D
.string "Oh, that TEA…\n"
.string "It looks awfully tasty…$"
gUnknown_819E463:: @ 819E463
Route8_WestEntrance_Text_ThanksIllShareTeaWithGuards:: @ 819E463
.string "Huh? I can have this drink?\n"
.string "Gee, thanks!\l"
.string "… …\l"
@@ -21,6 +21,6 @@ gUnknown_819E463:: @ 819E463
.string "I'll share this TEA with the other\n"
.string "guards!$"
gUnknown_819E50F:: @ 819E50F
Route8_WestEntrance_Text_HiHowsItGoing:: @ 819E50F
.string "Hi, how's it going?$"