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,95 @@
{
"id": "MAP_MAGMA_HIDEOUT_2F_1R",
"name": "MagmaHideout_2F_1R",
"layout": "LAYOUT_MAGMA_HIDEOUT_2F_1R",
"music": "MUS_AQUA_MAGMA_HIDEOUT",
"region_map_section": "MAPSEC_MAGMA_HIDEOUT",
"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_MAGMA_MEMBER_M",
"x": 18,
"y": 19,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_WALK_SEQUENCE_LEFT_UP_RIGHT_DOWN",
"movement_range_x": 5,
"movement_range_y": 4,
"trainer_type": "TRAINER_TYPE_NORMAL",
"trainer_sight_or_berry_tree_id": "1",
"script": "MagmaHideout_2F_1R_EventScript_Grunt4",
"flag": "FLAG_HIDE_MAGMA_HIDEOUT_GRUNTS"
},
{
"graphics_id": "OBJ_EVENT_GFX_MAGMA_MEMBER_M",
"x": 12,
"y": 14,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_WALK_SEQUENCE_DOWN_RIGHT_UP_LEFT",
"movement_range_x": 7,
"movement_range_y": 6,
"trainer_type": "TRAINER_TYPE_NORMAL",
"trainer_sight_or_berry_tree_id": "3",
"script": "MagmaHideout_2F_1R_EventScript_Grunt5",
"flag": "FLAG_HIDE_MAGMA_HIDEOUT_GRUNTS"
},
{
"graphics_id": "OBJ_EVENT_GFX_MAGMA_MEMBER_F",
"x": 8,
"y": 8,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_FACE_RIGHT",
"movement_range_x": 1,
"movement_range_y": 1,
"trainer_type": "TRAINER_TYPE_NORMAL",
"trainer_sight_or_berry_tree_id": "7",
"script": "MagmaHideout_2F_1R_EventScript_Grunt14",
"flag": "FLAG_HIDE_MAGMA_HIDEOUT_GRUNTS"
},
{
"graphics_id": "OBJ_EVENT_GFX_MAGMA_MEMBER_M",
"x": 21,
"y": 11,
"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": "MagmaHideout_2F_1R_EventScript_Grunt3",
"flag": "FLAG_HIDE_MAGMA_HIDEOUT_GRUNTS"
}
],
"warp_events": [
{
"x": 11,
"y": 23,
"elevation": 0,
"dest_map": "MAP_MAGMA_HIDEOUT_2F_2R",
"dest_warp_id": 0
},
{
"x": 8,
"y": 2,
"elevation": 0,
"dest_map": "MAP_MAGMA_HIDEOUT_1F",
"dest_warp_id": 1
},
{
"x": 17,
"y": 33,
"elevation": 3,
"dest_map": "MAP_MAGMA_HIDEOUT_3F_1R",
"dest_warp_id": 2
}
],
"coord_events": [],
"bg_events": []
}

View File

@ -0,0 +1,75 @@
MagmaHideout_2F_1R_MapScripts::
.byte 0
MagmaHideout_2F_1R_EventScript_Grunt14::
trainerbattle_single TRAINER_GRUNT_MAGMA_HIDEOUT_14, MagmaHideout_2F_1R_Text_Grunt14Intro, MagmaHideout_2F_1R_Text_Grunt14Defeat
msgbox MagmaHideout_2F_1R_Text_Grunt14PostBattle, MSGBOX_AUTOCLOSE
end
MagmaHideout_2F_1R_EventScript_Grunt3::
trainerbattle_single TRAINER_GRUNT_MAGMA_HIDEOUT_3, MagmaHideout_2F_1R_Text_Grunt3Intro, MagmaHideout_2F_1R_Text_Grunt3Defeat
msgbox MagmaHideout_2F_1R_Text_Grunt3PostBattle, MSGBOX_AUTOCLOSE
end
MagmaHideout_2F_1R_EventScript_Grunt4::
trainerbattle_single TRAINER_GRUNT_MAGMA_HIDEOUT_4, MagmaHideout_2F_1R_Text_Grunt4Intro, MagmaHideout_2F_1R_Text_Grunt4Defeat
msgbox MagmaHideout_2F_1R_Text_Grunt4PostBattle, MSGBOX_AUTOCLOSE
end
MagmaHideout_2F_1R_EventScript_Grunt5::
trainerbattle_single TRAINER_GRUNT_MAGMA_HIDEOUT_5, MagmaHideout_2F_1R_Text_Grunt5Intro, MagmaHideout_2F_1R_Text_Grunt5Defeat
msgbox MagmaHideout_2F_1R_Text_Grunt5PostBattle, MSGBOX_AUTOCLOSE
end
MagmaHideout_2F_1R_Text_Grunt14Intro:
.string "What, what, what?\p"
.string "Only TEAM MAGMA members are supposed\n"
.string "to be in here!\p"
.string "But you're not dressed in TEAM MAGMA's\n"
.string "uniform…\p"
.string "You rouse my suspicion!\n"
.string "Battle with me!$"
MagmaHideout_2F_1R_Text_Grunt14Defeat:
.string "Aiyiyi…\n"
.string "My pride as a TEAM MAGMA member…$"
MagmaHideout_2F_1R_Text_Grunt14PostBattle:
.string "If you suffer from chills, you should\n"
.string "join TEAM MAGMA.$"
MagmaHideout_2F_1R_Text_Grunt3Intro:
.string "Hold it right there!\p"
.string "You don't really expect me to keep\n"
.string "my trap shut and let you waltz by me?$"
MagmaHideout_2F_1R_Text_Grunt3Defeat:
.string "Ooh wow!\n"
.string "I concede!$"
MagmaHideout_2F_1R_Text_Grunt3PostBattle:
.string "Maybe it would've been better if I did\n"
.string "just let you go unchallenged…$"
MagmaHideout_2F_1R_Text_Grunt4Intro:
.string "Ahah!\n"
.string "An intruder!$"
MagmaHideout_2F_1R_Text_Grunt4Defeat:
.string "Graaah!$"
MagmaHideout_2F_1R_Text_Grunt4PostBattle:
.string "I've already lost.\p"
.string "Do I really need to keep running\n"
.string "around in a circle?$"
MagmaHideout_2F_1R_Text_Grunt5Intro:
.string "Oh, oh!\n"
.string "An intruder!$"
MagmaHideout_2F_1R_Text_Grunt5Defeat:
.string "Mutter…$"
MagmaHideout_2F_1R_Text_Grunt5PostBattle:
.string "Actually, I'm no expert at battling…$"