import from github
This commit is contained in:
75
data/maps/SafariZone_RestHouse/map.json
Normal file
75
data/maps/SafariZone_RestHouse/map.json
Normal file
@ -0,0 +1,75 @@
|
||||
{
|
||||
"id": "MAP_SAFARI_ZONE_REST_HOUSE",
|
||||
"name": "SafariZone_RestHouse",
|
||||
"layout": "LAYOUT_SAFARI_ZONE_REST_HOUSE",
|
||||
"music": "MUS_SAFARI_ZONE",
|
||||
"region_map_section": "MAPSEC_SAFARI_ZONE",
|
||||
"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_YOUNGSTER",
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"elevation": 0,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_RIGHT",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "SafariZone_RestHouse_EventScript_Youngster",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_PSYCHIC_M",
|
||||
"x": 8,
|
||||
"y": 4,
|
||||
"elevation": 0,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_LEFT",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "SafariZone_RestHouse_EventScript_PsychicM",
|
||||
"flag": "0"
|
||||
},
|
||||
{
|
||||
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"movement_type": "MOVEMENT_TYPE_FACE_RIGHT",
|
||||
"movement_range_x": 1,
|
||||
"movement_range_y": 1,
|
||||
"trainer_type": "TRAINER_TYPE_NONE",
|
||||
"trainer_sight_or_berry_tree_id": "0",
|
||||
"script": "SafariZone_RestHouse_EventScript_FatMan",
|
||||
"flag": "0"
|
||||
}
|
||||
],
|
||||
"warp_events": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_SAFARI_ZONE_SOUTHWEST",
|
||||
"dest_warp_id": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_SAFARI_ZONE_SOUTHWEST",
|
||||
"dest_warp_id": 0
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
"bg_events": []
|
||||
}
|
15
data/maps/SafariZone_RestHouse/scripts.inc
Normal file
15
data/maps/SafariZone_RestHouse/scripts.inc
Normal file
@ -0,0 +1,15 @@
|
||||
SafariZone_RestHouse_MapScripts::
|
||||
.byte 0
|
||||
|
||||
SafariZone_RestHouse_EventScript_Youngster::
|
||||
msgbox SafariZone_RestHouse_Text_Youngster, MSGBOX_NPC
|
||||
end
|
||||
|
||||
SafariZone_RestHouse_EventScript_PsychicM::
|
||||
msgbox SafariZone_RestHouse_Text_PsychicM, MSGBOX_NPC
|
||||
end
|
||||
|
||||
SafariZone_RestHouse_EventScript_FatMan::
|
||||
msgbox SafariZone_RestHouse_Text_FatMan, MSGBOX_NPC
|
||||
end
|
||||
|
Reference in New Issue
Block a user