import from github
This commit is contained in:
62
data/maps/SootopolisCity_House3/map.json
Normal file
62
data/maps/SootopolisCity_House3/map.json
Normal file
@ -0,0 +1,62 @@
|
||||
{
|
||||
"id": "MAP_SOOTOPOLIS_CITY_HOUSE3",
|
||||
"name": "SootopolisCity_House3",
|
||||
"layout": "LAYOUT_SOOTOPOLIS_CITY_HOUSE3",
|
||||
"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_WOMAN_4",
|
||||
"x": 2,
|
||||
"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": "SootopolisCity_House3_EventScript_Woman",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_GIRL_2",
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_WANDER_AROUND",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "SootopolisCity_House3_EventScript_Girl",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_SOOTOPOLIS_CITY",
|
||||
"dest_warp_id": 6
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_SOOTOPOLIS_CITY",
|
||||
"dest_warp_id": 6
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
42
data/maps/SootopolisCity_House3/scripts.inc
Normal file
42
data/maps/SootopolisCity_House3/scripts.inc
Normal file
@ -0,0 +1,42 @@
|
||||
SootopolisCity_House3_MapScripts::
|
||||
.byte 0
|
||||
|
||||
SootopolisCity_House3_EventScript_Woman::
|
||||
lock
|
||||
faceplayer
|
||||
msgbox SootopolisCity_House3_Text_JuanHasManyFansDoYou, MSGBOX_YESNO
|
||||
goto_if_eq VAR_RESULT, YES, SootopolisCity_House3_EventScript_HaveFans
|
||||
msgbox SootopolisCity_House3_Text_LonesomeTryWorkingHarder, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
SootopolisCity_House3_EventScript_HaveFans::
|
||||
msgbox SootopolisCity_House3_Text_YouMustBePrettyStrong, MSGBOX_DEFAULT
|
||||
release
|
||||
end
|
||||
|
||||
SootopolisCity_House3_EventScript_Girl::
|
||||
msgbox SootopolisCity_House3_Text_TrainerFanClubWasWild, MSGBOX_NPC
|
||||
end
|
||||
|
||||
SootopolisCity_House3_Text_JuanHasManyFansDoYou:
|
||||
.string "You're a POKéMON TRAINER, aren't you?\p"
|
||||
.string "SOOTOPOLIS's JUAN has many fans.\n"
|
||||
.string "Even more than his student WALLACE!\p"
|
||||
.string "Do you have any?$"
|
||||
|
||||
SootopolisCity_House3_Text_YouMustBePrettyStrong:
|
||||
.string "Oh, then you must be pretty strong.$"
|
||||
|
||||
SootopolisCity_House3_Text_LonesomeTryWorkingHarder:
|
||||
.string "Oh, dear…\n"
|
||||
.string "That's a little lonesome.\p"
|
||||
.string "Try working a little harder to get\n"
|
||||
.string "a fan following.$"
|
||||
|
||||
SootopolisCity_House3_Text_TrainerFanClubWasWild:
|
||||
.string "Dedicated fans come over from even\n"
|
||||
.string "outside of HOENN.\p"
|
||||
.string "It was really wild when I went to the\n"
|
||||
.string "TRAINER FAN CLUB in LILYCOVE.$"
|
||||
|
Reference in New Issue
Block a user