import from github

This commit is contained in:
2022-05-19 17:14:13 +00:00
parent 5247c34f50
commit ab32b30591
12612 changed files with 1905035 additions and 83 deletions

View File

@ -0,0 +1,76 @@
{
"id": "MAP_SEAFLOOR_CAVERN_ROOM4",
"name": "SeafloorCavern_Room4",
"layout": "LAYOUT_SEAFLOOR_CAVERN_ROOM4",
"music": "MUS_MT_CHIMNEY",
"region_map_section": "MAPSEC_SEAFLOOR_CAVERN",
"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_AQUA_MEMBER_M",
"x": 5,
"y": 8,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_FACE_DOWN_AND_LEFT",
"movement_range_x": 1,
"movement_range_y": 1,
"trainer_type": "TRAINER_TYPE_NORMAL",
"trainer_sight_or_berry_tree_id": "3",
"script": "SeafloorCavern_Room4_EventScript_Grunt3",
"flag": "FLAG_HIDE_SEAFLOOR_CAVERN_AQUA_GRUNTS"
},
{
"graphics_id": "OBJ_EVENT_GFX_AQUA_MEMBER_F",
"x": 5,
"y": 12,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_FACE_UP",
"movement_range_x": 1,
"movement_range_y": 1,
"trainer_type": "TRAINER_TYPE_NORMAL",
"trainer_sight_or_berry_tree_id": "3",
"script": "SeafloorCavern_Room4_EventScript_Grunt4",
"flag": "FLAG_HIDE_SEAFLOOR_CAVERN_AQUA_GRUNTS"
}
],
"warp_events": [
{
"x": 13,
"y": 1,
"elevation": 3,
"dest_map": "MAP_SEAFLOOR_CAVERN_ROOM2",
"dest_warp_id": 1
},
{
"x": 4,
"y": 1,
"elevation": 3,
"dest_map": "MAP_SEAFLOOR_CAVERN_ROOM5",
"dest_warp_id": 1
},
{
"x": 9,
"y": 10,
"elevation": 3,
"dest_map": "MAP_SEAFLOOR_CAVERN_ROOM5",
"dest_warp_id": 2
},
{
"x": 10,
"y": 15,
"elevation": 3,
"dest_map": "MAP_SEAFLOOR_CAVERN_ENTRANCE",
"dest_warp_id": 1
}
],
"coord_events": [],
"bg_events": []
}

View File

@ -0,0 +1,36 @@
SeafloorCavern_Room4_MapScripts::
.byte 0
SeafloorCavern_Room4_EventScript_Grunt3::
trainerbattle_single TRAINER_GRUNT_SEAFLOOR_CAVERN_3, SeafloorCavern_Room4_Text_Grunt3Intro, SeafloorCavern_Room4_Text_Grunt3Defeat
msgbox SeafloorCavern_Room4_Text_Grunt3PostBattle, MSGBOX_AUTOCLOSE
end
SeafloorCavern_Room4_EventScript_Grunt4::
trainerbattle_single TRAINER_GRUNT_SEAFLOOR_CAVERN_4, SeafloorCavern_Room4_Text_Grunt4Intro, SeafloorCavern_Room4_Text_Grunt4Defeat
msgbox SeafloorCavern_Room4_Text_Grunt4PostBattle, MSGBOX_AUTOCLOSE
end
SeafloorCavern_Room4_Text_Grunt3Intro:
.string "Who are you?\n"
.string "Where did you come in from?$"
SeafloorCavern_Room4_Text_Grunt3Defeat:
.string "Lost it…$"
SeafloorCavern_Room4_Text_Grunt3PostBattle:
.string "I can't find the way out!\p"
.string "I'm not afraid. Don't get me wrong!$"
SeafloorCavern_Room4_Text_Grunt4Intro:
.string "Who are you?\n"
.string "Where do you think you're going?$"
SeafloorCavern_Room4_Text_Grunt4Defeat:
.string "I failed to win!$"
SeafloorCavern_Room4_Text_Grunt4PostBattle:
.string "My partner forgot the map in that\n"
.string "submarine!\p"
.string "How's that for being useless?$"