import from github
This commit is contained in:
75
data/maps/FortreeCity_House5/map.json
Normal file
75
data/maps/FortreeCity_House5/map.json
Normal file
@ -0,0 +1,75 @@
|
||||
{
|
||||
"id": "MAP_FORTREE_CITY_HOUSE5",
|
||||
"name": "FortreeCity_House5",
|
||||
"layout": "LAYOUT_FORTREE_CITY_HOUSE1",
|
||||
"music": "MUS_FORTREE",
|
||||
"region_map_section": "MAPSEC_FORTREE_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": 6,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_DOWN_UP_AND_RIGHT",
|
||||
"movement_range_x": 0,
|
||||
"movement_range_y": 0,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "FortreeCity_House5_EventScript_PokefanF",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_ZIGZAGOON_2",
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"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": "FortreeCity_House5_EventScript_Zigzagoon",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_MAN_1",
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"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": "FortreeCity_House5_EventScript_Man",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FORTREE_CITY",
|
||||
"dest_warp_id": 7
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FORTREE_CITY",
|
||||
"dest_warp_id": 7
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
35
data/maps/FortreeCity_House5/scripts.inc
Normal file
35
data/maps/FortreeCity_House5/scripts.inc
Normal file
@ -0,0 +1,35 @@
|
||||
FortreeCity_House5_MapScripts::
|
||||
.byte 0
|
||||
|
||||
FortreeCity_House5_EventScript_PokefanF::
|
||||
msgbox FortreeCity_House5_Text_TreeHousesAreGreat, MSGBOX_NPC
|
||||
end
|
||||
|
||||
FortreeCity_House5_EventScript_Man::
|
||||
msgbox FortreeCity_House5_Text_AdaptedToNature, MSGBOX_NPC
|
||||
end
|
||||
|
||||
FortreeCity_House5_EventScript_Zigzagoon::
|
||||
lock
|
||||
faceplayer
|
||||
waitse
|
||||
playmoncry SPECIES_ZIGZAGOON, CRY_MODE_NORMAL
|
||||
msgbox FortreeCity_House5_Text_Zigzagoon, MSGBOX_DEFAULT
|
||||
waitmoncry
|
||||
release
|
||||
end
|
||||
|
||||
FortreeCity_House5_Text_TreeHousesAreGreat:
|
||||
.string "The tree houses of FORTREE are great!\p"
|
||||
.string "I think it's the number one town for\n"
|
||||
.string "living together with POKéMON.$"
|
||||
|
||||
FortreeCity_House5_Text_AdaptedToNature:
|
||||
.string "POKéMON and people have adapted to\n"
|
||||
.string "nature for survival.\p"
|
||||
.string "There's no need to make nature\n"
|
||||
.string "conform to the way we want to live.$"
|
||||
|
||||
FortreeCity_House5_Text_Zigzagoon:
|
||||
.string "ZIGZAGOON: Bufuu!$"
|
||||
|
Reference in New Issue
Block a user