Merge pull request #484 from GriffinRichards/clone-union

Separate connection clone objects from normal objects
This commit is contained in:
GriffinR
2022-10-17 21:29:52 -04:00
committed by GitHub
429 changed files with 3114 additions and 1484 deletions
+1 -1
View File
@@ -476,7 +476,7 @@
formatwarp \map, \a, \b, \c formatwarp \map, \a, \b, \c
.endm .endm
@ Sets the dynamic warp destination. Warps with a destination map of MAP_NONE will target this destination. @ Sets the dynamic warp destination. Warps with a destination map of MAP_DYNAMIC will target this destination.
@ Warp commands can be given either the id of which warp location to go to on the destination map @ Warp commands can be given either the id of which warp location to go to on the destination map
@ or a pair of x/y coordinates to go to directly on the destination map. @ or a pair of x/y coordinates to go to directly on the destination map.
.macro setdynamicwarp map:req, a, b, c .macro setdynamicwarp map:req, a, b, c
+17 -3
View File
@@ -14,11 +14,11 @@
.4byte \address .4byte \address
.endm .endm
.macro object_event index:req, gfx:req, in_connection:req x:req, y:req, elevation:req, movement_type:req, x_radius:req, y_radius:req, trainer_type:req, sight_radius_tree_etc:req, script:req, event_flag:req .macro object_event index:req, gfx:req, x:req, y:req, elevation:req, movement_type:req, x_radius:req, y_radius:req, trainer_type:req, sight_radius_tree_etc:req, script:req, event_flag:req
.byte \index .byte \index
.byte \gfx .byte \gfx
.byte \in_connection .byte OBJ_KIND_NORMAL
.byte 0 .space 1 @ Padding
.2byte \x, \y .2byte \x, \y
.byte \elevation, \movement_type, ((\y_radius << 4) | \x_radius), 0 .byte \elevation, \movement_type, ((\y_radius << 4) | \x_radius), 0
.2byte \trainer_type, \sight_radius_tree_etc .2byte \trainer_type, \sight_radius_tree_etc
@@ -27,6 +27,20 @@
inc _num_npcs inc _num_npcs
.endm .endm
.macro clone_event index:req, gfx:req, x:req, y:req, target_local_id:req, target_map_id:req
.byte \index
.byte \gfx
.byte OBJ_KIND_CLONE
.space 1 @ Padding
.2byte \x, \y
.byte \target_local_id
.space 3 @ Padding
.2byte \target_map_id & 0xFF @ map num
.2byte \target_map_id >> 8 @ map group
.space 8 @ Padding
inc _num_npcs
.endm
.macro warp_def x, y, byte, warp, map_id .macro warp_def x, y, byte, warp, map_id
.2byte \x, \y .2byte \x, \y
.byte \byte, \warp .byte \byte, \warp
+5 -4
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_UNION_ROOM_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_UNION_ROOM_RECEPTIONIST",
"x": 9, "x": 9,
"y": 3, "y": 3,
@@ -34,15 +35,15 @@
"x": 6, "x": 6,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
}, },
{ {
"x": 7, "x": 7,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
} }
], ],
"coord_events": [ "coord_events": [
+8 -8
View File
@@ -20,29 +20,29 @@
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
}, },
{ {
"x": 6, "x": 6,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
}, },
{ {
"x": 7, "x": 7,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
}, },
{ {
"x": 8, "x": 8,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
} }
], ],
"coord_events": [ "coord_events": [
+3 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_METEORITE", "graphics_id": "OBJ_EVENT_GFX_METEORITE",
"x": 15, "x": 15,
"y": 12, "y": 12,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_BIRTH_ISLAND_METEORITE" "flag": "FLAG_HIDE_BIRTH_ISLAND_METEORITE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_VAR_0", "graphics_id": "OBJ_EVENT_GFX_VAR_0",
"x": 15, "x": 15,
"y": 3, "y": 3,
@@ -48,7 +50,7 @@
"y": 24, "y": 24,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_BIRTH_ISLAND_HARBOR", "dest_map": "MAP_BIRTH_ISLAND_HARBOR",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+3 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SEAGALLOP", "graphics_id": "OBJ_EVENT_GFX_SEAGALLOP",
"x": 8, "x": 8,
"y": 9, "y": 9,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SAILOR", "graphics_id": "OBJ_EVENT_GFX_SAILOR",
"x": 8, "x": 8,
"y": 6, "y": 6,
@@ -48,7 +50,7 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_BIRTH_ISLAND_EXTERIOR", "dest_map": "MAP_BIRTH_ISLAND_EXTERIOR",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+30 -22
View File
@@ -27,6 +27,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 48, "x": 48,
"y": 15, "y": 15,
@@ -40,6 +41,7 @@
"flag": "FLAG_HIDE_CELADON_ROCKETS" "flag": "FLAG_HIDE_CELADON_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 38, "x": 38,
"y": 14, "y": 14,
@@ -53,6 +55,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_POLIWRATH", "graphics_id": "OBJ_EVENT_GFX_POLIWRATH",
"x": 36, "x": 36,
"y": 14, "y": 14,
@@ -66,6 +69,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL", "graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL",
"x": 11, "x": 11,
"y": 18, "y": 18,
@@ -79,6 +83,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 18, "x": 18,
"y": 22, "y": 22,
@@ -92,6 +97,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 30, "x": 30,
"y": 24, "y": 24,
@@ -105,6 +111,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2",
"x": 26, "x": 26,
"y": 19, "y": 19,
@@ -118,6 +125,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 38, "x": 38,
"y": 31, "y": 31,
@@ -131,6 +139,7 @@
"flag": "FLAG_HIDE_CELADON_ROCKETS" "flag": "FLAG_HIDE_CELADON_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 9, "x": 9,
"y": 30, "y": 30,
@@ -144,6 +153,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 52, "x": 52,
"y": 22, "y": 22,
@@ -157,6 +167,7 @@
"flag": "FLAG_TEMP_14" "flag": "FLAG_TEMP_14"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 40, "x": 40,
"y": 35, "y": 35,
@@ -170,6 +181,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BOY", "graphics_id": "OBJ_EVENT_GFX_BOY",
"x": 25, "x": 25,
"y": 10, "y": 10,
@@ -183,20 +195,15 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "clone",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"in_connection": true,
"x": -7, "x": -7,
"y": 21, "y": 21,
"elevation": 7, "target_local_id": 7,
"movement_type": "MOVEMENT_TYPE_NONE", "target_map": "MAP_ROUTE16"
"movement_range_x": 0,
"movement_range_y": 0,
"trainer_type": "34",
"trainer_sight_or_berry_tree_id": "3",
"script": "0x0",
"flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 3, "y": 3,
@@ -210,6 +217,7 @@
"flag": "FLAG_HIDE_CELADON_CITY_ETHER" "flag": "FLAG_HIDE_CELADON_CITY_ETHER"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 47, "x": 47,
"y": 24, "y": 24,
@@ -229,91 +237,91 @@
"y": 21, "y": 21,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_GAME_CORNER", "dest_map": "MAP_CELADON_CITY_GAME_CORNER",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 11, "x": 11,
"y": 14, "y": 14,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_1F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 15, "x": 15,
"y": 14, "y": 14,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_1F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_1F",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 30, "x": 30,
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 48, "x": 48,
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_POKEMON_CENTER_1F", "dest_map": "MAP_CELADON_CITY_POKEMON_CENTER_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 39, "x": 39,
"y": 20, "y": 20,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_GAME_CORNER_PRIZE_ROOM", "dest_map": "MAP_CELADON_CITY_GAME_CORNER_PRIZE_ROOM",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 11, "x": 11,
"y": 30, "y": 30,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_GYM", "dest_map": "MAP_CELADON_CITY_GYM",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 37, "x": 37,
"y": 29, "y": 29,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_RESTAURANT", "dest_map": "MAP_CELADON_CITY_RESTAURANT",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 41, "x": 41,
"y": 29, "y": 29,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_HOUSE1", "dest_map": "MAP_CELADON_CITY_HOUSE1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 49, "x": 49,
"y": 29, "y": 29,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_HOTEL", "dest_map": "MAP_CELADON_CITY_HOTEL",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 29, "x": 29,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 30, "x": 30,
"y": 4, "y": 4,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 31, "x": 31,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
+10 -6
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MEOWTH", "graphics_id": "OBJ_EVENT_GFX_MEOWTH",
"x": 1, "x": 1,
"y": 9, "y": 9,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLEFAIRY", "graphics_id": "OBJ_EVENT_GFX_CLEFAIRY",
"x": 5, "x": 5,
"y": 13, "y": 13,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NIDORAN_F", "graphics_id": "OBJ_EVENT_GFX_NIDORAN_F",
"x": 5, "x": 5,
"y": 8, "y": 8,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN", "graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN",
"x": 2, "x": 2,
"y": 9, "y": 9,
@@ -74,42 +78,42 @@
"y": 19, "y": 19,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 12, "x": 12,
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 13, "x": 13,
"y": 19, "y": 19,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 4, "x": 4,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 12, "x": 12,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 2, "x": 2,
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 11 "dest_warp_id": "11"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 6, "x": 6,
"y": 6, "y": 6,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_FAME_CHECKER_ERIKA_JOURNALS" "flag": "FLAG_HIDE_FAME_CHECKER_ERIKA_JOURNALS"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 5, "x": 5,
"y": 6, "y": 6,
@@ -48,28 +50,28 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 2, "x": 2,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 11, "x": 11,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 12, "x": 12,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_1F",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 0, "x": 0,
"y": 10, "y": 10,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 3, "x": 3,
"y": 8, "y": 8,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SUPER_NERD", "graphics_id": "OBJ_EVENT_GFX_SUPER_NERD",
"x": 4, "x": 4,
"y": 10, "y": 10,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 0, "x": 0,
"y": 13, "y": 13,
@@ -74,28 +78,28 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 4, "x": 4,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 12, "x": 12,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 11, "x": 11,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_2F",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -21,21 +21,21 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 10, "x": 10,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_3F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 2, "x": 2,
"y": 12, "y": 12,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF_ROOM", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF_ROOM",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BLACKBELT", "graphics_id": "OBJ_EVENT_GFX_BLACKBELT",
"x": 3, "x": 3,
"y": 5, "y": 5,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 7, "x": 7,
"y": 3, "y": 3,
@@ -48,21 +50,21 @@
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF", "dest_map": "MAP_CELADON_CITY_CONDOMINIUMS_ROOF",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_F", "graphics_id": "OBJ_EVENT_GFX_WORKER_F",
"x": 6, "x": 6,
"y": 10, "y": 10,
@@ -35,56 +36,56 @@
"y": 15, "y": 15,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 14, "y": 14,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 3, "x": 3,
"y": 15, "y": 15,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 9, "x": 9,
"y": 15, "y": 15,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 10, "x": 10,
"y": 14, "y": 14,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 11, "x": 11,
"y": 15, "y": 15,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 6, "x": 6,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 4, "x": 4,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_2F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_2F",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 5, "x": 5,
"y": 10, "y": 10,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 1, "x": 1,
"y": 8, "y": 8,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 1, "x": 1,
"y": 6, "y": 6,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_1", "graphics_id": "OBJ_EVENT_GFX_WOMAN_1",
"x": 11, "x": 11,
"y": 6, "y": 6,
@@ -74,21 +78,21 @@
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 3, "x": 3,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_1F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_1F",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 9, "x": 9,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_3F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_3F",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 10, "x": 10,
"y": 9, "y": 9,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GBA_KID", "graphics_id": "OBJ_EVENT_GFX_GBA_KID",
"x": 11, "x": 11,
"y": 6, "y": 6,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GBA_KID", "graphics_id": "OBJ_EVENT_GFX_GBA_KID",
"x": 4, "x": 4,
"y": 9, "y": 9,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GBA_KID", "graphics_id": "OBJ_EVENT_GFX_GBA_KID",
"x": 1, "x": 1,
"y": 9, "y": 9,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL", "graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL",
"x": 9, "x": 9,
"y": 14, "y": 14,
@@ -87,21 +92,21 @@
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 2, "y": 2,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_2F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_2F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 3, "x": 3,
"y": 2, "y": 2,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_4F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_4F",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 6, "x": 6,
"y": 6, "y": 6,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 10, "x": 10,
"y": 11, "y": 11,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 3, "x": 3,
"y": 13, "y": 13,
@@ -61,21 +64,21 @@
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 3, "x": 3,
"y": 2, "y": 2,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_3F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_3F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 9, "x": 9,
"y": 2, "y": 2,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_5F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_5F",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 11, "x": 11,
"y": 6, "y": 6,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SAILOR", "graphics_id": "OBJ_EVENT_GFX_SAILOR",
"x": 6, "x": 6,
"y": 8, "y": 8,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 1, "x": 1,
"y": 7, "y": 7,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 1, "x": 1,
"y": 6, "y": 6,
@@ -74,21 +78,21 @@
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ELEVATOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_4F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_4F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 3, "x": 3,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ROOF", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_ROOF",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -20,15 +20,15 @@
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
}, },
{ {
"x": 2, "x": 2,
"y": 6, "y": 6,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_NONE", "dest_map": "MAP_DYNAMIC",
"dest_warp_id": 127 "dest_warp_id": "WARP_ID_DYNAMIC"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_M", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_M",
"x": 9, "x": 9,
"y": 5, "y": 5,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL", "graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -48,7 +50,7 @@
"y": 6, "y": 6,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_5F", "dest_map": "MAP_CELADON_CITY_DEPARTMENT_STORE_5F",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+15 -4
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_F", "graphics_id": "OBJ_EVENT_GFX_WORKER_F",
"x": 4, "x": 4,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_M", "graphics_id": "OBJ_EVENT_GFX_WORKER_M",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BALDING_MAN", "graphics_id": "OBJ_EVENT_GFX_BALDING_MAN",
"x": 1, "x": 1,
"y": 6, "y": 6,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 1, "x": 1,
"y": 8, "y": 8,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FISHER", "graphics_id": "OBJ_EVENT_GFX_FISHER",
"x": 4, "x": 4,
"y": 7, "y": 7,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GYM_GUY", "graphics_id": "OBJ_EVENT_GFX_GYM_GUY",
"x": 7, "x": 7,
"y": 10, "y": 10,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_1", "graphics_id": "OBJ_EVENT_GFX_WOMAN_1",
"x": 7, "x": 7,
"y": 8, "y": 8,
@@ -107,6 +114,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2",
"x": 10, "x": 10,
"y": 9, "y": 9,
@@ -120,6 +128,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 13, "x": 13,
"y": 7, "y": 7,
@@ -133,6 +142,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 16, "x": 16,
"y": 10, "y": 10,
@@ -146,6 +156,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 11, "x": 11,
"y": 2, "y": 2,
@@ -165,28 +176,28 @@
"y": 13, "y": 13,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 10, "x": 10,
"y": 13, "y": 13,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 11, "x": 11,
"y": 13, "y": 13,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 15, "x": 15,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_ROCKET_HIDEOUT_B1F", "dest_map": "MAP_ROCKET_HIDEOUT_B1F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BALDING_MAN", "graphics_id": "OBJ_EVENT_GFX_BALDING_MAN",
"x": 2, "x": 2,
"y": 6, "y": 6,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2",
"x": 6, "x": 6,
"y": 7, "y": 7,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_M", "graphics_id": "OBJ_EVENT_GFX_WORKER_M",
"x": 4, "x": 4,
"y": 2, "y": 2,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_M", "graphics_id": "OBJ_EVENT_GFX_WORKER_M",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_M", "graphics_id": "OBJ_EVENT_GFX_WORKER_M",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -87,21 +92,21 @@
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 4, "x": 4,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 5, "x": 5,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
+14 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 3, "x": 3,
"y": 11, "y": 11,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BEAUTY", "graphics_id": "OBJ_EVENT_GFX_BEAUTY",
"x": 9, "x": 9,
"y": 10, "y": 10,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_PICNICKER", "graphics_id": "OBJ_EVENT_GFX_PICNICKER",
"x": 10, "x": 10,
"y": 7, "y": 7,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BEAUTY", "graphics_id": "OBJ_EVENT_GFX_BEAUTY",
"x": 2, "x": 2,
"y": 6, "y": 6,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BEAUTY", "graphics_id": "OBJ_EVENT_GFX_BEAUTY",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 7, "x": 7,
"y": 4, "y": 4,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ERIKA", "graphics_id": "OBJ_EVENT_GFX_ERIKA",
"x": 6, "x": 6,
"y": 4, "y": 4,
@@ -107,6 +114,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F",
"x": 8, "x": 8,
"y": 7, "y": 7,
@@ -120,6 +128,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 6, "x": 6,
"y": 8, "y": 8,
@@ -133,6 +142,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 3, "x": 3,
"y": 5, "y": 5,
@@ -146,6 +156,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 9, "x": 9,
"y": 6, "y": 6,
@@ -165,21 +176,21 @@
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 6, "x": 6,
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 7, "x": 7,
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
} }
], ],
"coord_events": [], "coord_events": [],
+7 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN", "graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BEAUTY", "graphics_id": "OBJ_EVENT_GFX_BEAUTY",
"x": 3, "x": 3,
"y": 6, "y": 6,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 9, "x": 9,
"y": 7, "y": 7,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY", "graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY",
"x": 2, "x": 2,
"y": 6, "y": 6,
@@ -74,21 +78,21 @@
"y": 10, "y": 10,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 9 "dest_warp_id": "9"
}, },
{ {
"x": 4, "x": 4,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 9 "dest_warp_id": "9"
}, },
{ {
"x": 5, "x": 5,
"y": 10, "y": 10,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 9 "dest_warp_id": "9"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2",
"x": 5, "x": 5,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 2, "x": 2,
"y": 4, "y": 4,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 8, "x": 8,
"y": 4, "y": 4,
@@ -61,21 +64,21 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 8 "dest_warp_id": "8"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 8 "dest_warp_id": "8"
}, },
{ {
"x": 5, "x": 5,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 8 "dest_warp_id": "8"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NURSE", "graphics_id": "OBJ_EVENT_GFX_NURSE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 4, "x": 4,
"y": 4, "y": 4,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F",
"x": 10, "x": 10,
"y": 6, "y": 6,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 12, "x": 12,
"y": 5, "y": 5,
@@ -74,28 +78,28 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 7, "x": 7,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 8, "x": 8,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 1, "x": 1,
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CELADON_CITY_POKEMON_CENTER_2F", "dest_map": "MAP_CELADON_CITY_POKEMON_CENTER_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 10, "x": 10,
"y": 2, "y": 2,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN", "graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -74,21 +78,21 @@
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CELADON_CITY_POKEMON_CENTER_1F", "dest_map": "MAP_CELADON_CITY_POKEMON_CENTER_1F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 5, "x": 5,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_UNION_ROOM", "dest_map": "MAP_UNION_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_TRADE_CENTER", "dest_map": "MAP_TRADE_CENTER",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+8 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CHEF", "graphics_id": "OBJ_EVENT_GFX_CHEF",
"x": 12, "x": 12,
"y": 7, "y": 7,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 11, "x": 11,
"y": 4, "y": 4,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 9, "x": 9,
"y": 4, "y": 4,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BALDING_MAN", "graphics_id": "OBJ_EVENT_GFX_BALDING_MAN",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WORKER_M", "graphics_id": "OBJ_EVENT_GFX_WORKER_M",
"x": 3, "x": 3,
"y": 7, "y": 7,
@@ -87,21 +92,21 @@
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 6, "x": 6,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 7, "x": 7,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CELADON_CITY", "dest_map": "MAP_CELADON_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
} }
], ],
"coord_events": [], "coord_events": [],
+17 -8
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 7, "x": 7,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_1F_NUGGET" "flag": "FLAG_HIDE_CERULEAN_CAVE_1F_NUGGET"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 11, "x": 11,
"y": 16, "y": 16,
@@ -42,6 +44,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_1F_FULL_RESTORE" "flag": "FLAG_HIDE_CERULEAN_CAVE_1F_FULL_RESTORE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 25, "x": 25,
"y": 5, "y": 5,
@@ -55,6 +58,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_1F_MAX_ELIXIR" "flag": "FLAG_HIDE_CERULEAN_CAVE_1F_MAX_ELIXIR"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 7, "x": 7,
"y": 21, "y": 21,
@@ -68,6 +72,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 13, "x": 13,
"y": 21, "y": 21,
@@ -81,6 +86,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 5, "x": 5,
"y": 20, "y": 20,
@@ -94,6 +100,7 @@
"flag": "FLAG_TEMP_14" "flag": "FLAG_TEMP_14"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 14, "x": 14,
"y": 20, "y": 20,
@@ -107,6 +114,7 @@
"flag": "FLAG_TEMP_15" "flag": "FLAG_TEMP_15"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 11, "x": 11,
"y": 21, "y": 21,
@@ -120,6 +128,7 @@
"flag": "FLAG_TEMP_16" "flag": "FLAG_TEMP_16"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 9, "x": 9,
"y": 18, "y": 18,
@@ -139,56 +148,56 @@
"y": 21, "y": 21,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 34, "x": 34,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_2F", "dest_map": "MAP_CERULEAN_CAVE_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 1, "x": 1,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_B1F", "dest_map": "MAP_CERULEAN_CAVE_B1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 10, "x": 10,
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_2F", "dest_map": "MAP_CERULEAN_CAVE_2F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 5, "x": 5,
"y": 15, "y": 15,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_2F", "dest_map": "MAP_CERULEAN_CAVE_2F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 30, "x": 30,
"y": 10, "y": 10,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CERULEAN_CAVE_2F", "dest_map": "MAP_CERULEAN_CAVE_2F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 24, "x": 24,
"y": 11, "y": 11,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_2F", "dest_map": "MAP_CERULEAN_CAVE_2F",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 2, "x": 2,
"y": 4, "y": 4,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_2F", "dest_map": "MAP_CERULEAN_CAVE_2F",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
+19 -6
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 9, "x": 9,
"y": 18, "y": 18,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_2F_PP_UP" "flag": "FLAG_HIDE_CERULEAN_CAVE_2F_PP_UP"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 29, "x": 29,
"y": 16, "y": 16,
@@ -42,6 +44,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_2F_ULTRA_BALL" "flag": "FLAG_HIDE_CERULEAN_CAVE_2F_ULTRA_BALL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 33, "x": 33,
"y": 12, "y": 12,
@@ -55,6 +58,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_2F_FULL_RESTORE" "flag": "FLAG_HIDE_CERULEAN_CAVE_2F_FULL_RESTORE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 33, "x": 33,
"y": 10, "y": 10,
@@ -68,6 +72,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 33, "x": 33,
"y": 9, "y": 9,
@@ -81,6 +86,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 25, "x": 25,
"y": 11, "y": 11,
@@ -94,6 +100,7 @@
"flag": "FLAG_TEMP_14" "flag": "FLAG_TEMP_14"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 28, "x": 28,
"y": 20, "y": 20,
@@ -107,6 +114,7 @@
"flag": "FLAG_TEMP_15" "flag": "FLAG_TEMP_15"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 30, "x": 30,
"y": 20, "y": 20,
@@ -120,6 +128,7 @@
"flag": "FLAG_TEMP_16" "flag": "FLAG_TEMP_16"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 9, "x": 9,
"y": 13, "y": 13,
@@ -133,6 +142,7 @@
"flag": "FLAG_TEMP_17" "flag": "FLAG_TEMP_17"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 23, "x": 23,
"y": 16, "y": 16,
@@ -146,6 +156,7 @@
"flag": "FLAG_TEMP_18" "flag": "FLAG_TEMP_18"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 13, "x": 13,
"y": 6, "y": 6,
@@ -159,6 +170,7 @@
"flag": "FLAG_TEMP_19" "flag": "FLAG_TEMP_19"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 4, "x": 4,
"y": 12, "y": 12,
@@ -172,6 +184,7 @@
"flag": "FLAG_TEMP_1A" "flag": "FLAG_TEMP_1A"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 10, "x": 10,
"y": 20, "y": 20,
@@ -191,42 +204,42 @@
"y": 4, "y": 4,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 13, "x": 13,
"y": 4, "y": 4,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 7, "x": 7,
"y": 14, "y": 14,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 26, "x": 26,
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 23, "x": 23,
"y": 10, "y": 10,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 5, "x": 5,
"y": 6, "y": 6,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 7 "dest_warp_id": "7"
} }
], ],
"coord_events": [], "coord_events": [],
+13 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 31, "x": 31,
"y": 9, "y": 9,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_B1F_ULTRA_BALL" "flag": "FLAG_HIDE_CERULEAN_CAVE_B1F_ULTRA_BALL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 32, "x": 32,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "FLAG_HIDE_CERULEAN_CAVE_B1F_MAX_REVIVE" "flag": "FLAG_HIDE_CERULEAN_CAVE_B1F_MAX_REVIVE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MEWTWO", "graphics_id": "OBJ_EVENT_GFX_MEWTWO",
"x": 7, "x": 7,
"y": 12, "y": 12,
@@ -55,6 +58,7 @@
"flag": "FLAG_HIDE_MEWTWO" "flag": "FLAG_HIDE_MEWTWO"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 37, "x": 37,
"y": 1, "y": 1,
@@ -68,6 +72,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 38, "x": 38,
"y": 2, "y": 2,
@@ -81,6 +86,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 35, "x": 35,
"y": 1, "y": 1,
@@ -94,6 +100,7 @@
"flag": "FLAG_TEMP_14" "flag": "FLAG_TEMP_14"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 37, "x": 37,
"y": 4, "y": 4,
@@ -107,6 +114,7 @@
"flag": "FLAG_TEMP_15" "flag": "FLAG_TEMP_15"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 35, "x": 35,
"y": 5, "y": 5,
@@ -120,6 +128,7 @@
"flag": "FLAG_TEMP_16" "flag": "FLAG_TEMP_16"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -133,6 +142,7 @@
"flag": "FLAG_TEMP_17" "flag": "FLAG_TEMP_17"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 4, "x": 4,
"y": 1, "y": 1,
@@ -146,6 +156,7 @@
"flag": "FLAG_TEMP_18" "flag": "FLAG_TEMP_18"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 6, "x": 6,
"y": 1, "y": 1,
@@ -159,6 +170,7 @@
"flag": "FLAG_TEMP_19" "flag": "FLAG_TEMP_19"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 3, "x": 3,
"y": 4, "y": 4,
@@ -178,7 +190,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+28 -23
View File
@@ -37,6 +37,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_POLICEMAN", "graphics_id": "OBJ_EVENT_GFX_POLICEMAN",
"x": 31, "x": 31,
"y": 12, "y": 12,
@@ -50,6 +51,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 33, "x": 33,
"y": 6, "y": 6,
@@ -63,6 +65,7 @@
"flag": "FLAG_HIDE_CERULEAN_ROCKET" "flag": "FLAG_HIDE_CERULEAN_ROCKET"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY", "graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY",
"x": 16, "x": 16,
"y": 21, "y": 21,
@@ -76,6 +79,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BALDING_MAN", "graphics_id": "OBJ_EVENT_GFX_BALDING_MAN",
"x": 9, "x": 9,
"y": 23, "y": 23,
@@ -89,6 +93,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SLOWBRO", "graphics_id": "OBJ_EVENT_GFX_SLOWBRO",
"x": 32, "x": 32,
"y": 29, "y": 29,
@@ -102,6 +107,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 33, "x": 33,
"y": 29, "y": 29,
@@ -115,6 +121,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 34, "x": 34,
"y": 22, "y": 22,
@@ -128,6 +135,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BLUE", "graphics_id": "OBJ_EVENT_GFX_BLUE",
"x": 22, "x": 22,
"y": 0, "y": 0,
@@ -141,6 +149,7 @@
"flag": "FLAG_HIDE_CERULEAN_RIVAL" "flag": "FLAG_HIDE_CERULEAN_RIVAL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 26, "x": 26,
"y": 32, "y": 32,
@@ -154,20 +163,15 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "clone",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"in_connection": true,
"x": 50, "x": 50,
"y": 18, "y": 18,
"elevation": 10, "target_local_id": 10,
"movement_type": "MOVEMENT_TYPE_NONE", "target_map": "MAP_ROUTE9"
"movement_range_x": 0,
"movement_range_y": 0,
"trainer_type": "27",
"trainer_sight_or_berry_tree_id": "3",
"script": "0x0",
"flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_1", "graphics_id": "OBJ_EVENT_GFX_WOMAN_1",
"x": 12, "x": 12,
"y": 30, "y": 30,
@@ -181,6 +185,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_M", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_M",
"x": 1, "x": 1,
"y": 13, "y": 13,
@@ -200,98 +205,98 @@
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_HOUSE1", "dest_map": "MAP_CERULEAN_CITY_HOUSE1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 30, "x": 30,
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_HOUSE2", "dest_map": "MAP_CERULEAN_CITY_HOUSE2",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 15, "x": 15,
"y": 17, "y": 17,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_HOUSE3", "dest_map": "MAP_CERULEAN_CITY_HOUSE3",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 22, "x": 22,
"y": 19, "y": 19,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_POKEMON_CENTER_1F", "dest_map": "MAP_CERULEAN_CITY_POKEMON_CENTER_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 31, "x": 31,
"y": 21, "y": 21,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_GYM", "dest_map": "MAP_CERULEAN_CITY_GYM",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 13, "x": 13,
"y": 28, "y": 28,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY_BIKE_SHOP", "dest_map": "MAP_CERULEAN_CITY_BIKE_SHOP",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 29, "x": 29,
"y": 28, "y": 28,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_MART", "dest_map": "MAP_CERULEAN_CITY_MART",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 1, "x": 1,
"y": 12, "y": 12,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CAVE_1F", "dest_map": "MAP_CERULEAN_CAVE_1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 10, "x": 10,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY_HOUSE1", "dest_map": "MAP_CERULEAN_CITY_HOUSE1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 31, "x": 31,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY_HOUSE2", "dest_map": "MAP_CERULEAN_CITY_HOUSE2",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 31, "x": 31,
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY_HOUSE2", "dest_map": "MAP_CERULEAN_CITY_HOUSE2",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 14, "x": 14,
"y": 28, "y": 28,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY_BIKE_SHOP", "dest_map": "MAP_CERULEAN_CITY_BIKE_SHOP",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 23, "x": 23,
"y": 28, "y": 28,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_HOUSE4", "dest_map": "MAP_CERULEAN_CITY_HOUSE4",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 17, "x": 17,
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY_HOUSE5", "dest_map": "MAP_CERULEAN_CITY_HOUSE5",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [ "coord_events": [
+6 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 9, "x": 9,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 9, "x": 9,
"y": 7, "y": 7,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -61,21 +64,21 @@
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 6, "x": 6,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
+7 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SWIMMER_M_WATER", "graphics_id": "OBJ_EVENT_GFX_SWIMMER_M_WATER",
"x": 10, "x": 10,
"y": 12, "y": 12,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_PICNICKER", "graphics_id": "OBJ_EVENT_GFX_PICNICKER",
"x": 4, "x": 4,
"y": 7, "y": 7,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MISTY", "graphics_id": "OBJ_EVENT_GFX_MISTY",
"x": 8, "x": 8,
"y": 6, "y": 6,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GYM_GUY", "graphics_id": "OBJ_EVENT_GFX_GYM_GUY",
"x": 7, "x": 7,
"y": 16, "y": 16,
@@ -74,21 +78,21 @@
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 8, "x": 8,
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 9, "x": 9,
"y": 18, "y": 18,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
+5 -4
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 6, "x": 6,
"y": 5, "y": 5,
@@ -35,28 +36,28 @@
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 3, "x": 3,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 4, "x": 4,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 3, "x": 3,
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 8 "dest_warp_id": "8"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -4
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_HIKER", "graphics_id": "OBJ_EVENT_GFX_HIKER",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 7, "x": 7,
"y": 6, "y": 6,
@@ -48,28 +50,28 @@
"y": 7, "y": 7,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 3, "x": 3,
"y": 7, "y": 7,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 1, "elevation": 1,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 4, "x": 4,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 9 "dest_warp_id": "9"
} }
], ],
"coord_events": [], "coord_events": [],
+5 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN", "graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN",
"x": 7, "x": 7,
"y": 5, "y": 5,
@@ -48,21 +50,21 @@
"y": 7, "y": 7,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 5, "x": 5,
"y": 7, "y": 7,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 5, "x": 5,
"y": 3, "y": 3,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 12 "dest_warp_id": "12"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2",
"x": 7, "x": 7,
"y": 4, "y": 4,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 13 "dest_warp_id": "13"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 2, "x": 2,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_1", "graphics_id": "OBJ_EVENT_GFX_WOMAN_1",
"x": 9, "x": 9,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 1, "x": 1,
"y": 7, "y": 7,
@@ -61,21 +64,21 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 5, "x": 5,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NURSE", "graphics_id": "OBJ_EVENT_GFX_NURSE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 12, "x": 12,
"y": 5, "y": 5,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 4, "x": 4,
"y": 8, "y": 8,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 3, "x": 3,
"y": 3, "y": 3,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 2, "x": 2,
"y": 1, "y": 1,
@@ -94,6 +100,7 @@
"flag": "FLAG_HIDE_POSTGAME_GOSSIPERS" "flag": "FLAG_HIDE_POSTGAME_GOSSIPERS"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 3, "x": 3,
"y": 1, "y": 1,
@@ -113,28 +120,28 @@
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 7, "x": 7,
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CERULEAN_CITY", "dest_map": "MAP_CERULEAN_CITY",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 1, "x": 1,
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CERULEAN_CITY_POKEMON_CENTER_2F", "dest_map": "MAP_CERULEAN_CITY_POKEMON_CENTER_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 10, "x": 10,
"y": 2, "y": 2,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN", "graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -74,21 +78,21 @@
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CERULEAN_CITY_POKEMON_CENTER_1F", "dest_map": "MAP_CERULEAN_CITY_POKEMON_CENTER_1F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 5, "x": 5,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_UNION_ROOM", "dest_map": "MAP_UNION_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_TRADE_CENTER", "dest_map": "MAP_TRADE_CENTER",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+9 -5
View File
@@ -27,6 +27,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 14, "x": 14,
"y": 6, "y": 6,
@@ -40,6 +41,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 11, "x": 11,
"y": 11, "y": 11,
@@ -53,6 +55,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BILL", "graphics_id": "OBJ_EVENT_GFX_BILL",
"x": 20, "x": 20,
"y": 7, "y": 7,
@@ -66,6 +69,7 @@
"flag": "FLAG_HIDE_CINNABAR_BILL" "flag": "FLAG_HIDE_CINNABAR_BILL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SEAGALLOP", "graphics_id": "OBJ_EVENT_GFX_SEAGALLOP",
"x": 23, "x": 23,
"y": 7, "y": 7,
@@ -85,35 +89,35 @@
"y": 3, "y": 3,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_POKEMON_MANSION_1F", "dest_map": "MAP_POKEMON_MANSION_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 20, "x": 20,
"y": 4, "y": 4,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_GYM", "dest_map": "MAP_CINNABAR_ISLAND_GYM",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 8, "x": 8,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 14, "x": 14,
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_CENTER_1F", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_CENTER_1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 19, "x": 19,
"y": 11, "y": 11,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_MART", "dest_map": "MAP_CINNABAR_ISLAND_MART",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [ "coord_events": [
+12 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SUPER_NERD", "graphics_id": "OBJ_EVENT_GFX_SUPER_NERD",
"x": 25, "x": 25,
"y": 11, "y": 11,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 25, "x": 25,
"y": 4, "y": 4,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 17, "x": 17,
"y": 5, "y": 5,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SUPER_NERD", "graphics_id": "OBJ_EVENT_GFX_SUPER_NERD",
"x": 16, "x": 16,
"y": 11, "y": 11,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 16, "x": 16,
"y": 18, "y": 18,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SUPER_NERD", "graphics_id": "OBJ_EVENT_GFX_SUPER_NERD",
"x": 4, "x": 4,
"y": 19, "y": 19,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 4, "x": 4,
"y": 11, "y": 11,
@@ -107,6 +114,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BLAINE", "graphics_id": "OBJ_EVENT_GFX_BLAINE",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -120,6 +128,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GYM_GUY", "graphics_id": "OBJ_EVENT_GFX_GYM_GUY",
"x": 24, "x": 24,
"y": 20, "y": 20,
@@ -139,21 +148,21 @@
"y": 23, "y": 23,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 25, "x": 25,
"y": 23, "y": 23,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 26, "x": 26,
"y": 23, "y": 23,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 2, "x": 2,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 8, "x": 8,
"y": 2, "y": 2,
@@ -61,21 +64,21 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 5, "x": 5,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NURSE", "graphics_id": "OBJ_EVENT_GFX_NURSE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F",
"x": 2, "x": 2,
"y": 4, "y": 4,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 9, "x": 9,
"y": 7, "y": 7,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 14, "x": 14,
"y": 6, "y": 6,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 2, "x": 2,
"y": 1, "y": 1,
@@ -81,6 +86,7 @@
"flag": "FLAG_HIDE_POSTGAME_GOSSIPERS" "flag": "FLAG_HIDE_POSTGAME_GOSSIPERS"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 3, "x": 3,
"y": 1, "y": 1,
@@ -94,6 +100,7 @@
"flag": "FLAG_HIDE_POSTGAME_GOSSIPERS" "flag": "FLAG_HIDE_POSTGAME_GOSSIPERS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BILL", "graphics_id": "OBJ_EVENT_GFX_BILL",
"x": 11, "x": 11,
"y": 5, "y": 5,
@@ -113,28 +120,28 @@
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 6, "x": 6,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 1, "x": 1,
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_CENTER_2F", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_CENTER_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 10, "x": 10,
"y": 2, "y": 2,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN", "graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -74,21 +78,21 @@
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_CENTER_1F", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_CENTER_1F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 5, "x": 5,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_UNION_ROOM", "dest_map": "MAP_UNION_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_TRADE_CENTER", "dest_map": "MAP_TRADE_CENTER",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 2, "x": 2,
"y": 4, "y": 4,
@@ -35,42 +36,42 @@
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 4, "x": 4,
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 5, "x": 5,
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND", "dest_map": "MAP_CINNABAR_ISLAND",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 13, "x": 13,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_LOUNGE", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_LOUNGE",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 19, "x": 19,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_RESEARCH_ROOM", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_RESEARCH_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 25, "x": 25,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_EXPERIMENT_ROOM", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_EXPERIMENT_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BOY", "graphics_id": "OBJ_EVENT_GFX_BOY",
"x": 11, "x": 11,
"y": 8, "y": 8,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 12, "x": 12,
"y": 3, "y": 3,
@@ -48,7 +50,7 @@
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 5, "x": 5,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_2",
"x": 4, "x": 4,
"y": 6, "y": 6,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 10, "x": 10,
"y": 5, "y": 5,
@@ -61,7 +64,7 @@
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE",
"dest_warp_id": 3 "dest_warp_id": "3"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SUPER_NERD", "graphics_id": "OBJ_EVENT_GFX_SUPER_NERD",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 10, "x": 10,
"y": 3, "y": 3,
@@ -48,7 +50,7 @@
"y": 9, "y": 9,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE", "dest_map": "MAP_CINNABAR_ISLAND_POKEMON_LAB_ENTRANCE",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -2
View File
@@ -21,14 +21,14 @@
"y": 3, "y": 3,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_DIGLETTS_CAVE_NORTH_ENTRANCE", "dest_map": "MAP_DIGLETTS_CAVE_NORTH_ENTRANCE",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 82, "x": 82,
"y": 71, "y": 71,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_DIGLETTS_CAVE_SOUTH_ENTRANCE", "dest_map": "MAP_DIGLETTS_CAVE_SOUTH_ENTRANCE",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_HIKER", "graphics_id": "OBJ_EVENT_GFX_HIKER",
"x": 4, "x": 4,
"y": 4, "y": 4,
@@ -35,14 +36,14 @@
"y": 4, "y": 4,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_DIGLETTS_CAVE_B1F", "dest_map": "MAP_DIGLETTS_CAVE_B1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 4, "x": 4,
"y": 6, "y": 6,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_ROUTE2", "dest_map": "MAP_ROUTE2",
"dest_warp_id": 3 "dest_warp_id": "3"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 4, "x": 4,
"y": 4, "y": 4,
@@ -35,14 +36,14 @@
"y": 6, "y": 6,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_ROUTE11", "dest_map": "MAP_ROUTE11",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 6, "x": 6,
"y": 4, "y": 4,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_DIGLETTS_CAVE_B1F", "dest_map": "MAP_DIGLETTS_CAVE_B1F",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
+9 -13
View File
@@ -27,6 +27,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FISHER", "graphics_id": "OBJ_EVENT_GFX_FISHER",
"x": 8, "x": 8,
"y": 5, "y": 5,
@@ -40,6 +41,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BUG_CATCHER", "graphics_id": "OBJ_EVENT_GFX_BUG_CATCHER",
"x": 16, "x": 16,
"y": 10, "y": 10,
@@ -53,18 +55,12 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "clone",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"in_connection": true,
"x": 32, "x": 32,
"y": 9, "y": 9,
"elevation": 4, "target_local_id": 4,
"movement_type": "MOVEMENT_TYPE_NONE", "target_map": "MAP_FIVE_ISLAND_MEADOW"
"movement_range_x": 0,
"movement_range_y": 0,
"trainer_type": "56",
"trainer_sight_or_berry_tree_id": "3",
"script": "0x0",
"flag": "0"
} }
], ],
"warp_events": [ "warp_events": [
@@ -73,28 +69,28 @@
"y": 14, "y": 14,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_HARBOR", "dest_map": "MAP_FIVE_ISLAND_HARBOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 18, "x": 18,
"y": 6, "y": 6,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FIVE_ISLAND_POKEMON_CENTER_1F", "dest_map": "MAP_FIVE_ISLAND_POKEMON_CENTER_1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 12, "x": 12,
"y": 6, "y": 6,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FIVE_ISLAND_HOUSE1", "dest_map": "MAP_FIVE_ISLAND_HOUSE1",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 22, "x": 22,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FIVE_ISLAND_HOUSE2", "dest_map": "MAP_FIVE_ISLAND_HOUSE2",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+3 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SEAGALLOP", "graphics_id": "OBJ_EVENT_GFX_SEAGALLOP",
"x": 8, "x": 8,
"y": 9, "y": 9,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SAILOR", "graphics_id": "OBJ_EVENT_GFX_SAILOR",
"x": 8, "x": 8,
"y": 6, "y": 6,
@@ -48,7 +50,7 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND", "dest_map": "MAP_FIVE_ISLAND",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_3", "graphics_id": "OBJ_EVENT_GFX_WOMAN_3",
"x": 10, "x": 10,
"y": 2, "y": 2,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND", "dest_map": "MAP_FIVE_ISLAND",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 2, "x": 2,
"y": 3, "y": 3,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND", "dest_map": "MAP_FIVE_ISLAND",
"dest_warp_id": 3 "dest_warp_id": "3"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -21,14 +21,14 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_RESORT_GORGEOUS", "dest_map": "MAP_FIVE_ISLAND_RESORT_GORGEOUS",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 5, "x": 5,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -5
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_HIKER", "graphics_id": "OBJ_EVENT_GFX_HIKER",
"x": 5, "x": 5,
"y": 4, "y": 4,
@@ -35,35 +36,35 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ENTRANCE", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ENTRANCE",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 5, "x": 5,
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM2", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM2",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_LOST_CAVE_SELPHY" "flag": "FLAG_HIDE_LOST_CAVE_SELPHY"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 2, "y": 2,
@@ -48,7 +50,7 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -35,7 +36,7 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -35,7 +36,7 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -35,7 +36,7 @@
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -35,7 +36,7 @@
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM3", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM3",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM11", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM11",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM4", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM4",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+5 -4
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_1", "graphics_id": "OBJ_EVENT_GFX_WOMAN_1",
"x": 6, "x": 6,
"y": 4, "y": 4,
@@ -35,28 +36,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM12", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM12",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM5", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM5",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM6", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM6",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM13", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM13",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM7", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM7",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM8", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM8",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM9", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM9",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM14", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM14",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -4
View File
@@ -21,28 +21,28 @@
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM10", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM10",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 8, "x": 8,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 5, "x": 5,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 5, "y": 5,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ROOM1",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+8 -1
View File
@@ -27,6 +27,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_F", "graphics_id": "OBJ_EVENT_GFX_ROCKET_F",
"x": 18, "x": 18,
"y": 18, "y": 18,
@@ -40,6 +41,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 17, "x": 17,
"y": 5, "y": 5,
@@ -53,6 +55,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 11, "x": 11,
"y": 27, "y": 27,
@@ -66,6 +69,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 8, "x": 8,
"y": 9, "y": 9,
@@ -79,6 +83,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 19, "x": 19,
"y": 12, "y": 12,
@@ -92,6 +97,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 12, "x": 12,
"y": 11, "y": 11,
@@ -105,6 +111,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_MEADOW_MAX_POTION" "flag": "FLAG_HIDE_FIVE_ISLAND_MEADOW_MAX_POTION"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 3, "x": 3,
"y": 22, "y": 22,
@@ -124,7 +131,7 @@
"y": 21, "y": 21,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FIVE_ISLAND_ROCKET_WAREHOUSE", "dest_map": "MAP_FIVE_ISLAND_ROCKET_WAREHOUSE",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -22,6 +22,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 8, "x": 8,
"y": 44, "y": 44,
@@ -35,6 +36,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 12, "x": 12,
"y": 6, "y": 6,
@@ -48,6 +50,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 14, "x": 14,
"y": 17, "y": 17,
@@ -61,6 +64,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 17, "x": 17,
"y": 31, "y": 31,
@@ -74,6 +78,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 4, "x": 4,
"y": 47, "y": 47,
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NURSE", "graphics_id": "OBJ_EVENT_GFX_NURSE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F",
"x": 9, "x": 9,
"y": 4, "y": 4,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CHEF", "graphics_id": "OBJ_EVENT_GFX_CHEF",
"x": 4, "x": 4,
"y": 8, "y": 8,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 2, "x": 2,
"y": 1, "y": 1,
@@ -68,6 +72,7 @@
"flag": "FLAG_HIDE_POSTGAME_GOSSIPERS" "flag": "FLAG_HIDE_POSTGAME_GOSSIPERS"
}, },
{ {
"type": "object",
"graphics_id": "0", "graphics_id": "0",
"x": 3, "x": 3,
"y": 1, "y": 1,
@@ -87,14 +92,14 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND", "dest_map": "MAP_FIVE_ISLAND",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 1, "x": 1,
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_FIVE_ISLAND_POKEMON_CENTER_2F", "dest_map": "MAP_FIVE_ISLAND_POKEMON_CENTER_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 10, "x": 10,
"y": 2, "y": 2,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN", "graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -74,21 +78,21 @@
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_FIVE_ISLAND_POKEMON_CENTER_1F", "dest_map": "MAP_FIVE_ISLAND_POKEMON_CENTER_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 5, "x": 5,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_UNION_ROOM", "dest_map": "MAP_UNION_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_TRADE_CENTER", "dest_map": "MAP_TRADE_CENTER",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+10 -2
View File
@@ -22,6 +22,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 44, "x": 44,
"y": 10, "y": 10,
@@ -35,6 +36,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 33, "x": 33,
"y": 12, "y": 12,
@@ -48,6 +50,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 12, "x": 12,
"y": 10, "y": 10,
@@ -61,6 +64,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 23, "x": 23,
"y": 9, "y": 9,
@@ -74,6 +78,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 33, "x": 33,
"y": 8, "y": 8,
@@ -87,6 +92,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 33, "x": 33,
"y": 3, "y": 3,
@@ -100,6 +106,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SWIMMER_M_WATER", "graphics_id": "OBJ_EVENT_GFX_SWIMMER_M_WATER",
"x": 56, "x": 56,
"y": 7, "y": 7,
@@ -113,6 +120,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 39, "x": 39,
"y": 9, "y": 9,
@@ -132,14 +140,14 @@
"y": 13, "y": 13,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ENTRANCE", "dest_map": "MAP_FIVE_ISLAND_LOST_CAVE_ENTRANCE",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 39, "x": 39,
"y": 8, "y": 8,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FIVE_ISLAND_RESORT_GORGEOUS_HOUSE", "dest_map": "MAP_FIVE_ISLAND_RESORT_GORGEOUS_HOUSE",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 4, "x": 4,
"y": 4, "y": 4,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_RESORT_GORGEOUS_INSIDE_SELPHY" "flag": "FLAG_HIDE_RESORT_GORGEOUS_INSIDE_SELPHY"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -48,7 +50,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_RESORT_GORGEOUS", "dest_map": "MAP_FIVE_ISLAND_RESORT_GORGEOUS",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
+11 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 15, "x": 15,
"y": 11, "y": 11,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 17, "x": 17,
"y": 15, "y": 15,
@@ -42,6 +44,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_F", "graphics_id": "OBJ_EVENT_GFX_ROCKET_F",
"x": 27, "x": 27,
"y": 16, "y": 16,
@@ -55,6 +58,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 25, "x": 25,
"y": 11, "y": 11,
@@ -68,6 +72,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_F", "graphics_id": "OBJ_EVENT_GFX_ROCKET_F",
"x": 6, "x": 6,
"y": 6, "y": 6,
@@ -81,6 +86,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SCIENTIST", "graphics_id": "OBJ_EVENT_GFX_SCIENTIST",
"x": 27, "x": 27,
"y": 4, "y": 4,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 8, "x": 8,
"y": 25, "y": 25,
@@ -107,6 +114,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKET_WAREHOUSE_BIG_PEARL" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKET_WAREHOUSE_BIG_PEARL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 17, "x": 17,
"y": 3, "y": 3,
@@ -120,6 +128,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKET_WAREHOUSE_TM36" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKET_WAREHOUSE_TM36"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 1, "x": 1,
"y": 16, "y": 16,
@@ -133,6 +142,7 @@
"flag": "FLAG_HIDE_FIVE_ISLAND_ROCKET_WAREHOUSE_PEARL" "flag": "FLAG_HIDE_FIVE_ISLAND_ROCKET_WAREHOUSE_PEARL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 4, "x": 4,
"y": 5, "y": 5,
@@ -152,7 +162,7 @@
"y": 25, "y": 25,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FIVE_ISLAND_MEADOW", "dest_map": "MAP_FIVE_ISLAND_MEADOW",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [ "coord_events": [
@@ -27,6 +27,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 14, "x": 14,
"y": 11, "y": 11,
@@ -40,6 +41,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 9, "x": 9,
"y": 7, "y": 7,
+20 -8
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 16, "x": 16,
"y": 13, "y": 13,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_DODUO", "graphics_id": "OBJ_EVENT_GFX_DODUO",
"x": 12, "x": 12,
"y": 9, "y": 9,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NIDORAN_F", "graphics_id": "OBJ_EVENT_GFX_NIDORAN_F",
"x": 13, "x": 13,
"y": 7, "y": 7,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NIDORAN_M", "graphics_id": "OBJ_EVENT_GFX_NIDORAN_M",
"x": 14, "x": 14,
"y": 7, "y": 7,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_PSYDUCK", "graphics_id": "OBJ_EVENT_GFX_PSYDUCK",
"x": 17, "x": 17,
"y": 9, "y": 9,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN", "graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN",
"x": 26, "x": 26,
"y": 19, "y": 19,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK", "graphics_id": "OBJ_EVENT_GFX_ROCK_SMASH_ROCK",
"x": 5, "x": 5,
"y": 11, "y": 11,
@@ -107,6 +114,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 5, "x": 5,
"y": 6, "y": 6,
@@ -120,6 +128,7 @@
"flag": "FLAG_HIDE_FOUR_ISLAND_STAR_PIECE" "flag": "FLAG_HIDE_FOUR_ISLAND_STAR_PIECE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 32, "x": 32,
"y": 19, "y": 19,
@@ -133,6 +142,7 @@
"flag": "FLAG_HIDE_FOUR_ISLAND_STARDUST" "flag": "FLAG_HIDE_FOUR_ISLAND_STARDUST"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BLUE", "graphics_id": "OBJ_EVENT_GFX_BLUE",
"x": 8, "x": 8,
"y": 25, "y": 25,
@@ -146,6 +156,7 @@
"flag": "FLAG_HIDE_FOUR_ISLAND_RIVAL" "flag": "FLAG_HIDE_FOUR_ISLAND_RIVAL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 36, "x": 36,
"y": 13, "y": 13,
@@ -159,6 +170,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL", "graphics_id": "OBJ_EVENT_GFX_LITTLE_GIRL",
"x": 31, "x": 31,
"y": 21, "y": 21,
@@ -178,56 +190,56 @@
"y": 20, "y": 20,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_POKEMON_CENTER_1F", "dest_map": "MAP_FOUR_ISLAND_POKEMON_CENTER_1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 12, "x": 12,
"y": 13, "y": 13,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_POKEMON_DAY_CARE", "dest_map": "MAP_FOUR_ISLAND_POKEMON_DAY_CARE",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 25, "x": 25,
"y": 14, "y": 14,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_HOUSE1", "dest_map": "MAP_FOUR_ISLAND_HOUSE1",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 38, "x": 38,
"y": 12, "y": 12,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_ENTRANCE", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_ENTRANCE",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 33, "x": 33,
"y": 23, "y": 23,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_LORELEIS_HOUSE", "dest_map": "MAP_FOUR_ISLAND_LORELEIS_HOUSE",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 25, "x": 25,
"y": 26, "y": 26,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_HOUSE2", "dest_map": "MAP_FOUR_ISLAND_HOUSE2",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 10, "x": 10,
"y": 28, "y": 28,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_HARBOR", "dest_map": "MAP_FOUR_ISLAND_HARBOR",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 22, "x": 22,
"y": 26, "y": 26,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_MART", "dest_map": "MAP_FOUR_ISLAND_MART",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+3 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SEAGALLOP", "graphics_id": "OBJ_EVENT_GFX_SEAGALLOP",
"x": 8, "x": 8,
"y": 9, "y": 9,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SAILOR", "graphics_id": "OBJ_EVENT_GFX_SAILOR",
"x": 8, "x": 8,
"y": 6, "y": 6,
@@ -48,7 +50,7 @@
"y": 2, "y": 2,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 6 "dest_warp_id": "6"
} }
], ],
"coord_events": [], "coord_events": [],
+3 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 8, "x": 8,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 9, "x": 9,
"y": 3, "y": 3,
@@ -48,7 +50,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 4, "x": 4,
"y": 4, "y": 4,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
+8 -6
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 11, "x": 11,
"y": 7, "y": 7,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_FOUR_ISLAND_ICEFALL_CAVE_1F_ULTRA_BALL" "flag": "FLAG_HIDE_FOUR_ISLAND_ICEFALL_CAVE_1F_ULTRA_BALL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 12, "x": 12,
"y": 16, "y": 16,
@@ -48,42 +50,42 @@
"y": 17, "y": 17,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_ENTRANCE", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_ENTRANCE",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 2, "x": 2,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_ENTRANCE", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_ENTRANCE",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 12, "x": 12,
"y": 12, "y": 12,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_B1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_B1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 12, "x": 12,
"y": 3, "y": 3,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_B1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_B1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 15, "x": 15,
"y": 16, "y": 16,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_B1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_B1F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 3, "x": 3,
"y": 6, "y": 6,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_BACK", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_BACK",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 10, "x": 10,
"y": 14, "y": 14,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_FOUR_ISLAND_ICEFALL_CAVE_B1F_FULL_RESTORE" "flag": "FLAG_HIDE_FOUR_ISLAND_ICEFALL_CAVE_B1F_FULL_RESTORE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ITEM_BALL", "graphics_id": "OBJ_EVENT_GFX_ITEM_BALL",
"x": 21, "x": 21,
"y": 7, "y": 7,
@@ -48,21 +50,21 @@
"y": 12, "y": 12,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 12, "x": 12,
"y": 3, "y": 3,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 15, "x": 15,
"y": 16, "y": 16,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 11, "x": 11,
"y": 14, "y": 14,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_ICEFALL_CAVE_ROCKETS" "flag": "FLAG_HIDE_ICEFALL_CAVE_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 13, "x": 13,
"y": 14, "y": 14,
@@ -42,6 +44,7 @@
"flag": "FLAG_HIDE_ICEFALL_CAVE_ROCKETS" "flag": "FLAG_HIDE_ICEFALL_CAVE_ROCKETS"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LORELEI", "graphics_id": "OBJ_EVENT_GFX_LORELEI",
"x": 12, "x": 12,
"y": 16, "y": 16,
@@ -55,6 +58,7 @@
"flag": "FLAG_HIDE_ICEFALL_CAVE_LORELEI" "flag": "FLAG_HIDE_ICEFALL_CAVE_LORELEI"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKET_M", "graphics_id": "OBJ_EVENT_GFX_ROCKET_M",
"x": 10, "x": 10,
"y": 15, "y": 15,
@@ -74,7 +78,7 @@
"y": 23, "y": 23,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [ "coord_events": [
@@ -21,21 +21,21 @@
"y": 30, "y": 30,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 10, "x": 10,
"y": 21, "y": 21,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F", "dest_map": "MAP_FOUR_ISLAND_ICEFALL_CAVE_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
+16 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LORELEI", "graphics_id": "OBJ_EVENT_GFX_LORELEI",
"x": 7, "x": 7,
"y": 4, "y": 4,
@@ -29,6 +30,7 @@
"flag": "FLAG_HIDE_LORELEI_IN_HER_HOUSE" "flag": "FLAG_HIDE_LORELEI_IN_HER_HOUSE"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WIGGLYTUFF", "graphics_id": "OBJ_EVENT_GFX_WIGGLYTUFF",
"x": 0, "x": 0,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SEEL", "graphics_id": "OBJ_EVENT_GFX_SEEL",
"x": 10, "x": 10,
"y": 3, "y": 3,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_PIKACHU", "graphics_id": "OBJ_EVENT_GFX_PIKACHU",
"x": 9, "x": 9,
"y": 3, "y": 3,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SLOWPOKE", "graphics_id": "OBJ_EVENT_GFX_SLOWPOKE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SLOWBRO", "graphics_id": "OBJ_EVENT_GFX_SLOWBRO",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_PSYDUCK", "graphics_id": "OBJ_EVENT_GFX_PSYDUCK",
"x": 6, "x": 6,
"y": 4, "y": 4,
@@ -107,6 +114,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MEOWTH", "graphics_id": "OBJ_EVENT_GFX_MEOWTH",
"x": 9, "x": 9,
"y": 4, "y": 4,
@@ -120,6 +128,7 @@
"flag": "FLAG_HIDE_LORELEI_HOUSE_MEOWTH_DOLL" "flag": "FLAG_HIDE_LORELEI_HOUSE_MEOWTH_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CHANSEY", "graphics_id": "OBJ_EVENT_GFX_CHANSEY",
"x": 10, "x": 10,
"y": 4, "y": 4,
@@ -133,6 +142,7 @@
"flag": "FLAG_HIDE_LORELEI_HOUSE_CHANSEY_DOLL" "flag": "FLAG_HIDE_LORELEI_HOUSE_CHANSEY_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_JIGGLYPUFF", "graphics_id": "OBJ_EVENT_GFX_JIGGLYPUFF",
"x": 0, "x": 0,
"y": 3, "y": 3,
@@ -146,6 +156,7 @@
"flag": "FLAG_HIDE_LORELEI_HOUSE_JIGGLYPUFF_DOLL" "flag": "FLAG_HIDE_LORELEI_HOUSE_JIGGLYPUFF_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NIDORAN_F", "graphics_id": "OBJ_EVENT_GFX_NIDORAN_F",
"x": 0, "x": 0,
"y": 5, "y": 5,
@@ -159,6 +170,7 @@
"flag": "FLAG_HIDE_LORELEIS_HOUSE_NIDORAN_F_DOLL" "flag": "FLAG_HIDE_LORELEIS_HOUSE_NIDORAN_F_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NIDORAN_M", "graphics_id": "OBJ_EVENT_GFX_NIDORAN_M",
"x": 1, "x": 1,
"y": 5, "y": 5,
@@ -172,6 +184,7 @@
"flag": "FLAG_HIDE_LORELEIS_HOUSE_NIDORAN_M_DOLL" "flag": "FLAG_HIDE_LORELEIS_HOUSE_NIDORAN_M_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_PIDGEOT", "graphics_id": "OBJ_EVENT_GFX_PIDGEOT",
"x": 9, "x": 9,
"y": 0, "y": 0,
@@ -185,6 +198,7 @@
"flag": "FLAG_HIDE_LORELEIS_HOUSE_PIDGEOT_DOLL" "flag": "FLAG_HIDE_LORELEIS_HOUSE_PIDGEOT_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FEAROW", "graphics_id": "OBJ_EVENT_GFX_FEAROW",
"x": 10, "x": 10,
"y": 0, "y": 0,
@@ -198,6 +212,7 @@
"flag": "FLAG_HIDE_LORELEIS_HOUSE_FEAROW_DOLL" "flag": "FLAG_HIDE_LORELEIS_HOUSE_FEAROW_DOLL"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LAPRAS_DOLL", "graphics_id": "OBJ_EVENT_GFX_LAPRAS_DOLL",
"x": 9, "x": 9,
"y": 6, "y": 6,
@@ -217,7 +232,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
+4 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 2, "x": 2,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 6, "x": 6,
"y": 5, "y": 5,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CAMPER", "graphics_id": "OBJ_EVENT_GFX_CAMPER",
"x": 8, "x": 8,
"y": 3, "y": 3,
@@ -61,7 +64,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 7 "dest_warp_id": "7"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NURSE", "graphics_id": "OBJ_EVENT_GFX_NURSE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 10, "x": 10,
"y": 6, "y": 6,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_3", "graphics_id": "OBJ_EVENT_GFX_WOMAN_3",
"x": 5, "x": 5,
"y": 5, "y": 5,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -74,14 +78,14 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 1, "x": 1,
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_FOUR_ISLAND_POKEMON_CENTER_2F", "dest_map": "MAP_FOUR_ISLAND_POKEMON_CENTER_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 6, "x": 6,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST", "graphics_id": "OBJ_EVENT_GFX_CABLE_CLUB_RECEPTIONIST",
"x": 10, "x": 10,
"y": 2, "y": 2,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN", "graphics_id": "OBJ_EVENT_GFX_MG_DELIVERYMAN",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -74,21 +78,21 @@
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_FOUR_ISLAND_POKEMON_CENTER_1F", "dest_map": "MAP_FOUR_ISLAND_POKEMON_CENTER_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 5, "x": 5,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_UNION_ROOM", "dest_map": "MAP_UNION_ROOM",
"dest_warp_id": 0 "dest_warp_id": "0"
}, },
{ {
"x": 9, "x": 9,
"y": 1, "y": 1,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_TRADE_CENTER", "dest_map": "MAP_TRADE_CENTER",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN", "graphics_id": "OBJ_EVENT_GFX_OLD_WOMAN",
"x": 2, "x": 2,
"y": 2, "y": 2,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FOUR_ISLAND", "dest_map": "MAP_FOUR_ISLAND",
"dest_warp_id": 1 "dest_warp_id": "1"
} }
], ],
"coord_events": [], "coord_events": [],
+27 -11
View File
@@ -32,6 +32,7 @@
], ],
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FAT_MAN", "graphics_id": "OBJ_EVENT_GFX_FAT_MAN",
"x": 37, "x": 37,
"y": 17, "y": 17,
@@ -45,6 +46,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_SLOWPOKE", "graphics_id": "OBJ_EVENT_GFX_SLOWPOKE",
"x": 36, "x": 36,
"y": 15, "y": 15,
@@ -58,6 +60,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_VOLTORB", "graphics_id": "OBJ_EVENT_GFX_VOLTORB",
"x": 33, "x": 33,
"y": 8, "y": 8,
@@ -71,6 +74,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 33, "x": 33,
"y": 11, "y": 11,
@@ -84,6 +88,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CHANSEY", "graphics_id": "OBJ_EVENT_GFX_CHANSEY",
"x": 39, "x": 39,
"y": 8, "y": 8,
@@ -97,6 +102,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY", "graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY",
"x": 14, "x": 14,
"y": 15, "y": 15,
@@ -110,6 +116,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LAPRAS", "graphics_id": "OBJ_EVENT_GFX_LAPRAS",
"x": 12, "x": 12,
"y": 20, "y": 20,
@@ -123,6 +130,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 36, "x": 36,
"y": 20, "y": 20,
@@ -136,6 +144,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_VAR_0", "graphics_id": "OBJ_EVENT_GFX_VAR_0",
"x": 8, "x": 8,
"y": 8, "y": 8,
@@ -149,6 +158,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_KANGASKHAN", "graphics_id": "OBJ_EVENT_GFX_KANGASKHAN",
"x": 16, "x": 16,
"y": 9, "y": 9,
@@ -162,6 +172,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 30, "x": 30,
"y": 10, "y": 10,
@@ -175,6 +186,7 @@
"flag": "FLAG_TEMP_12" "flag": "FLAG_TEMP_12"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 21, "x": 21,
"y": 13, "y": 13,
@@ -188,6 +200,7 @@
"flag": "FLAG_TEMP_13" "flag": "FLAG_TEMP_13"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 32, "x": 32,
"y": 16, "y": 16,
@@ -201,6 +214,7 @@
"flag": "FLAG_TEMP_14" "flag": "FLAG_TEMP_14"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CUT_TREE", "graphics_id": "OBJ_EVENT_GFX_CUT_TREE",
"x": 24, "x": 24,
"y": 22, "y": 22,
@@ -214,6 +228,7 @@
"flag": "FLAG_TEMP_15" "flag": "FLAG_TEMP_15"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BUG_CATCHER", "graphics_id": "OBJ_EVENT_GFX_BUG_CATCHER",
"x": 15, "x": 15,
"y": 11, "y": 11,
@@ -227,6 +242,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LASS", "graphics_id": "OBJ_EVENT_GFX_LASS",
"x": 40, "x": 40,
"y": 6, "y": 6,
@@ -246,77 +262,77 @@
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_SAFARI_ZONE_ENTRANCE", "dest_map": "MAP_FUCHSIA_CITY_SAFARI_ZONE_ENTRANCE",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 33, "x": 33,
"y": 31, "y": 31,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_WARDENS_HOUSE", "dest_map": "MAP_FUCHSIA_CITY_WARDENS_HOUSE",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 11, "x": 11,
"y": 15, "y": 15,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_MART", "dest_map": "MAP_FUCHSIA_CITY_MART",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 28, "x": 28,
"y": 16, "y": 16,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_SAFARI_ZONE_OFFICE", "dest_map": "MAP_FUCHSIA_CITY_SAFARI_ZONE_OFFICE",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 9, "x": 9,
"y": 32, "y": 32,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_GYM", "dest_map": "MAP_FUCHSIA_CITY_GYM",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 14, "x": 14,
"y": 31, "y": 31,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_HOUSE1", "dest_map": "MAP_FUCHSIA_CITY_HOUSE1",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 25, "x": 25,
"y": 31, "y": 31,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY_POKEMON_CENTER_1F", "dest_map": "MAP_FUCHSIA_CITY_POKEMON_CENTER_1F",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 38, "x": 38,
"y": 31, "y": 31,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_HOUSE2", "dest_map": "MAP_FUCHSIA_CITY_HOUSE2",
"dest_warp_id": 1 "dest_warp_id": "1"
}, },
{ {
"x": 39, "x": 39,
"y": 28, "y": 28,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY_HOUSE2", "dest_map": "MAP_FUCHSIA_CITY_HOUSE2",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 39, "x": 39,
"y": 29, "y": 29,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY_HOUSE2", "dest_map": "MAP_FUCHSIA_CITY_HOUSE2",
"dest_warp_id": 3 "dest_warp_id": "3"
}, },
{ {
"x": 19, "x": 19,
"y": 31, "y": 31,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY_HOUSE3", "dest_map": "MAP_FUCHSIA_CITY_HOUSE3",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],
+11 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 12, "x": 12,
"y": 16, "y": 16,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 2, "x": 2,
"y": 9, "y": 9,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 11, "x": 11,
"y": 11, "y": 11,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 13, "x": 13,
"y": 4, "y": 4,
@@ -68,6 +72,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 4, "x": 4,
"y": 6, "y": 6,
@@ -81,6 +86,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_ROCKER", "graphics_id": "OBJ_EVENT_GFX_ROCKER",
"x": 2, "x": 2,
"y": 16, "y": 16,
@@ -94,6 +100,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_KOGA", "graphics_id": "OBJ_EVENT_GFX_KOGA",
"x": 7, "x": 7,
"y": 13, "y": 13,
@@ -107,6 +114,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GYM_GUY", "graphics_id": "OBJ_EVENT_GFX_GYM_GUY",
"x": 11, "x": 11,
"y": 19, "y": 19,
@@ -126,21 +134,21 @@
"y": 21, "y": 21,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 7, "x": 7,
"y": 21, "y": 21,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
}, },
{ {
"x": 8, "x": 8,
"y": 21, "y": 21,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 4 "dest_warp_id": "4"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1", "graphics_id": "OBJ_EVENT_GFX_OLD_MAN_1",
"x": 7, "x": 7,
"y": 4, "y": 4,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_WOMAN_2", "graphics_id": "OBJ_EVENT_GFX_WOMAN_2",
"x": 1, "x": 1,
"y": 2, "y": 2,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY", "graphics_id": "OBJ_EVENT_GFX_LITTLE_BOY",
"x": 2, "x": 2,
"y": 5, "y": 5,
@@ -61,21 +64,21 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
}, },
{ {
"x": 5, "x": 5,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 5 "dest_warp_id": "5"
} }
], ],
"coord_events": [], "coord_events": [],
+5 -4
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_FISHER", "graphics_id": "OBJ_EVENT_GFX_FISHER",
"x": 6, "x": 6,
"y": 5, "y": 5,
@@ -35,28 +36,28 @@
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 3, "x": 3,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 4, "x": 4,
"y": 9, "y": 9,
"elevation": 0, "elevation": 0,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 7 "dest_warp_id": "7"
}, },
{ {
"x": 3, "x": 3,
"y": 1, "y": 1,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 8 "dest_warp_id": "8"
} }
], ],
"coord_events": [], "coord_events": [],
+2 -1
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_BALDING_MAN", "graphics_id": "OBJ_EVENT_GFX_BALDING_MAN",
"x": 4, "x": 4,
"y": 4, "y": 4,
@@ -35,7 +36,7 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 10 "dest_warp_id": "10"
} }
], ],
"coord_events": [], "coord_events": [],
+6 -3
View File
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_CLERK", "graphics_id": "OBJ_EVENT_GFX_CLERK",
"x": 2, "x": 2,
"y": 3, "y": 3,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_GENTLEMAN", "graphics_id": "OBJ_EVENT_GFX_GENTLEMAN",
"x": 6, "x": 6,
"y": 3, "y": 3,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F",
"x": 9, "x": 9,
"y": 5, "y": 5,
@@ -61,21 +64,21 @@
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 4, "x": 4,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
}, },
{ {
"x": 5, "x": 5,
"y": 7, "y": 7,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 2 "dest_warp_id": "2"
} }
], ],
"coord_events": [], "coord_events": [],
@@ -16,6 +16,7 @@
"connections": null, "connections": null,
"object_events": [ "object_events": [
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_NURSE", "graphics_id": "OBJ_EVENT_GFX_NURSE",
"x": 7, "x": 7,
"y": 2, "y": 2,
@@ -29,6 +30,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_MAN", "graphics_id": "OBJ_EVENT_GFX_MAN",
"x": 12, "x": 12,
"y": 5, "y": 5,
@@ -42,6 +44,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F", "graphics_id": "OBJ_EVENT_GFX_COOLTRAINER_F",
"x": 13, "x": 13,
"y": 3, "y": 3,
@@ -55,6 +58,7 @@
"flag": "0" "flag": "0"
}, },
{ {
"type": "object",
"graphics_id": "OBJ_EVENT_GFX_YOUNGSTER", "graphics_id": "OBJ_EVENT_GFX_YOUNGSTER",
"x": 4, "x": 4,
"y": 8, "y": 8,
@@ -74,28 +78,28 @@
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 7, "x": 7,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 8, "x": 8,
"y": 8, "y": 8,
"elevation": 3, "elevation": 3,
"dest_map": "MAP_FUCHSIA_CITY", "dest_map": "MAP_FUCHSIA_CITY",
"dest_warp_id": 6 "dest_warp_id": "6"
}, },
{ {
"x": 1, "x": 1,
"y": 6, "y": 6,
"elevation": 4, "elevation": 4,
"dest_map": "MAP_FUCHSIA_CITY_POKEMON_CENTER_2F", "dest_map": "MAP_FUCHSIA_CITY_POKEMON_CENTER_2F",
"dest_warp_id": 0 "dest_warp_id": "0"
} }
], ],
"coord_events": [], "coord_events": [],

Some files were not shown because too many files have changed in this diff Show More