import from github
This commit is contained in:
49
data/maps/SootopolisCity_House2/map.json
Normal file
49
data/maps/SootopolisCity_House2/map.json
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
"id": "MAP_SOOTOPOLIS_CITY_HOUSE2",
|
||||
"name": "SootopolisCity_House2",
|
||||
"layout": "LAYOUT_SOOTOPOLIS_CITY_HOUSE2",
|
||||
"music": "MUS_SOOTOPOLIS",
|
||||
"region_map_section": "MAPSEC_SOOTOPOLIS_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_EXPERT_F",
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_RIGHT",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "SootopolisCity_House2_EventScript_ExpertF",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_SOOTOPOLIS_CITY",
|
||||
"dest_warp_id": 5
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_SOOTOPOLIS_CITY",
|
||||
"dest_warp_id": 5
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
34
data/maps/SootopolisCity_House2/scripts.inc
Normal file
34
data/maps/SootopolisCity_House2/scripts.inc
Normal file
@ -0,0 +1,34 @@
|
||||
SootopolisCity_House2_MapScripts::
|
||||
.byte 0
|
||||
|
||||
SootopolisCity_House2_EventScript_ExpertF::
|
||||
lock
|
||||
faceplayer
|
||||
msgbox SootopolisCity_House2_Text_DidYouKnowAboutMtPyreOrbs, MSGBOX_YESNO
|
||||
call_if_eq VAR_RESULT, YES, SootopolisCity_House2_EventScript_KnowAboutOrbs
|
||||
call_if_eq VAR_RESULT, NO, SootopolisCity_House2_EventScript_DontKnowAboutOrbs
|
||||
release
|
||||
end
|
||||
|
||||
SootopolisCity_House2_EventScript_KnowAboutOrbs::
|
||||
msgbox SootopolisCity_House2_Text_YesTwoOrbsSideBySide, MSGBOX_DEFAULT
|
||||
return
|
||||
|
||||
SootopolisCity_House2_EventScript_DontKnowAboutOrbs::
|
||||
msgbox SootopolisCity_House2_Text_OughtToVisitAndSee, MSGBOX_DEFAULT
|
||||
return
|
||||
|
||||
SootopolisCity_House2_Text_DidYouKnowAboutMtPyreOrbs:
|
||||
.string "MT. PYRE…\p"
|
||||
.string "At its peak are two orbs placed side\n"
|
||||
.string "by side. Did you know?$"
|
||||
|
||||
SootopolisCity_House2_Text_YesTwoOrbsSideBySide:
|
||||
.string "Yes, two orbs side by side…\p"
|
||||
.string "The sight of them together…\n"
|
||||
.string "It is somehow soothing…$"
|
||||
|
||||
SootopolisCity_House2_Text_OughtToVisitAndSee:
|
||||
.string "Is that so?\n"
|
||||
.string "Perhaps you ought to visit and see…$"
|
||||
|
Reference in New Issue
Block a user