import from github
This commit is contained in:
42
data/maps/MeteorFalls_StevensCave/map.json
Normal file
42
data/maps/MeteorFalls_StevensCave/map.json
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"id": "MAP_METEOR_FALLS_STEVENS_CAVE",
|
||||
"name": "MeteorFalls_StevensCave",
|
||||
"layout": "LAYOUT_METEOR_FALLS_STEVENS_CAVE",
|
||||
"music": "MUS_CAVE_OF_ORIGIN",
|
||||
"region_map_section": "MAPSEC_METEOR_FALLS",
|
||||
"requires_flash": false,
|
||||
"weather": "WEATHER_NONE",
|
||||
"map_type": "MAP_TYPE_UNDERGROUND",
|
||||
"allow_cycling": true,
|
||||
"allow_escaping": true,
|
||||
"allow_running": true,
|
||||
"show_map_name": true,
|
||||
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
|
||||
"connections": null,
|
||||
"object_events": [
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_STEVEN",
|
||||
"x": 19,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_UP",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "MeteorFalls_StevensCave_EventScript_Steven",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 10,
|
||||
"y": 29,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_METEOR_FALLS_1F_1R",
|
||||
"dest_warp_id": 5
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
59
data/maps/MeteorFalls_StevensCave/scripts.inc
Normal file
59
data/maps/MeteorFalls_StevensCave/scripts.inc
Normal file
@ -0,0 +1,59 @@
|
||||
.set LOCALID_STEVEN, 1
|
||||
|
||||
MeteorFalls_StevensCave_MapScripts::
|
||||
.byte 0
|
||||
|
||||
MeteorFalls_StevensCave_EventScript_Steven::
|
||||
lock
|
||||
goto_if_set FLAG_DEFEATED_METEOR_FALLS_STEVEN, MeteorFalls_StevensCave_EventScript_Defeated
|
||||
waitse
|
||||
playse SE_PIN
|
||||
applymovement LOCALID_STEVEN, Common_Movement_ExclamationMark
|
||||
waitmovement 0
|
||||
applymovement LOCALID_STEVEN, Common_Movement_Delay48
|
||||
waitmovement 0
|
||||
applymovement LOCALID_STEVEN, Common_Movement_FacePlayer
|
||||
waitmovement 0
|
||||
msgbox MeteorFalls_StevensCave_Text_ShouldKnowHowGoodIAmExpectWorst, MSGBOX_DEFAULT
|
||||
trainerbattle_no_intro TRAINER_STEVEN, MeteorFalls_StevensCave_Text_StevenDefeat
|
||||
msgbox MeteorFalls_StevensCave_Text_MyPredictionCameTrue, MSGBOX_DEFAULT
|
||||
setflag FLAG_DEFEATED_METEOR_FALLS_STEVEN
|
||||
release
|
||||
end
|
||||
|
||||
MeteorFalls_StevensCave_EventScript_Defeated::
|
||||
applymovement LOCALID_STEVEN, Common_Movement_FacePlayer
|
||||
waitmovement 0
|
||||
msgbox MeteorFalls_StevensCave_Text_MyPredictionCameTrue, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
MeteorFalls_StevensCave_Text_ShouldKnowHowGoodIAmExpectWorst:
|
||||
.string "STEVEN: Oh, wow, {PLAYER}{KUN}.\n"
|
||||
.string "I'm amazed you knew where to find me.\p"
|
||||
.string "Do you, uh…maybe think of me as\n"
|
||||
.string "just a rock maniac?\p"
|
||||
.string "No, that can't be right.\p"
|
||||
.string "We battled alongside each other at\n"
|
||||
.string "the SOOTOPOLIS SPACE CENTER.\p"
|
||||
.string "You should have a very good idea\n"
|
||||
.string "about how good I am.\p"
|
||||
.string "Okay, {PLAYER}{KUN}, if you're going to mount\n"
|
||||
.string "a serious challenge, expect the worst!$"
|
||||
|
||||
MeteorFalls_StevensCave_Text_StevenDefeat:
|
||||
.string "You…\n"
|
||||
.string "I had no idea you'd become so strong…$"
|
||||
|
||||
MeteorFalls_StevensCave_Text_MyPredictionCameTrue:
|
||||
.string "STEVEN: Come to think of it, ever since\n"
|
||||
.string "our paths first crossed in GRANITE\l"
|
||||
.string "CAVE in DEWFORD, I had this feeling.\p"
|
||||
.string "I thought that you would eventually\n"
|
||||
.string "become the CHAMPION.\p"
|
||||
.string "My predictions usually come true.\p"
|
||||
.string "And where will you go from here?\p"
|
||||
.string "… … … … … …\n"
|
||||
.string "… … … … … …\p"
|
||||
.string "Fufufu, even I couldn't tell you that.$"
|
||||
|
Reference in New Issue
Block a user