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,62 @@
{
"id": "MAP_RUSTBORO_CITY_HOUSE2",
"name": "RustboroCity_House2",
"layout": "LAYOUT_RUSTBORO_CITY_HOUSE",
"music": "MUS_RUSTBORO",
"region_map_section": "MAPSEC_RUSTBORO_CITY",
"requires_flash": false,
"weather": "WEATHER_NONE",
"map_type": "MAP_TYPE_INDOOR",
"allow_cycling": false,
"allow_escaping": false,
"allow_running": false,
"show_map_name": false,
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
"connections": null,
"object_events": [
{
"graphics_id": "OBJ_EVENT_GFX_POKEFAN_F",
"x": 4,
"y": 4,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_FACE_DOWN",
"movement_range_x": 0,
"movement_range_y": 0,
"trainer_type": "TRAINER_TYPE_NONE",
"trainer_sight_or_berry_tree_id": "0",
"script": "RustboroCity_House2_EventScript_PokefanF",
"flag": "0"
},
{
"graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL",
"x": 4,
"y": 5,
"elevation": 3,
"movement_type": "MOVEMENT_TYPE_FACE_UP",
"movement_range_x": 0,
"movement_range_y": 0,
"trainer_type": "TRAINER_TYPE_NONE",
"trainer_sight_or_berry_tree_id": "0",
"script": "RustboroCity_House2_EventScript_LittleGirl",
"flag": "0"
}
],
"warp_events": [
{
"x": 5,
"y": 8,
"elevation": 0,
"dest_map": "MAP_RUSTBORO_CITY",
"dest_warp_id": 9
},
{
"x": 6,
"y": 8,
"elevation": 0,
"dest_map": "MAP_RUSTBORO_CITY",
"dest_warp_id": 9
}
],
"coord_events": [],
"bg_events": []
}

View File

@@ -0,0 +1,21 @@
RustboroCity_House2_MapScripts::
.byte 0
RustboroCity_House2_EventScript_PokefanF::
msgbox RustboroCity_House2_Text_TrainerSchoolExcellent, MSGBOX_NPC
end
RustboroCity_House2_EventScript_LittleGirl::
msgbox RustboroCity_House2_Text_RoxanneKnowsALot, MSGBOX_NPC
end
RustboroCity_House2_Text_TrainerSchoolExcellent:
.string "The TRAINER'S SCHOOL is excellent.\p"
.string "If you study there, you could even\n"
.string "become a GYM LEADER.$"
RustboroCity_House2_Text_RoxanneKnowsALot:
.string "ROXANNE, the GYM LEADER, really knows\n"
.string "a lot about POKéMON.\p"
.string "She's really strong, too!$"