2018-06-13 04:32:46 +00:00
|
|
|
/* Map
|
2018-06-12 04:44:34 +00:00
|
|
|
|
|
|
|
0 1 2 3
|
|
|
|
|
|
|
|
0 BEACH ARCTIC ARCTIC BELAIR
|
|
|
|
TREE MOUNTAIN
|
|
|
|
|
|
|
|
1 BEACH LANDING GRASS FOREST
|
|
|
|
PINETREE MOUNTAIN
|
|
|
|
|
|
|
|
2 BEACH GRASS GRASS FOREST
|
|
|
|
PALMTREE MOUNTAIN
|
|
|
|
|
|
|
|
3 BEACH DESERT COLLEGE BEACH
|
|
|
|
CACTUS PARK
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-06-24 05:26:19 +00:00
|
|
|
struct map_info_type map_info[34] = {
|
2018-06-21 03:50:17 +00:00
|
|
|
[NORTH_BEACH]={ // 0: NORTH_BEACH
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="North Beach",
|
2018-06-13 04:32:46 +00:00
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=PINE_BEACH,
|
|
|
|
.e_exit=ARCTIC_WOODS,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 16:48:41 +00:00
|
|
|
.miny=4,
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_WHITE|(COLOR_WHITE<<4)),
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_LEFT_BEACH|LAND_NORTHSHORE,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[ARCTIC_WOODS]={ // 1: ARCTIC_WOODS
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Arctic Woods",
|
2018-06-13 04:32:46 +00:00
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=LANDING_SITE,
|
|
|
|
.e_exit=ARCTIC_MOUNTAINS,
|
|
|
|
.w_exit=NORTH_BEACH,
|
2018-06-18 16:48:41 +00:00
|
|
|
.miny=4,
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_WHITE|(COLOR_WHITE<<4)),
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_GRASSLAND|LAND_NORTHSHORE,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_SNOWYPINE,
|
|
|
|
.scatter_x=10, .scatter_y=22, .scatter_cutoff=22,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[ARCTIC_MOUNTAINS]={ // 2: ARCTIC_MOUNTAINS
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Arctic Mountains",
|
2018-06-13 04:32:46 +00:00
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=NORTH_MOUNTAIN,
|
|
|
|
.e_exit=HARFORD_COUNTY,
|
|
|
|
.w_exit=ARCTIC_WOODS,
|
2018-06-18 16:48:41 +00:00
|
|
|
.miny=4,
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_WHITE|(COLOR_WHITE<<4)),
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_MOUNTAIN|LAND_NORTHSHORE,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[HARFORD_COUNTY]={ // 3: HARFORD_COUNTY
|
2018-06-13 04:32:46 +00:00
|
|
|
.name="Harford County",
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=NORTH_FOREST,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=ARCTIC_MOUNTAINS,
|
2018-06-18 16:48:41 +00:00
|
|
|
.miny=4,
|
2018-06-18 19:03:02 +00:00
|
|
|
.ground_color=(COLOR_LIGHTBLUE|(COLOR_LIGHTBLUE<<4)),
|
2018-06-18 16:48:41 +00:00
|
|
|
.land_type=LAND_LIGHTNING,
|
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=harfco_rle,
|
2018-06-21 03:50:17 +00:00
|
|
|
.num_locations=1,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Bel Air",
|
|
|
|
.x0 = 11, .x1 = 29,
|
|
|
|
.y0 = 16, .y1 = 26,
|
|
|
|
.destination = BEL_AIR,
|
|
|
|
},
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[PINE_BEACH]={ // 4: PINE_BEACH
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Pine Beach",
|
2018-06-13 04:32:46 +00:00
|
|
|
.n_exit=NORTH_BEACH,
|
|
|
|
.s_exit=PALM_BEACH,
|
|
|
|
.e_exit=LANDING_SITE,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 16:48:41 +00:00
|
|
|
.miny=4,
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_PINE,
|
|
|
|
.scatter_x=25, .scatter_y=16, .scatter_cutoff=15,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_LEFT_BEACH,
|
2018-06-22 19:22:05 +00:00
|
|
|
.entry_type=ENTRY_MINX, .entry_x=11, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[LANDING_SITE]={ // 5: LANDING_SITE
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Landing Site",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
|
|
|
.n_exit=ARCTIC_WOODS,
|
|
|
|
.s_exit=GRASSLAND,
|
|
|
|
.e_exit=NORTH_MOUNTAIN,
|
|
|
|
.w_exit=PINE_BEACH,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_GRASSLAND,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=landing_rle,
|
2018-06-24 05:01:44 +00:00
|
|
|
.num_locations=1,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Spaceship",
|
|
|
|
.x0 = 0, .x1 = 28,
|
|
|
|
.y0 = 0, .y1 = 29,
|
|
|
|
.type = LOCATION_SPACESHIP,
|
|
|
|
},
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[NORTH_MOUNTAIN]={ // 6: NORTH_MOUNTAIN
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="North Mountain",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=ARCTIC_MOUNTAINS,
|
|
|
|
.s_exit=MORIA,
|
|
|
|
.e_exit=NORTH_FOREST,
|
|
|
|
.w_exit=LANDING_SITE,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_MOUNTAIN,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[NORTH_FOREST]={ // 7: NORTH_FOREST
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="North Forest",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=HARFORD_COUNTY,
|
|
|
|
.s_exit=SOUTH_FOREST,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NORTH_MOUNTAIN,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_FOREST|LAND_RIGHT_BEACH,
|
2018-06-22 19:22:05 +00:00
|
|
|
.entry_type=ENTRY_MAXX, .entry_x=27, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[PALM_BEACH]={ // 8: PALM_BEACH
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Palm Beach",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=PINE_BEACH,
|
|
|
|
.s_exit=SOUTH_BEACH,
|
|
|
|
.e_exit=GRASSLAND,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_PALM,
|
|
|
|
.scatter_x=10, .scatter_y=20, .scatter_cutoff=22,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_LEFT_BEACH,
|
2018-06-22 19:22:05 +00:00
|
|
|
.entry_type=ENTRY_MINX, .entry_x=11, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[GRASSLAND]={ // 9: GRASSLAND
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Grassland",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=LANDING_SITE,
|
|
|
|
.s_exit=CACTUS_RANCH,
|
|
|
|
.e_exit=MORIA,
|
|
|
|
.w_exit=PALM_BEACH,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_GRASSLAND,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[MORIA]={ // 10: MORIA
|
2018-06-18 15:58:36 +00:00
|
|
|
.name="Khazad-dum",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=NORTH_MOUNTAIN,
|
|
|
|
.s_exit=COLLEGE_PARK,
|
|
|
|
.e_exit=SOUTH_FOREST,
|
|
|
|
.w_exit=GRASSLAND,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_MOUNTAIN,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-24 05:26:19 +00:00
|
|
|
.num_locations=1,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Mirror Lake",
|
|
|
|
.x0 = 14, .x1 = 18,
|
|
|
|
.y0 = 30, .y1 = 34,
|
|
|
|
.type = LOCATION_PLACE,
|
|
|
|
.destination=MIRROR_LAKE,
|
|
|
|
},
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[SOUTH_FOREST]={ // 11: SOUTH_FOREST
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="South Forest",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=NORTH_FOREST,
|
|
|
|
.s_exit=OCEAN_CITY,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=MORIA,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_FOREST|LAND_RIGHT_BEACH,
|
2018-06-22 19:22:05 +00:00
|
|
|
.entry_type=ENTRY_MAXX, .entry_x=27, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[SOUTH_BEACH]={ // 12: SOUTH_BEACH
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="South Beach",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=PALM_BEACH,
|
|
|
|
.s_exit=NOEXIT,
|
|
|
|
.e_exit=CACTUS_RANCH,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_PALM,
|
|
|
|
.scatter_x=20, .scatter_y=20, .scatter_cutoff=22,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_LEFT_BEACH|LAND_SOUTHSHORE,
|
2018-06-22 19:22:05 +00:00
|
|
|
.entry_type=ENTRY_MINX, .entry_x=11, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[CACTUS_RANCH]={ // 13: CACTUS_RANCH
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Cactus Ranch",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_ORANGE|(COLOR_ORANGE<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=GRASSLAND,
|
|
|
|
.s_exit=NOEXIT,
|
|
|
|
.e_exit=COLLEGE_PARK,
|
|
|
|
.w_exit=SOUTH_BEACH,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_CACTUS,
|
|
|
|
.scatter_x=25, .scatter_y=16, .scatter_cutoff=15,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_GRASSLAND|LAND_SOUTHSHORE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_NORMAL, .entry_x=0, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-13 04:32:46 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[COLLEGE_PARK]={ // 14: COLLEGE_PARK
|
2018-06-13 04:32:46 +00:00
|
|
|
.name="College Park",
|
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=MORIA,
|
|
|
|
.s_exit=NOEXIT,
|
|
|
|
.e_exit=OCEAN_CITY,
|
|
|
|
.w_exit=CACTUS_RANCH,
|
2018-06-19 04:08:50 +00:00
|
|
|
.miny=2,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_MAXY, .entry_x=0, .entry_y=6,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=collegep_rle,
|
2018-06-18 21:02:13 +00:00
|
|
|
.num_locations=2,
|
|
|
|
.location[0] = {
|
|
|
|
.name="University of M",
|
2018-06-20 19:16:33 +00:00
|
|
|
.x0 = 12, .x1 = 28,
|
2018-06-18 21:02:13 +00:00
|
|
|
.y0 = 0, .y1 = 20,
|
|
|
|
.destination = U_OF_MD,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Waterfall",
|
|
|
|
.x0 = 27, .x1 = 39,
|
|
|
|
.y0 = 18, .y1 = 33,
|
|
|
|
.destination = WATERFALL,
|
|
|
|
},
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[OCEAN_CITY]={ // 15: OCEAN_CITY
|
2018-06-12 04:44:34 +00:00
|
|
|
.name="Ocean City",
|
2018-06-13 04:32:46 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 15:58:36 +00:00
|
|
|
.n_exit=SOUTH_FOREST,
|
|
|
|
.s_exit=NOEXIT,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=COLLEGE_PARK,
|
2018-06-18 15:59:47 +00:00
|
|
|
.miny=4,
|
2018-06-18 16:48:41 +00:00
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-15 04:08:15 +00:00
|
|
|
.land_type=LAND_RIGHT_BEACH|LAND_SOUTHSHORE,
|
2018-06-22 19:22:05 +00:00
|
|
|
.entry_type=ENTRY_MAXX, .entry_x=27, .entry_y=0,
|
2018-06-15 04:08:15 +00:00
|
|
|
.background_image=NULL,
|
2018-06-12 04:44:34 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[U_OF_MD]={ // 16: U of MD
|
2018-06-18 21:02:13 +00:00
|
|
|
.name="University of M",
|
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
2018-06-22 19:22:05 +00:00
|
|
|
.s_exit=COLLEGE_PARK,
|
2018-06-18 21:02:13 +00:00
|
|
|
.e_exit=COLLEGE_PARK,
|
2018-06-22 19:22:05 +00:00
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 21:02:13 +00:00
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.land_type=LAND_BORING,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_R_OR_L, .entry_x=0, .entry_y=0,
|
2018-06-18 21:02:13 +00:00
|
|
|
.background_image=umcp_rle,
|
|
|
|
.num_locations=4,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Talbot Hall",
|
2018-06-19 04:08:50 +00:00
|
|
|
.x0 = 0, .x1 = 10,
|
|
|
|
.y0 = 18, .y1 = 31,
|
2018-06-18 21:02:13 +00:00
|
|
|
.destination = TALBOT_HALL,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_PLACE,
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Dining Hall",
|
2018-06-19 04:08:50 +00:00
|
|
|
.x0 = 13, .x1 = 26,
|
|
|
|
.y0 = 10, .y1 = 24,
|
2018-06-18 21:02:13 +00:00
|
|
|
.destination = DINING_HALL,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_PLACE,
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Metro Station",
|
2018-06-19 04:08:50 +00:00
|
|
|
.x0 = 30, .x1 = 39,
|
|
|
|
.y0 = 10, .y1 = 39,
|
2018-06-18 21:02:13 +00:00
|
|
|
.destination = METRO_STATION,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_PLACE,
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Fountain",
|
2018-06-19 04:08:50 +00:00
|
|
|
.x0 = 14, .x1 = 29,
|
2018-06-18 21:02:13 +00:00
|
|
|
.y0 = 28, .y1 = 39,
|
|
|
|
.destination = FOUNTAIN,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_PLACE,
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[WATERFALL]={ // 17: Waterfall
|
2018-06-18 21:02:13 +00:00
|
|
|
.name="Waterfall",
|
2018-06-20 20:11:09 +00:00
|
|
|
.ground_color=(COLOR_GREY|(COLOR_GREY<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=NOEXIT,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=COLLEGE_PARK,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.land_type=LAND_BORING,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_EXPLICIT, .entry_x=4, .entry_y=14,
|
2018-06-20 20:11:09 +00:00
|
|
|
.background_image=waterfall_rle,
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[TALBOT_HALL]={ // 18: Talbot Hall
|
2018-06-18 21:02:13 +00:00
|
|
|
.name="Talbot Hall",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
2018-06-22 18:16:50 +00:00
|
|
|
.s_exit=U_OF_MD,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 21:02:13 +00:00
|
|
|
.miny=4,
|
2018-06-20 19:35:05 +00:00
|
|
|
.scatter=SCATTER_SPOOL,
|
|
|
|
.scatter_x=16, .scatter_y=22, .scatter_cutoff=22,
|
2018-06-18 21:02:13 +00:00
|
|
|
.land_type=LAND_BORING,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-18 21:02:13 +00:00
|
|
|
.background_image=talbot_rle,
|
2018-06-20 03:54:34 +00:00
|
|
|
.num_locations=5,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Liz and Will",
|
|
|
|
.x0 = 8, .x1 = 12,
|
|
|
|
.y0 = 22, .y1 = 38,
|
2018-06-25 20:21:43 +00:00
|
|
|
.destination = DIALOG_LIZ_WILL,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Pete",
|
2018-07-14 04:21:21 +00:00
|
|
|
.x0 = 11, .x1 = 17,
|
2018-06-20 03:54:34 +00:00
|
|
|
.y0 = 15, .y1 = 21,
|
2018-06-25 20:21:43 +00:00
|
|
|
.destination = DIALOG_PETE,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Kenjesu",
|
|
|
|
.x0 = 21, .x1 = 26,
|
|
|
|
.y0 = 19, .y1 = 28,
|
2018-06-25 20:21:43 +00:00
|
|
|
.destination = DIALOG_KENJESU,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Mathemagician",
|
|
|
|
.x0 = 28, .x1 = 34,
|
2018-06-22 18:16:50 +00:00
|
|
|
.y0 = 20, .y1 = 28,
|
2018-06-25 20:21:43 +00:00
|
|
|
.destination = DIALOG_MATHEMAGICIAN,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[4] = {
|
|
|
|
.name="Darth Tater",
|
|
|
|
.x0 = 28, .x1 = 36,
|
2018-06-22 18:16:50 +00:00
|
|
|
.y0 = 30, .y1 = 38,
|
2018-06-25 20:21:43 +00:00
|
|
|
.destination = DIALOG_DARTH_TATER,
|
2018-06-20 03:54:34 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[DINING_HALL]={ // 19: Dining Hall
|
2018-06-18 21:02:13 +00:00
|
|
|
.name="Dining Hall",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
2018-06-22 18:16:50 +00:00
|
|
|
.s_exit=U_OF_MD,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 21:02:13 +00:00
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.land_type=LAND_BORING,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-18 21:02:13 +00:00
|
|
|
.background_image=dining_rle,
|
2018-06-20 19:16:33 +00:00
|
|
|
.num_locations=5,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Lunch Lady",
|
|
|
|
.x0 = 4, .x1 = 10,
|
|
|
|
.y0 = 22, .y1 = 35,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination = DIALOG_CAFETERIA_LADY,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Elaine",
|
|
|
|
.x0 = 12, .x1 = 18,
|
|
|
|
.y0 = 21, .y1 = 30,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination = DIALOG_ELAINE,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Oscar",
|
|
|
|
.x0 = 21, .x1 = 26,
|
|
|
|
.y0 = 29, .y1 = 36,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination = DIALOG_OSCAR,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Cindy",
|
|
|
|
.x0 = 27, .x1 = 31,
|
|
|
|
.y0 = 29, .y1 = 36,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination = DIALOG_CINDY,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[4] = {
|
|
|
|
.name="Nicole",
|
|
|
|
.x0 = 32, .x1 = 39,
|
|
|
|
.y0 = 28, .y1 = 38,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination = DIALOG_NICOLE,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[METRO_STATION]={ // 20: METRO_STATION
|
2018-06-18 21:02:13 +00:00
|
|
|
.name="Metro Station",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
2018-06-22 18:16:50 +00:00
|
|
|
.s_exit=U_OF_MD,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
2018-06-18 21:02:13 +00:00
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.land_type=LAND_BORING,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-18 21:02:13 +00:00
|
|
|
.background_image=metro_rle,
|
2018-06-20 19:16:33 +00:00
|
|
|
.num_locations=4,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Station Master",
|
2018-06-22 18:16:50 +00:00
|
|
|
.x0 = 10, .x1 = 16,
|
2018-06-20 19:16:33 +00:00
|
|
|
.y0 = 26, .y1 = 35,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_METRO_WORKER,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Large Bird",
|
2018-06-22 18:16:50 +00:00
|
|
|
.x0 = 26, .x1 = 33,
|
2018-07-16 17:41:04 +00:00
|
|
|
.y0 = 16, .y1 = 22,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_LARGE_BIRD,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Giant Guinea Pig",
|
|
|
|
.x0 = 28, .x1 = 33,
|
2018-07-16 17:41:04 +00:00
|
|
|
.y0 = 24, .y1 = 30,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_GIANT_GUINEA_PIG,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Tiny Capabara",
|
|
|
|
.x0 = 33, .x1 = 38,
|
|
|
|
.y0 = 30, .y1 = 38,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_TINY_CAPABARA,
|
2018-06-20 19:16:33 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[FOUNTAIN]={ // 21: FOUNTAIN
|
2018-06-18 21:02:13 +00:00
|
|
|
.name="Fountain",
|
2018-06-20 20:57:11 +00:00
|
|
|
.ground_color=(COLOR_LIGHTGREEN|(COLOR_LIGHTGREEN<<4)),
|
2018-06-18 21:02:13 +00:00
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=NOEXIT,
|
|
|
|
.e_exit=U_OF_MD,
|
|
|
|
.w_exit=U_OF_MD,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.land_type=LAND_BORING,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_EXPLICIT, .entry_x=4, .entry_y=14,
|
2018-06-20 20:57:11 +00:00
|
|
|
.background_image=fountain_rle,
|
|
|
|
.num_locations=1,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Mermaid",
|
|
|
|
.x0 = 8, .x1 = 20,
|
|
|
|
.y0 = 20, .y1 = 38,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_MERMAID,
|
2018-06-20 20:57:11 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-18 21:02:13 +00:00
|
|
|
},
|
2018-06-21 03:50:17 +00:00
|
|
|
[BEL_AIR]={ // 22: BEL_AIR
|
|
|
|
.name="Bel Air",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=HARFORD_COUNTY,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-21 03:50:17 +00:00
|
|
|
.background_image=belair_rle,
|
|
|
|
.num_locations=4,
|
|
|
|
.location[0] = {
|
|
|
|
.name="C. Milton HS",
|
|
|
|
.x0 = 0, .x1 = 9,
|
|
|
|
.y0 = 20, .y1 = 30,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_CMW,
|
2018-06-21 03:50:17 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="JC Highschool",
|
|
|
|
.x0 = 10, .x1 = 24,
|
|
|
|
.y0 = 16, .y1 = 24,
|
|
|
|
.destination = JOHN_CARROLL,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Harford Mall",
|
|
|
|
.x0 = 25, .x1 = 32,
|
2018-06-22 18:16:50 +00:00
|
|
|
.y0 = 22, .y1 = 28,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_MALL,
|
2018-06-21 03:50:17 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Minigolf",
|
2018-06-21 19:23:13 +00:00
|
|
|
.x0 = 32, .x1 = 39,
|
2018-06-21 03:50:17 +00:00
|
|
|
.y0 = 27, .y1 = 35,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_MINIGOLF,
|
2018-06-21 03:50:17 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
},
|
2018-06-21 19:23:13 +00:00
|
|
|
[JOHN_CARROLL]={ // 23: John Carroll
|
|
|
|
.name="JC School",
|
|
|
|
.ground_color=(COLOR_DARKGREEN|(COLOR_DARKGREEN<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=BEL_AIR,
|
2018-06-22 19:22:05 +00:00
|
|
|
.e_exit=BEL_AIR,
|
|
|
|
.w_exit=BEL_AIR,
|
2018-06-21 19:23:13 +00:00
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-21 19:23:13 +00:00
|
|
|
.background_image=jc_rle,
|
|
|
|
.num_locations=3,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Main Office",
|
|
|
|
.x0 = 12, .x1 = 15,
|
|
|
|
.y0 = 10, .y1 = 22,
|
|
|
|
.destination=JC_OFFICE,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Upstairs",
|
|
|
|
.x0 = 21, .x1 = 25,
|
|
|
|
.y0 = 10, .y1 = 22,
|
|
|
|
.destination=JC_UPSTAIRS,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Downstairs",
|
|
|
|
.x0 = 26, .x1 = 31,
|
|
|
|
.y0 = 10, .y1 = 24,
|
|
|
|
.destination=JC_DOWNSTAIRS,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
[JC_UPSTAIRS]={ // 24: JC_UPSTAIRS
|
|
|
|
.name="JC Upstairs",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JOHN_CARROLL,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=JOHN_CARROLL,
|
|
|
|
.miny=4,
|
2018-07-10 04:34:22 +00:00
|
|
|
.scatter=SCATTER_JEN_LIZ,
|
|
|
|
.scatter_x=8, .scatter_y=18, .scatter_cutoff=22,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-21 19:23:13 +00:00
|
|
|
.background_image=jc_hallway_rle,
|
2018-07-10 04:34:22 +00:00
|
|
|
.num_locations=5,
|
2018-06-21 19:23:13 +00:00
|
|
|
.location[0] = {
|
|
|
|
.name="Video Homeroom",
|
|
|
|
.x0 = 2, .x1 = 9,
|
|
|
|
.y0 = 10, .y1 = 18,
|
|
|
|
.destination=VIDEO_HOMEROOM,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Homeroom 12E",
|
|
|
|
.x0 = 18, .x1 = 24,
|
|
|
|
.y0 = 14, .y1 = 25,
|
|
|
|
.destination=HOMEROOM,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Deutsch Klasse",
|
|
|
|
.x0 = 27, .x1 = 34,
|
|
|
|
.y0 = 23, .y1 = 35,
|
|
|
|
.destination=DEUTSCH,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
2018-07-10 04:34:22 +00:00
|
|
|
.location[3] = {
|
|
|
|
.name="Blume",
|
|
|
|
.x0 = 4, .x1 = 10,
|
|
|
|
.y0 = 23, .y1 = 35,
|
|
|
|
.destination=DIALOG_BLUME,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[4] = {
|
|
|
|
.name="Lizbeth",
|
|
|
|
.x0 = 12, .x1 = 16,
|
|
|
|
.y0 = 23, .y1 = 35,
|
|
|
|
.destination=DIALOG_LIZBETH,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-21 19:23:13 +00:00
|
|
|
},
|
|
|
|
[JC_DOWNSTAIRS]={ // 25: JC_DOWNSTAIRS
|
|
|
|
.name="JC Downstairs",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JOHN_CARROLL,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=JOHN_CARROLL,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-21 19:23:13 +00:00
|
|
|
.background_image=jc_hallway_rle,
|
|
|
|
.num_locations=3,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Patriot Room",
|
|
|
|
.x0 = 2, .x1 = 9,
|
|
|
|
.y0 = 10, .y1 = 18,
|
|
|
|
.destination=PATRIOT_ROOM,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="AP Calculus",
|
|
|
|
.x0 = 18, .x1 = 24,
|
|
|
|
.y0 = 14, .y1 = 25,
|
|
|
|
.destination=AP_CALCULUS,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Math Office",
|
|
|
|
.x0 = 27, .x1 = 34,
|
|
|
|
.y0 = 23, .y1 = 35,
|
|
|
|
.destination=MATH_OFFICE,
|
|
|
|
.type=LOCATION_PLACE,
|
|
|
|
},
|
|
|
|
},
|
2018-06-25 00:35:07 +00:00
|
|
|
[JC_OFFICE]={ // 26: JC_OFFICE
|
|
|
|
.name="JC Downstairs",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JOHN_CARROLL,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
|
|
|
.background_image=jc_office_rle,
|
2018-07-17 04:16:09 +00:00
|
|
|
.num_locations=1,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Door Lock",
|
|
|
|
.x0 = 15, .x1 = 30,
|
2018-07-17 05:27:09 +00:00
|
|
|
.y0 = 28, .y1 = 38,
|
2018-07-17 04:16:09 +00:00
|
|
|
.type = LOCATION_PUZZLE,
|
|
|
|
},
|
|
|
|
|
2018-06-25 00:35:07 +00:00
|
|
|
},
|
2018-06-21 19:23:13 +00:00
|
|
|
[VIDEO_HOMEROOM]={ // 27: VIDEO_HOMEROOM
|
|
|
|
.name="Video Homeroom",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JC_UPSTAIRS,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-21 19:23:13 +00:00
|
|
|
.background_image=video_hr_rle,
|
2018-06-22 18:16:50 +00:00
|
|
|
.num_locations=4,
|
2018-06-21 19:23:13 +00:00
|
|
|
.location[0] = {
|
|
|
|
.name="Gus",
|
|
|
|
.x0 = 10, .x1 = 16,
|
|
|
|
.y0 = 22, .y1 = 30,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_GUS,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Raistlin",
|
|
|
|
.x0 = 17, .x1 = 22,
|
|
|
|
.y0 = 22, .y1 = 30,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_RAISTLIN,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Ford",
|
|
|
|
.x0 = 23, .x1 = 28,
|
|
|
|
.y0 = 22, .y1 = 30,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_FORD,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Sister Scarynun",
|
2018-06-22 18:16:50 +00:00
|
|
|
.x0 = 26, .x1 = 32,
|
|
|
|
.y0 = 30, .y1 = 39,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_SCARYNUN,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
},
|
2018-06-25 00:35:07 +00:00
|
|
|
[DEUTSCH]={ // 28: DEUTSCH
|
|
|
|
.name="Deutsch Klasse",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JC_UPSTAIRS,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
|
|
|
.background_image=deutsch_rle,
|
2018-07-04 03:57:43 +00:00
|
|
|
.num_locations=5,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Nire",
|
|
|
|
.x0 = 0, .x1 = 6,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_NIRE,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Agent S",
|
|
|
|
.x0 = 10, .x1 = 18,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_AGENT_S,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Agent G",
|
|
|
|
.x0 = 19, .x1 = 25,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_AGENT_G,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Agent AP",
|
|
|
|
.x0 = 26, .x1 = 31,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_AGENT_AP,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[4] = {
|
|
|
|
.name="Frau",
|
|
|
|
.x0 = 32, .x1 = 38,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_FRAU,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
|
2018-06-25 00:35:07 +00:00
|
|
|
},
|
|
|
|
[HOMEROOM]={ // 29: HOMEROOM
|
|
|
|
.name="Homeroom 12E",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JC_UPSTAIRS,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
|
|
|
.background_image=homeroom_rle,
|
2018-07-11 03:14:18 +00:00
|
|
|
.num_locations=4,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Mean Lady",
|
|
|
|
.x0 = 2, .x1 = 8,
|
|
|
|
.y0 = 30, .y1 = 38,
|
|
|
|
.destination=DIALOG_MEAN_LADY,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Trapani",
|
|
|
|
.x0 = 11, .x1 = 20,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_TRAPANI,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Warwick",
|
|
|
|
.x0 = 22, .x1 = 29,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_WARWICK,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Wargo",
|
|
|
|
.x0 = 30, .x1 = 35,
|
|
|
|
.y0 = 25, .y1 = 33,
|
|
|
|
.destination=DIALOG_WARGO,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-25 00:35:07 +00:00
|
|
|
},
|
|
|
|
[AP_CALCULUS]={ // 30: AP_CALCULUS
|
|
|
|
.name="AP Calculus",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JC_DOWNSTAIRS,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
|
|
|
.background_image=ap_calculus_rle,
|
2018-07-10 04:34:22 +00:00
|
|
|
.num_locations=4,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Appleby",
|
|
|
|
.x0 = 0, .x1 = 6,
|
|
|
|
.y0 = 30, .y1 = 36,
|
|
|
|
.destination=DIALOG_APPLEBY,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Padrino",
|
|
|
|
.x0 = 15, .x1 = 22,
|
|
|
|
.y0 = 30, .y1 = 36,
|
|
|
|
.destination=DIALOG_PADRINO,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Jenni",
|
|
|
|
.x0 = 31, .x1 = 37,
|
|
|
|
.y0 = 31, .y1 = 36,
|
|
|
|
.destination=DIALOG_JENNI,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Kathy",
|
|
|
|
.x0 = 24, .x1 = 29,
|
|
|
|
.y0 = 30, .y1 = 36,
|
|
|
|
.destination=DIALOG_KATHY,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-25 00:35:07 +00:00
|
|
|
},
|
2018-06-21 19:23:13 +00:00
|
|
|
[MATH_OFFICE]={ // 31: MATH_OFFICE
|
|
|
|
.name="Math Office",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JC_DOWNSTAIRS,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
2018-06-22 18:16:50 +00:00
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
2018-06-21 19:23:13 +00:00
|
|
|
.background_image=math_office_rle,
|
2018-06-22 18:16:50 +00:00
|
|
|
.num_locations=4,
|
2018-06-21 19:23:13 +00:00
|
|
|
.location[0] = {
|
|
|
|
.name="Rachael YRBK",
|
|
|
|
.x0 = 0, .x1 = 8,
|
|
|
|
.y0 = 21, .y1 = 34,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_RACHAEL,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Brighid",
|
|
|
|
.x0 = 10, .x1 = 15,
|
|
|
|
.y0 = 21, .y1 = 34,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_BRIGHID,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Captain Steve",
|
|
|
|
.x0 = 15, .x1 = 22,
|
|
|
|
.y0 = 21, .y1 = 34,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_CAPTAIN_STEVE,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Mree",
|
|
|
|
.x0 = 22, .x1 = 28,
|
|
|
|
.y0 = 21, .y1 = 34,
|
2018-07-03 20:12:39 +00:00
|
|
|
.destination=DIALOG_MREE,
|
2018-06-21 19:23:13 +00:00
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
},
|
2018-06-25 00:35:07 +00:00
|
|
|
[PATRIOT_ROOM]={ // 32: PATRIOT_ROOM
|
|
|
|
.name="Patriot Room",
|
|
|
|
.ground_color=(COLOR_BLACK|(COLOR_BLACK<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=JC_DOWNSTAIRS,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=NOEXIT,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.entry_type=ENTRY_CENTER, .entry_x=0, .entry_y=0,
|
|
|
|
.background_image=patriot_room_rle,
|
2018-07-08 16:58:49 +00:00
|
|
|
.num_locations=4,
|
|
|
|
.location[0] = {
|
|
|
|
.name="Macintosh",
|
|
|
|
.x0 = 2, .x1 = 7,
|
|
|
|
.y0 = 22, .y1 = 30,
|
|
|
|
.destination=DIALOG_MAC,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[1] = {
|
|
|
|
.name="Agent N",
|
|
|
|
.x0 = 8, .x1 = 14,
|
|
|
|
.y0 = 25, .y1 = 32,
|
|
|
|
.destination=DIALOG_AGENT_N,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[2] = {
|
|
|
|
.name="Captain Steve",
|
|
|
|
.x0 = 16, .x1 = 20,
|
|
|
|
.y0 = 25, .y1 = 32,
|
|
|
|
.destination=DIALOG_STEVE2,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
|
|
|
.location[3] = {
|
|
|
|
.name="Grabowski",
|
|
|
|
.x0 = 23, .x1 = 30,
|
|
|
|
.y0 = 24, .y1 = 33,
|
|
|
|
.destination=DIALOG_GRABOWSKI,
|
|
|
|
.type=LOCATION_CONVERSATION,
|
|
|
|
},
|
2018-06-25 00:35:07 +00:00
|
|
|
},
|
2018-06-24 05:26:19 +00:00
|
|
|
[MIRROR_LAKE]={ // 33: MIRROR_LAKE
|
|
|
|
.name="Mirror Lake",
|
|
|
|
.ground_color=(COLOR_GREY|(COLOR_GREY<<4)),
|
|
|
|
.n_exit=NOEXIT,
|
|
|
|
.s_exit=MORIA,
|
|
|
|
.e_exit=NOEXIT,
|
|
|
|
.w_exit=MORIA,
|
|
|
|
.miny=4,
|
|
|
|
.scatter=SCATTER_NONE,
|
|
|
|
.land_type=LAND_BORING,
|
|
|
|
.entry_type=ENTRY_EXPLICIT, .entry_x=4, .entry_y=24,
|
|
|
|
.background_image=mirror_lake_rle,
|
|
|
|
},
|
2018-06-12 04:44:34 +00:00
|
|
|
|
|
|
|
};
|
2018-06-13 04:32:46 +00:00
|
|
|
|