diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index f84b3d316d3c..ca8b9f1ef5de 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -147,6 +147,14 @@ #define PLAY_SYNTH (1<<5) #define PLAY_MISC (1<<6) +//toggles_hunting_grounds +#define PLAY_MERC (1<<0) +#define PLAY_TWE (1<<1) +#define PLAY_UPP (1<<2) +#define PLAY_CLF (1<<3) +#define PLAY_XENO_T2 (1<<4) +#define PLAY_XENO_T3 (1<<5) + //toggles_admin /// Splits admin tabs in Statpanel #define SPLIT_ADMIN_TABS (1<<0) @@ -167,6 +175,8 @@ #define TOGGLES_ERT_DEFAULT (PLAY_LEADER|PLAY_MEDIC|PLAY_ENGINEER|PLAY_HEAVY|PLAY_SMARTGUNNER|PLAY_SYNTH|PLAY_MISC) +#define TOGGLES_ERT_GROUNDS (PLAY_MERC|PLAY_TWE|PLAY_UPP|PLAY_CLF|PLAY_XENO_T2|PLAY_XENO_T3) + #define TOGGLES_ADMIN_DEFAULT (ADMIN_AFK_SAFE) // Game Intents diff --git a/code/__DEFINES/mode.dm b/code/__DEFINES/mode.dm index 64a889f23a96..4dbb6fd0c95a 100644 --- a/code/__DEFINES/mode.dm +++ b/code/__DEFINES/mode.dm @@ -291,13 +291,14 @@ DEFINE_BITFIELD(whitelist_status, list( #define FACTION_SOUTO "Souto Man" #define FACTION_COLONIST "Colonist" #define FACTION_YAUTJA "Yautja" +#define FACTION_HUNTED "Hunted" #define FACTION_ZOMBIE "Zombie" #define FACTION_MONKEY "Monkey" // Nanu #define FACTION_LIST_MARINE list(FACTION_MARINE) -#define FACTION_LIST_HUMANOID list(FACTION_MARINE, FACTION_PMC, FACTION_WY, FACTION_WY_DEATHSQUAD, FACTION_CLF, FACTION_CONTRACTOR, FACTION_MARSHAL, FACTION_UPP, FACTION_FREELANCER, FACTION_SURVIVOR, FACTION_NEUTRAL, FACTION_COLONIST, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_YAUTJA, FACTION_ZOMBIE, FACTION_TWE) +#define FACTION_LIST_HUMANOID list(FACTION_MARINE, FACTION_PMC, FACTION_WY, FACTION_WY_DEATHSQUAD, FACTION_CLF, FACTION_CONTRACTOR, FACTION_MARSHAL, FACTION_UPP, FACTION_FREELANCER, FACTION_SURVIVOR, FACTION_NEUTRAL, FACTION_COLONIST, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_YAUTJA, FACTION_ZOMBIE, FACTION_TWE, FACTION_HUNTED) #define FACTION_LIST_ERT_OTHER list(FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO) -#define FACTION_LIST_ERT_ALL list(FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY, FACTION_CLF, FACTION_CONTRACTOR, FACTION_UPP, FACTION_FREELANCER, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_MARSHAL, FACTION_TWE) +#define FACTION_LIST_ERT_ALL list(FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY, FACTION_CLF, FACTION_CONTRACTOR, FACTION_UPP, FACTION_FREELANCER, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_MARSHAL, FACTION_TWE, FACTION_HUNTED) #define FACTION_LIST_WY list(FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY) #define FACTION_LIST_UPP list(FACTION_UPP) #define FACTION_LIST_CLF list(FACTION_CLF) @@ -312,6 +313,7 @@ DEFINE_BITFIELD(whitelist_status, list( #define FACTION_LIST_MARINE_UPP list(FACTION_MARINE, FACTION_UPP) #define FACTION_LIST_MARINE_TWE list(FACTION_MARINE, FACTION_TWE) #define FACTION_LIST_YAUTJA list(FACTION_YAUTJA) +#define FACTION_LIST_HUNTED list(FACTION_HUNTED) // Xenomorphs #define FACTION_PREDALIEN "Predalien" diff --git a/code/controllers/subsystem/who.dm b/code/controllers/subsystem/who.dm index 6c817fb1245e..5f5510dc6489 100644 --- a/code/controllers/subsystem/who.dm +++ b/code/controllers/subsystem/who.dm @@ -46,6 +46,7 @@ SUBSYSTEM_DEF(who) "yautja" = 0, "infected_preds" = 0, "humans" = 0, + "hunted" = 0, "infected_humans" = 0, "uscm" = 0, "uscm_marines" = 0, @@ -134,6 +135,7 @@ SUBSYSTEM_DEF(who) factions_additional += list(list("content" = "Marines: [counted_additional["uscm_marines"]]", "color" = "#5442bd", "text" = "Players playing as Marines")) factions_additional += list(list("content" = "Yautjas: [counted_additional["yautja"]]", "color" = "#7ABA19", "text" = "Players playing as Yautja")) factions_additional += list(list("content" = "Infected Predators: [counted_additional["infected_preds"]]", "color" = "#7ABA19", "text" = "Players playing as Infected Yautja")) + factions_additional += list(list("content" = "Hunted In Preserve: [counted_additional["hunted"]]", "color" = "#476816", "text" = "Players playing as hunted in preserve")) for(var/i in 1 to length(counted_factions)) if(!counted_factions[counted_factions[i]]) diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 241a5b3ba6d6..dddacde34776 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -49,6 +49,21 @@ var/max_engineers = 1 var/max_heavies = 1 var/max_smartgunners = 1 + ///xeno roles + var/xeno_t3 = 0 + var/xeno_t2 = 0 + var/max_xeno_t3 = 1 + var/max_xeno_t2 = 1 + ///Hunting Grounds + var/mercs = 0 + var/royal_marines= 0 + var/upp = 0 + var/clf = 0 + var/max_mercs = 1 + var/max_royal_marines= 1 + var/max_upp = 1 + var/max_clf = 1 + var/shuttle_id = MOBILE_SHUTTLE_ID_ERT1 //Empty shuttle ID means we're not using shuttles (aka spawn straight into cryo) var/auto_shuttle_launch = TRUE var/spawn_max_amount = FALSE diff --git a/code/datums/emergency_calls/pred_hunt/hunting_calls.dm b/code/datums/emergency_calls/pred_hunt/hunting_calls.dm new file mode 100644 index 000000000000..cf8a0fff8358 --- /dev/null +++ b/code/datums/emergency_calls/pred_hunt/hunting_calls.dm @@ -0,0 +1,154 @@ +//Predator Hunting Ground ERTs + + +/datum/emergency_call/pred + name = "template" + probability = 0 + name_of_spawn = /obj/effect/landmark/ert_spawns/distress/hunt_spawner + shuttle_id = "" + var/hunt_name + var/message = "You are still expected to uphold the RP of the standard as this character!" + +/datum/emergency_call/pred/mixed + name = "Hunting Grounds multi Faction Small" + hunt_name = "Multi Faction (small)" + mob_max = 4 + mob_min = 1 + max_clf = 1 + max_upp = 1 + max_royal_marines = 1 + +/datum/emergency_call/pred/create_member(datum/mind/man, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(spawn_loc)) + return //Didn't find a useable spawn point. + + var/mob/living/carbon/human/hunted = new(spawn_loc) + man.transfer_to(hunted, TRUE) + + if(mercs < max_mercs && HAS_FLAG(hunted.client.prefs.toggles_ert_pred, PLAY_MERC)) + mercs++ + var/list/hunted_types = list(/datum/equipment_preset/other/freelancer/leader/hunted, /datum/equipment_preset/other/freelancer/standard/hunted) + var/hunted_type = pick(hunted_types) + arm_equipment(hunted, hunted_type , TRUE, TRUE) + to_chat(hunted, SPAN_BOLD("No one is more professional than I. Unlike other mercenaries, your group was registered as a legitimate business that dealt in violence. Working for various high profile clients, information classified to the public circulated somewhat freely in your circle - stories you dismissed as anecdotal or hearsay. The last job you took proved particularly hazardous and truthful: as you were clearing local fauna around a dig site, a massive man-shaped shimmering thing lunged at you and knocked you out in one blow. Groggily opening your eyes, you try to make sense of your surroundings, and get up.")) + else if(upp < max_upp && HAS_FLAG(hunted.client.prefs.toggles_ert_pred, PLAY_UPP)) + upp++ + var/list/hunted_types = list(/datum/equipment_preset/upp/soldier/hunted, /datum/equipment_preset/upp/leader/hunted, /datum/equipment_preset/upp/machinegunner/hunted, /datum/equipment_preset/upp/sapper/hunted) + var/hunted_type = pick(hunted_types) + arm_equipment(hunted, hunted_type , TRUE, TRUE) + to_chat(hunted, SPAN_BOLD("Life was alright. Previously relocated from your noisier post on the frontier, you were now stationed just on the outer veil of Union territory. Combat patrols and sawdust rations turned into boring guard shifts and proper food, making your peacekeeping duty a much envied task. Then, your life came crumbling down. An unknown alien surprised you and the rest of your garrison, slaughtering effectively everyone. Just as you were about to escape, it caught you in a trap, and dragged you into the darkness. Now awake in a completely different place, still sore from the confrontation, you wonder what you'd have to do to get back home safe and sound.")) + else if(royal_marines < max_royal_marines && HAS_FLAG(hunted.client.prefs.toggles_ert_pred, PLAY_TWE)) + royal_marines++ + var/list/hunted_types = list(/datum/equipment_preset/twe/royal_marine/standard/hunted, /datum/equipment_preset/twe/royal_marine/team_leader/hunted, /datum/equipment_preset/twe/royal_marine/lieuteant/hunted) + var/hunted_type = pick(hunted_types) + arm_equipment(hunted, hunted_type , TRUE, TRUE) + to_chat(hunted, SPAN_BOLD("You were starting to get sick and tired of these Australians. Posted and wrangled around Oceania, you had spent the last half decade from refugee camp to metropolis, making sure order was maintained most of the time and partaking in a riot action now and then. You were ready to give about anything for your job to be more interesting, and like a monkey's paw, the wish came true. One night, your barracks got blown up before your very eyes while on guard duty, and to your dismay, it was not a terrorist. You attempted to gun the monster down, but failed, your friends torn apart before your very eyes. Being the last one alive, the thing takes you with it, shackles you, and throws you into a cell. You black out again, and wake up here, wherever you are. At least you hope things will be more interesting now, or so you tell yourself.")) + else if(clf < max_clf && HAS_FLAG(hunted.client.prefs.toggles_ert_pred, PLAY_CLF)) + clf++ + var/list/hunted_types = list(/datum/equipment_preset/clf/soldier/hunted, /datum/equipment_preset/clf/leader/hunted, /datum/equipment_preset/clf/engineer/hunted) + var/hunted_type = pick(hunted_types) + arm_equipment(hunted, hunted_type , TRUE, TRUE) + to_chat(hunted, SPAN_BOLD("Your whole life was a struggle. Fighting tooth and nail for the independence of your colony from one master to the next, with not much change, your home ended up crushed under the boot of the oppressor. Filled with rage, you traveled with your cell of freedom fighters from one system to the next, wreaking havoc and mayhem, which eventually makes you notorious for your brutal executions of government officials and military. While on a raid gone wrong, your comrades get slaughtered by a marine squad, and as you scamper to get away, something else catches you off guard. KO'd and taken away, you wake up in conditions not much different from your previous ones, determined to get revenge against your oppressor once more.")) + else + var/list/hunted_types = list(/datum/equipment_preset/uscm/rifleman_pve/hunted, /datum/equipment_preset/uscm/tl_pve/hunted, /datum/equipment_preset/uscm/sg_pve/hunted,) + var/hunted_type = pick(hunted_types) + arm_equipment(hunted, hunted_type , TRUE, TRUE) + to_chat(hunted, SPAN_BOLD("You dreamt of becoming the ultimate badass ever since you were a kid. Nukes, knives, sharp sticks - and the corps was for you, enlisting into the marines as soon as you could join. There were little regrets from you, happily gunning down anything, anytime, and anywhere you were told to go... until now. During a jungle patrol, your entire squad was torn to shreds by a single cloaker - something you previously figured was made up just to scare chickenshit privates. Riddling the freak with bullet holes, it finally catches you off guard, and after that it's all hazy. Waking up, you realize you're still alive... and that it left you with your weapon. Big mistake. You get up.")) + + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), hunted.client, 'sound/misc/hunt_begin.ogg'), 10 SECONDS) + show_blurb(hunted, 15, message, null, "center", "center", COLOR_RED, null, null, 1) + +/datum/emergency_call/pred/mixed/medium + name = "Hunting Grounds multi Faction Medium" + hunt_name = "Multi Faction (group)" + mob_max = 6 + mob_min = 4 + max_clf = 2 + max_upp = 2 + max_royal_marines = 1 + max_mercs = 1 + + +/datum/emergency_call/pred/mixed/hard + name = "Hunting Grounds multi Faction Large" + hunt_name = "Multi Faction (large)" + mob_max = 8 + mob_min = 6 + max_clf = 2 + max_upp = 2 + max_royal_marines = 1 + max_mercs = 1 + +/datum/emergency_call/pred/mixed/harder + name = "Hunting Grounds multi Faction Larger" + hunt_name = "Multi Faction (larger)" + mob_max = 12 + mob_min = 6 + max_clf = 3 + max_upp = 2 + max_royal_marines = 2 + max_mercs = 2 + +/datum/emergency_call/pred/xeno + name = "Hunting Grounds Xenos Small" + hunt_name = "serpents (small)" + name_of_spawn = /obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno + mob_max = 4 + mob_min = 1 + hostility = TRUE + max_xeno_t3 = 1 + max_xeno_t2 = 1 + +/datum/emergency_call/pred/xeno/create_member(datum/mind/player, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + var/mob/current_mob = player.current + var/mob/living/carbon/xenomorph/new_xeno + + if(!istype(spawn_loc)) + return // Didn't find a usable spawn point. + + if(xeno_t3 < max_xeno_t3 && HAS_FLAG(current_mob.client.prefs.toggles_ert_pred, PLAY_XENO_T3)) + xeno_t3++ + var/list/xeno_types = list(/mob/living/carbon/xenomorph/praetorian, /mob/living/carbon/xenomorph/ravager) + var/xeno_type = pick(xeno_types) + new_xeno = new xeno_type(spawn_loc, null, XENO_HIVE_FERAL) + player.transfer_to(new_xeno, TRUE) + QDEL_NULL(current_mob) + to_chat(new_xeno, SPAN_BOLD("You are a xeno")) + else if(xeno_t2 < max_xeno_t2 && HAS_FLAG(current_mob.client.prefs.toggles_ert_pred, PLAY_XENO_T2)) + xeno_t2++ + var/list/xeno_types = list(/mob/living/carbon/xenomorph/lurker, /mob/living/carbon/xenomorph/warrior) + var/xeno_type = pick(xeno_types) + new_xeno = new xeno_type(spawn_loc, null, XENO_HIVE_FERAL) + player.transfer_to(new_xeno, TRUE) + QDEL_NULL(current_mob) + to_chat(new_xeno, SPAN_BOLD("You are a xeno let loose on a strang ")) + else + var/list/xeno_types = list(/mob/living/carbon/xenomorph/drone) + var/xeno_type = pick(xeno_types) + new_xeno = new xeno_type(spawn_loc, null, XENO_HIVE_FERAL) + player.transfer_to(new_xeno, TRUE) + to_chat(new_xeno, SPAN_BOLD("You are a xeno")) + + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), new_xeno.client, 'sound/misc/hunt_begin.ogg'), 10 SECONDS) + show_blurb(new_xeno, 15, message, null, "center", "center", COLOR_RED, null, null, 1) + +/datum/emergency_call/pred/xeno/med + name = "Hunting Grounds Xenos Medium" + hunt_name = "serpents (group)" + mob_max = 6 + mob_min = 3 + hostility = TRUE + max_xeno_t3 = 3 + max_xeno_t2 = 1 + +/datum/emergency_call/pred/xeno/hard + name = "Hunting Grounds Xenos Large" + hunt_name = "serpents (large)" + mob_max = 8 + mob_min = 4 + hostility = TRUE + max_xeno_t3 = 3 + max_xeno_t2 = 3 diff --git a/code/datums/lazy_template.dm b/code/datums/lazy_template.dm index 03715cbd80b8..9d85d9cf56dc 100644 --- a/code/datums/lazy_template.dm +++ b/code/datums/lazy_template.dm @@ -91,6 +91,13 @@ for(var/thing in (turf.get_all_contents() - turf)) loaded_atom_movables |= thing + for(var/turf/initializing_turf as anything in loaded_turfs) + var/area/turf_area = initializing_turf.loc // not using get_area as these are turfs, and the loc is guaranteed to be an area + if(!turf_area.static_lighting) + continue + + new/datum/static_lighting_object(initializing_turf) + SSatoms.InitializeAtoms(loaded_areas + loaded_atom_movables + loaded_turfs) SEND_SIGNAL(src, COMSIG_LAZY_TEMPLATE_LOADED, loaded_atom_movables, loaded_turfs, loaded_areas) diff --git a/code/datums/soundOutput.dm b/code/datums/soundOutput.dm index cc7334d2cb98..b17c6d3c66fb 100644 --- a/code/datums/soundOutput.dm +++ b/code/datums/soundOutput.dm @@ -141,6 +141,8 @@ /// Pulls mob's area's sound_environment and applies if necessary and not overridden. /datum/soundOutput/proc/update_area_environment() var/area/owner_area = get_area(owner.mob) + if(!owner_area) + return var/new_environment = owner_area.sound_environment if(owner.mob.sound_environment_override != SOUND_ENVIRONMENT_NONE) //override in effect, can't apply diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index 5e72483f420f..78ab82712409 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -2306,9 +2306,6 @@ /turf/open/floor/corsat/squareswood/north dir = NORTH -/turf/open/floor/corsat/tan - icon_state = "tan" - /turf/open/floor/corsat/tan/north dir = NORTH @@ -3571,3 +3568,22 @@ /turf/open/floor/yellowfull icon_state = "yellowfull" + +/turf/open/floor/corsat/squareswood/pred + icon_state = "squareswood" + +/turf/open/floor/corsat/squareswood/pred/north + dir = NORTH + +/turf/open/floor/strata/gray_multi_tiles/pred + color = "#5e5d5d" + icon_state = "multi_tiles" + +/turf/open/floor/strata/gray_multi_tiles/south/pred + dir = SOUTH + +/turf/open/floor/cult/pred + icon_state = "cult" + +/turf/open/gm/grass/grass2/pred + icon_state = "grass2" diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index 680348e4d995..285abf799d62 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -449,6 +449,18 @@ baseturfs = /turf/open/gm/dirt minimap_color = MINIMAP_DIRT +/turf/open/gm/dirt/beach + icon_state = "beach" + +/turf/open/gm/dirt/beach/northeast + dir = NORTHEAST + +/turf/open/gm/dirt/beach/southeast + dir = SOUTHEAST + +/turf/open/gm/dirt/beach/northwest + dir = NORTHWEST + /turf/open/gm/dirt/Initialize(mapload, ...) . = ..() if(rand(0,15) == 0) @@ -536,9 +548,10 @@ scorchable = "grass1" /turf/open/gm/dirtgrassborder/north + dir = NORTH /turf/open/gm/dirtgrassborder/south - dir = 1 + dir = 2 /turf/open/gm/dirtgrassborder/west dir = 4 @@ -832,6 +845,9 @@ /turf/open/gm/coast/beachcorner2 icon_state = "beachcorner2" +/turf/open/gm/coast/beachcorner2/east + dir = EAST + /turf/open/gm/coast/beachcorner2/north_west /turf/open/gm/coast/beachcorner2/north_east diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm index 8f18d1a3840a..ce27647df18e 100644 --- a/code/game/turfs/walls/wall_types.dm +++ b/code/game/turfs/walls/wall_types.dm @@ -479,6 +479,10 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) . = ..() icon_state = "[type]vault" +/turf/closed/wall/cult/hunting_grounds + name = "wall" + hull = TRUE + //Hangar walls /turf/closed/wall/hangar diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 7a21df21f343..1dcc3f6cddf5 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -68,6 +68,7 @@ GLOBAL_LIST_INIT(bgstate_options, list( var/toggles_sound = TOGGLES_SOUND_DEFAULT var/toggles_flashing = TOGGLES_FLASHING_DEFAULT var/toggles_ert = TOGGLES_ERT_DEFAULT + var/toggles_ert_pred = TOGGLES_ERT_GROUNDS var/chat_display_preferences = CHAT_TYPE_ALL var/item_animation_pref_level = SHOW_ITEM_ANIMATIONS_ALL var/pain_overlay_pref_level = PAIN_OVERLAY_BLURRY @@ -657,6 +658,16 @@ GLOBAL_LIST_INIT(bgstate_options, list( dat += "Spawn as Synth: [toggles_ert & PLAY_SYNTH ? "Yes" : "No"]
" dat += "Spawn as Miscellaneous: [toggles_ert & PLAY_MISC ? "Yes" : "No"]
" dat += "" + dat += "
" + dat += "

Hunting Ground ERT Settings:

" + dat += "Spawn as Mercenary: [toggles_ert_pred & PLAY_MERC ? "Yes" : "No"]
" + dat += "Spawn as Royal Marine: [toggles_ert_pred & PLAY_TWE ? "Yes" : "No"]
" + dat += "Spawn as UPP: [toggles_ert_pred & PLAY_UPP ? "Yes" : "No"]
" + dat += "Spawn as CLF: [toggles_ert_pred & PLAY_CLF ? "Yes" : "No"]
" + dat += "Spawn as Xeno T2: [toggles_ert_pred & PLAY_XENO_T2 ? "Yes" : "No"]
" + dat += "Spawn as Xeno T3: [toggles_ert_pred & PLAY_XENO_T3 ? "Yes" : "No"]
" + dat += "
" + dat += "" dat += "" @@ -1789,6 +1800,10 @@ GLOBAL_LIST_INIT(bgstate_options, list( var/flag = text2num(href_list["flag"]) toggles_ert ^= flag + if("toggles_ert_pred") + var/flag = text2num(href_list["flag"]) + toggles_ert_pred ^= flag + if("ambientocclusion") toggle_prefs ^= TOGGLE_AMBIENT_OCCLUSION var/atom/movable/screen/plane_master/game_world/plane_master = locate() in user?.client.screen diff --git a/code/modules/cm_preds/hunting_grounds.dm b/code/modules/cm_preds/hunting_grounds.dm new file mode 100644 index 000000000000..7b2817abef78 --- /dev/null +++ b/code/modules/cm_preds/hunting_grounds.dm @@ -0,0 +1,10 @@ +///Hunting Grounds Maps + +/datum/lazy_template/pred + map_dir = "maps/templates/lazy_templates/pred" + ///visible name of the hunting ground on the selection computer + var/hunting_ground_name + +/datum/lazy_template/pred/jungle_moon + map_name = "jungle_moon" + hunting_ground_name = "Jungle Moon" diff --git a/code/modules/cm_preds/yaut_items.dm b/code/modules/cm_preds/yaut_items.dm index 06600ca55645..0f65f59954eb 100644 --- a/code/modules/cm_preds/yaut_items.dm +++ b/code/modules/cm_preds/yaut_items.dm @@ -306,7 +306,7 @@ //======================================\\ /* - GEAR + GEAR */ //======================================\\ @@ -474,11 +474,117 @@ message_all_yautja("[usr.real_name] has created a new teleport location, [name], at [usr.loc] in [get_area(usr)]") return TRUE + +///HUNTING GROUNDS STUFF!!!!/// + +//Allow Yautja to generate a new hunting ground separate from the main ground Z level +/obj/structure/machinery/hunting_ground_selection + name = "hunter flight console" + desc = "A console designed by the Hunters to assist in flight pathing and navigation." + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "overwatch" + density = TRUE + ///List of where they can choose to go to + var/static/list/potential_hunting_grounds = list() + ///If one has already been spawned, dont let more be spawned + var/static/hunting_ground_activated = FALSE + +/obj/structure/machinery/hunting_ground_selection/Initialize(mapload, ...) + . = ..() + if(!length(potential_hunting_grounds)) + generate_hunting_grounds_list() + +/obj/structure/machinery/hunting_ground_selection/proc/generate_hunting_grounds_list() + for(var/datum/lazy_template/pred/hunting_ground as anything in subtypesof(/datum/lazy_template/pred)) + if(!hunting_ground::hunting_ground_name) //if theres no name, assume its abstract + continue + potential_hunting_grounds[hunting_ground::hunting_ground_name] = hunting_ground + +/obj/structure/machinery/hunting_ground_selection/attack_hand(mob/living/user) + . = ..() + if(!isyautja(user)) + to_chat(user, SPAN_WARNING("You do not understand how to use this console.")) + return + + if(hunting_ground_activated) + to_chat(user, SPAN_WARNING("A hunting ground has already been chosen.")) + return + + if(!length(potential_hunting_grounds)) + to_chat(user, SPAN_WARNING("There are no available hunting grounds to select.")) + return + + var/choice = tgui_input_list(user, "Which hunting grounds do you choose.", "[src]", potential_hunting_grounds) + if(!choice) + to_chat(user, SPAN_WARNING("You have not chosen any hunting grounds.")) + return + + if(hunting_ground_activated) //check again after the choice just in case + to_chat(user, SPAN_WARNING("A hunting ground has already been chosen.")) + return + + to_chat(user, SPAN_NOTICE("you choose [choice] as the hunting ground.")) + message_all_yautja("[user.real_name] Has chosen [choice] as the new hunting ground") + message_admins(FONT_SIZE_LARGE("ALERT: [user.real_name] ([user.key]) spawned [choice] (hunting grounds)")) + if(SSmapping.lazy_load_template(potential_hunting_grounds[choice])) + hunting_ground_activated = TRUE + + +/obj/structure/machinery/hunt_ground_spawner + name = "huntsmasters console" + desc = "A console for creating hunts." + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "overwatch" + density = TRUE + ///List of what ERTs can be called + var/static/list/potential_prey = list() + var/obj/structure/machinery/hunting_ground_selection/hunt + COOLDOWN_DECLARE(yautja_hunt_cooldown) + +/obj/structure/machinery/hunt_ground_spawner/Initialize(mapload, ...) + . = ..() + if(!length(potential_prey)) + generate_hunt_list() + +/obj/structure/machinery/hunt_ground_spawner/proc/generate_hunt_list() + for(var/datum/emergency_call/pred/hunting_type as anything in subtypesof(/datum/emergency_call/pred)) + if(!hunting_type::hunt_name) + continue + potential_prey[hunting_type::hunt_name] = hunting_type + +/obj/structure/machinery/hunt_ground_spawner/attack_hand(mob/living/user) + . = ..() + if(!isyautja(user)) + to_chat(user, SPAN_WARNING("You do not understand how to use this console.")) + return + + if(!COOLDOWN_FINISHED(src, yautja_hunt_cooldown)) + to_chat(user, DisplayTimeText(COOLDOWN_TIMELEFT(src, yautja_hunt_cooldown))) + return + + if(!length(potential_prey)) + to_chat(user, SPAN_WARNING("There are no available hunts to select.")) + return + + var/choice = tgui_input_list(user, "What will you hunt today?", "[src]", potential_prey) + if(!choice) + to_chat(user, SPAN_WARNING("You have not chosen any prey to hunt.")) + return + + to_chat(user, SPAN_NOTICE("You choose [choice] as your prey.")) + message_all_yautja("[user.real_name] has chosen [choice] as their prey.") + message_admins(FONT_SIZE_LARGE("ALERT: [user.real_name] ([user.key]) triggered [choice] inside the hunting grounds")) + SSticker.mode.get_specific_call(potential_prey[choice], TRUE, FALSE) + COOLDOWN_START(src, yautja_hunt_cooldown, 20 MINUTES) + +//=================//\\=================\\ +//======================================\\ + //=================//\\=================\\ //======================================\\ /* - OTHER THINGS + OTHER THINGS */ //======================================\\ diff --git a/code/modules/cm_preds/yaut_procs.dm b/code/modules/cm_preds/yaut_procs.dm index 3fceba19bb6d..25be9572307a 100644 --- a/code/modules/cm_preds/yaut_procs.dm +++ b/code/modules/cm_preds/yaut_procs.dm @@ -227,3 +227,65 @@ requires_power = FALSE base_lighting_alpha = 255 flags_area = AREA_YAUTJA_GROUNDS + +///Predator Hunting Grounds stuff + +/obj/effect/landmark/ert_spawns/distress/hunt_spawner + name = "hunt spawner" + +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno + name = "hunt spawner xeno" + +/area/yautja_grounds + name = "\improper Yautja Hunting Grounds" + icon_state = "green" + ambience_exterior = AMBIENCE_JUNGLE + weather_enabled = FALSE + flags_area = AREA_NOTUNNEL|AREA_AVOID_BIOSCAN|AREA_YAUTJA_GROUNDS + +/area/yautja_grounds/jungle + name = "\improper Yautja Hunting Grounds Jungle Central" + icon_state = "red" + ambience_exterior = AMBIENCE_JUNGLE + +/area/yautja_grounds/jungle/north + name = "\improper Yautja Hunting Grounds Jungle north" + icon_state = "blue" + ambience_exterior = AMBIENCE_JUNGLE + +/area/yautja_grounds/jungle/east + name = "\improper Yautja Hunting Grounds Jungle east" + icon_state = "yellow" + ambience_exterior = AMBIENCE_JUNGLE + +/area/yautja_grounds/south + name = "\improper Yautja Hunting Grounds Jungle south" + icon_state = "orange" + ambience_exterior = AMBIENCE_JUNGLE + +/area/yautja_grounds/jungle/west + name = "\improper Yautja Hunting Grounds Jungle west" + icon_state = "purple" + ambience_exterior = AMBIENCE_JUNGLE + +/area/yautja_grounds/caves + name = "\improper Yautja Hunting Grounds Caves" + icon_state = "cave" + ambience_exterior = AMBIENCE_CAVE + +/area/yautja_grounds/temple + name = "\improper Yautja Hunting Grounds Temple" + icon_state = "bluenew" + ambience_exterior = AMBIENCE_CAVE + +/area/yautja_grounds/temple/entrance + name = "\improper Yautja Hunting Grounds Temple" + icon_state = "bluenew" + ambience_exterior = AMBIENCE_JUNGLE + +///TP Areas + +/area/yautja_grounds/prep_room + name = "\improper Jungle Moon" + icon_state = "red" + ambience_exterior = AMBIENCE_CAVE diff --git a/code/modules/gear_presets/clf.dm b/code/modules/gear_presets/clf.dm index e8d1e0cb746a..ffc96398d00c 100644 --- a/code/modules/gear_presets/clf.dm +++ b/code/modules/gear_presets/clf.dm @@ -1098,3 +1098,86 @@ list("Shoulder Holster", 10, /obj/item/clothing/accessory/storage/holster, null, VENDOR_ITEM_REGULAR), list("Webbing", 10, /obj/item/clothing/accessory/storage/webbing, null, VENDOR_ITEM_REGULAR) ) + +///Hunting Grounds CLF/// + +/datum/equipment_preset/clf/soldier/hunted + name = "CLF Soldier (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/clf/soldier/hunted/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/colonist/clf/jumpsuit = new() + var/obj/item/clothing/accessory/storage/webbing/W = new() + jumpsuit.attach_accessory(new_human, W) + new_human.equip_to_slot_or_del(jumpsuit, WEAR_BODY) + spawn_rebel_suit(new_human) + spawn_rebel_helmet(new_human) + spawn_rebel_shoes(new_human) + spawn_rebel_gloves(new_human) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun/full/random(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) + if(prob(50)) + spawn_rebel_smg(new_human) + else + spawn_rebel_rifle(new_human) + +/datum/equipment_preset/clf/leader/hunted + name = "CLF Leader (Hunted)" + faction = FACTION_HUNTED + + +/datum/equipment_preset/clf/leader/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/clf(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/sec/hos(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/sensor/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/sensor(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/ied_incendiary(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/ied_incendiary(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_R_STORE) + + spawn_weapon(/obj/item/weapon/gun/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, new_human) + +/datum/equipment_preset/clf/engineer/hunted + name = "CLF Engineer (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/clf/engineer/hunted/load_gear(mob/living/carbon/human/new_human) + + var/obj/item/clothing/under/colonist/clf/terrorist = new() + var/obj/item/clothing/accessory/storage/webbing/wearer = new() + terrorist.attach_accessory(new_human, wearer) + new_human.equip_to_slot_or_del(terrorist, WEAR_BODY) + + spawn_rebel_suit(new_human) + spawn_rebel_shoes(new_human) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/meson, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/welding, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/ert, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/incendiary/molotov, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert, WEAR_R_STORE) + + spawn_rebel_weapon(new_human) + spawn_rebel_weapon(new_human,1) diff --git a/code/modules/gear_presets/other.dm b/code/modules/gear_presets/other.dm index fc2ebe3d0e63..e0c83e5c1255 100644 --- a/code/modules/gear_presets/other.dm +++ b/code/modules/gear_presets/other.dm @@ -230,6 +230,55 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_R_STORE) + + spawn_weapon(/obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, new_human, 0, 9) + spawn_merc_weapon(new_human,1,2) + +///Hunting Grounds Freelancers/// + +/datum/equipment_preset/other/freelancer/standard/hunted + name = "Freelancer (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/other/freelancer/standard/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/freelancer, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) + spawn_merc_helmet(new_human) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/attachments(new_human), WEAR_IN_BACK) + + load_freelancer_soldier(new_human) + + var/percentage = rand(1, 100) + switch(percentage) + if(1 to 66) + load_freelancer_rifleman(new_human) + else + load_freelancer_machinegunner(new_human) + +/datum/equipment_preset/other/freelancer/leader/hunted + name = "Freelancer Leader (Hunted)" + faction = FACTION_HUNTED + + +/datum/equipment_preset/other/freelancer/leader/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/freelancer, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/freelancer/beret, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/attachments(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/stick, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert, WEAR_L_STORE) spawn_weapon(/obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, new_human, 0, 9) diff --git a/code/modules/gear_presets/royal_marines.dm b/code/modules/gear_presets/royal_marines.dm index b648e0fb31b8..a62fa5b935eb 100644 --- a/code/modules/gear_presets/royal_marines.dm +++ b/code/modules/gear_presets/royal_marines.dm @@ -351,3 +351,120 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate, WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) +///Hunting Grounds Royal Marines/// + +/datum/equipment_preset/twe/royal_marine/standard/hunted + name = "TWE Royal Marine Commando (Hunted)" + faction = FACTION_HUNTED + + +/datum/equipment_preset/twe/royal_marine/standard/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/royal_marine, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine, WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/rmc_f90, WEAR_J_STORE) + + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/rmc/rmc_f90_ammo, WEAR_WAIST) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/rmc/light, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/rmc/incin, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/rmc/he, WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) + +/datum/equipment_preset/twe/royal_marine/team_leader/hunted + name = "TWE Royal Marine Commando TL (Hunted)" + faction = FACTION_HUNTED + + +/datum/equipment_preset/twe/royal_marine/team_leader/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/tl, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/royal_marine, WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/team_leader, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/rmc_f90/a_grip, WEAR_J_STORE) + + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/l905/full, WEAR_WAIST) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/rmc/light, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/rmc/incin, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/rmc/he, WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) + +/datum/equipment_preset/twe/royal_marine/lieuteant/hunted + name = "TWE Royal Marine Commando Officer (Hunted)" + faction = FACTION_HUNTED + + +/datum/equipment_preset/twe/royal_marine/lieuteant/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/royal_marine/team_leader, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/royal_marine/lt, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/royal_marine, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/royal_marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/royal_marines, WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/royal_marine, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/royal_marine, WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/team_leader, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/rmc_f90, WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/rmc_f90/a_grip, WEAR_J_STORE) + + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/l905/full, WEAR_WAIST) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/rmc/light, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/rmc/incin, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/rmc/he, WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) diff --git a/code/modules/gear_presets/upp.dm b/code/modules/gear_presets/upp.dm index 3cf6023be40b..7dd6800815d9 100644 --- a/code/modules/gear_presets/upp.dm +++ b/code/modules/gear_presets/upp.dm @@ -4411,3 +4411,152 @@ list("Drop Pouch", 10, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR) ) +///Hunting Grounds UPP/// + +/datum/equipment_preset/upp/soldier/hunted + name = "UPP Soldier (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/upp/soldier/hunted/load_gear(mob/living/carbon/human/new_human) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/UPP, WEAR_HEAD) + //body + var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() + new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) + + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green, WEAR_FACE) + + load_upp_soldier(new_human, UPP) + +/datum/equipment_preset/upp/soldier/hunted/load_upp_soldier(mob/living/carbon/human/new_human, obj/item/clothing/under/marine/veteran/UPP/UPP) + var/percentage = rand(1, 100) + switch(percentage) + if(1 to 66) + load_upp_rifleman(new_human, UPP) + if(67 to 85) + load_upp_breacher(new_human, UPP) + else + load_upp_double(new_human, UPP) + + +/datum/equipment_preset/upp/machinegunner/hunted + name = "UPP Machinegunner (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/upp/machinegunner/hunted/load_gear(mob/living/carbon/human/new_human) + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, WEAR_HEAD) + //body + var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() + new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, WEAR_JACKET) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert, WEAR_L_STORE) + + //body + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pkp, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pkp, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pkp, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pkp, WEAR_IN_JACKET) + //waist + var/uppvetsidearm = prob(50) ? /obj/item/storage/belt/gun/type47/t73 : /obj/item/storage/belt/gun/type47/np92 + new_human.equip_to_slot_or_del(new uppvetsidearm, WEAR_WAIST) + +/datum/equipment_preset/upp/leader/hunted + name = "UPP Squad Leader (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/upp/leader/hunted/load_gear(mob/living/carbon/human/new_human) + var/UPPleadsidearm = rand(1,4) + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/phosphorus/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/phosphorus/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/phosphorus/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_BACK) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret, WEAR_HEAD) + //body + var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() + var/obj/item/clothing/accessory/storage/webbing/W = new() + UPP.attach_accessory(new_human, W) + new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/type71/flamer, WEAR_J_STORE) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73, WEAR_WAIST) + switch(UPPleadsidearm) + if(1 to 2) // 50% + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73, WEAR_WAIST) + if(3) //25% + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92, WEAR_WAIST) + if(4) //25% + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/revolver, WEAR_WAIST) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flamertank, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert, WEAR_L_STORE) + +/datum/equipment_preset/upp/sapper/hunted + name = "UPP Sapper (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/upp/sapper/load_gear(mob/living/carbon/human/new_human) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/upp, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/upp/light, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas, WEAR_FACE) + //head + var/headgear = prob(70) ? /obj/item/clothing/head/helmet/marine/veteran/UPP/engi : /obj/item/clothing/head/uppcap/ushanka + new_human.equip_to_slot_or_del(new headgear, WEAR_HEAD) + //body + var/obj/item/clothing/under/marine/veteran/UPP/engi/UPP = new() + var/obj/item/clothing/accessory/storage/tool_webbing/equipped/W = new() + UPP.attach_accessory(new_human, W) + new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/type71/sapper, WEAR_J_STORE) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp/sapper(new_human), WEAR_WAIST) + //limb + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/insulated(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_L_STORE) diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm index 093ff4c28da5..de18e8c38c12 100644 --- a/code/modules/gear_presets/uscm.dm +++ b/code/modules/gear_presets/uscm.dm @@ -1271,3 +1271,102 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) spawn_marine_fluff_items(new_human) + +///Hunting Grounds Marines + +/datum/equipment_preset/uscm/rifleman_pve/hunted + name = "USCM Rifleman (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/uscm/rifleman_pve/hunted/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_MAX + +/datum/equipment_preset/uscm/rifleman_pve/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/intel/chestrig(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/toolkit/full(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/high_explosive(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/incendiary(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + spawn_marine_fluff_items(new_human) + +/datum/equipment_preset/uscm/tl_pve/hunted + name = "USCM Team Leader (Hunted)" + faction = FACTION_HUNTED + + +/datum/equipment_preset/uscm/tl_pve/hunted/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm/tl_pve/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/leader(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + spawn_marine_fluff_items(new_human) + +/datum/equipment_preset/uscm/sg_pve/hunted + name = "USCM Smartgunner (Hunted)" + faction = FACTION_HUNTED + +/datum/equipment_preset/uscm/sg_pve/hunted/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/smartgunner(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_R_STORE) + spawn_marine_fluff_items(new_human) diff --git a/code/modules/mob/dead/observer/orbit.dm b/code/modules/mob/dead/observer/orbit.dm index 28b043d5f796..a3eb3f8d39ec 100644 --- a/code/modules/mob/dead/observer/orbit.dm +++ b/code/modules/mob/dead/observer/orbit.dm @@ -64,6 +64,7 @@ var/list/marshal = list() var/list/synthetics = list() var/list/predators = list() + var/list/hunted = list() var/list/animals = list() var/list/dead = list() var/list/ghosts = list() @@ -159,6 +160,8 @@ predators += list(serialized) else if(human.faction in FACTION_LIST_ERT_OTHER) ert_members += list(serialized) + else if(human.faction in FACTION_LIST_HUNTED) + hunted += list(serialized) else if(human.faction in FACTION_LIST_UPP) upp += list(serialized) else if(human.faction in FACTION_LIST_CLF) @@ -201,6 +204,7 @@ data["marshal"] = marshal data["synthetics"] = synthetics data["predators"] = predators + data["hunted"] = hunted data["animals"] = animals data["dead"] = dead data["ghosts"] = ghosts diff --git a/colonialmarines.dme b/colonialmarines.dme index d939d511499e..a70814ee4b4b 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -555,6 +555,7 @@ #include "code\datums\emergency_calls\xeno_cultists.dm" #include "code\datums\emergency_calls\xenos.dm" #include "code\datums\emergency_calls\zombie.dm" +#include "code\datums\emergency_calls\pred_hunt\hunting_calls.dm" #include "code\datums\entities\chemical_information.dm" #include "code\datums\entities\clans.dm" #include "code\datums\entities\discord_identifier.dm" @@ -1684,6 +1685,7 @@ #include "code\modules\cm_preds\_yaut_defines.dm" #include "code\modules\cm_preds\falcon.dm" #include "code\modules\cm_preds\huntdata.dm" +#include "code\modules\cm_preds\hunting_grounds.dm" #include "code\modules\cm_preds\smartdisc.dm" #include "code\modules\cm_preds\thrall_items.dm" #include "code\modules\cm_preds\thrall_procs.dm" diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index dfce3d726bb3..4e8e3df901bc 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -92,10 +92,6 @@ "aaH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/north_central_caves) -"aaJ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/caves/north_central_caves) "aaK" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/north_central_caves) @@ -1391,6 +1387,10 @@ /obj/item/tool/shovel, /turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) +"ahY" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_central_jungle) "aie" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/redyellowfull, @@ -1959,6 +1959,15 @@ /obj/structure/grille, /turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) +"alm" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "alo" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_east, @@ -2075,7 +2084,7 @@ "alZ" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/river/central_river) "ama" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -2136,14 +2145,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"amD" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_east_jungle) -"amE" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_east_jungle) "amG" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -2567,15 +2568,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/lazarus/quartstorage/outdoors) -"aqG" = ( -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/lazarus/quartstorage/outdoors) -"aqH" = ( -/obj/effect/landmark/crap_item, -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/lazarus/quartstorage/outdoors) "aqI" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -2603,9 +2595,6 @@ "aqR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/west_jungle) -"aqS" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_jungle) "aqV" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -2908,10 +2897,6 @@ }, /turf/open/floor/white, /area/lv624/lazarus/research) -"asX" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_jungle) "asY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -3257,10 +3242,6 @@ /obj/structure/cargo_container/wy/right, /turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) -"auM" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/east_jungle) "auO" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper River Snack Bar"; @@ -3696,10 +3677,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"awL" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/south_central_jungle) "awM" = ( /obj/item/prop/alien/hugger, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -3732,10 +3709,6 @@ }, /turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) -"awQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/south_central_jungle) "awR" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/whitepurplecorner/east, @@ -4143,10 +4116,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"ayU" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/south_central_jungle) "ayV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/coast/beachcorner2/north_west, @@ -6283,11 +6252,6 @@ }, /turf/open/floor/carpet/bcarpet01, /area/lv624/ground/caves/north_central_caves) -"aIz" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_jungle) "aIA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -8346,6 +8310,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"aTA" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "aTB" = ( /obj/structure/machinery/light/small, /turf/open/floor/wood, @@ -8518,9 +8486,6 @@ }, /turf/open/floor/delivery, /area/lv624/lazarus/comms) -"aUl" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/colony/north_tcomms_road) "aUo" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/table/reinforced/prison, @@ -8700,11 +8665,6 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/engineering) -"aVk" = ( -/obj/structure/sign/safety/maint, -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/south_nexus_road) "aVl" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -8841,13 +8801,6 @@ "aVS" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"aVT" = ( -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/south_west_jungle) "aVU" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass1, @@ -9281,14 +9234,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aXH" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8 - }, -/obj/effect/decal/remains/xeno, -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/colony/west_tcomms_road) "aXJ" = ( /obj/structure/foamed_metal{ layer = 3.1 @@ -10033,6 +9978,15 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"bqu" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "brh" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_1, @@ -10132,10 +10086,6 @@ "bwk" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"bwq" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/gm/dirt, -/area/lv624/lazarus/landing_zones/lz2) "bwR" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -10146,10 +10096,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"bxH" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_central_jungle) "byl" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/river/east_river) +"byy" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "byK" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -10166,6 +10124,11 @@ "bzs" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle/ceiling) +"bzA" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "bzD" = ( /obj/structure/largecrate/random, /obj/item/storage/fancy/crayons{ @@ -10393,6 +10356,10 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) +"bVe" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/sand_temple) "bXd" = ( /obj/item/device/flashlight/on, /obj/effect/decal/cleanable/blood/drip, @@ -10407,10 +10374,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"bXU" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/caves/sand_temple) "bZb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -10453,10 +10416,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"cdB" = ( -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "cdF" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-centralcaves" @@ -10526,15 +10485,6 @@ /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/secure_storage) -"cib" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "cij" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -10593,6 +10543,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"coZ" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "cpQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) @@ -10678,10 +10632,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"cys" = ( -/obj/structure/foamed_metal, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/east_central_jungle) "czq" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/auto_turf/strata_grass/layer1, @@ -10807,10 +10757,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"cJY" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/caves/sand_temple) "cKj" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, @@ -10904,6 +10850,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"cVn" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "cWm" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -10935,11 +10885,24 @@ /obj/structure/barricade/wooden, /turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz2) +"day" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_central_jungle) "daz" = ( /obj/structure/prop/brazier/torch, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"daS" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "daY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -10948,6 +10911,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"dbd" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/caves/sand_temple) "dbA" = ( /obj/structure/xenoautopsy/tank, /turf/open/shuttle/bright_red, @@ -10956,6 +10923,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"dcy" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/east_jungle) "ddS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -11007,6 +10978,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"dkq" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz2) "dkN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, @@ -11020,6 +10995,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) +"dlq" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "dmf" = ( /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) @@ -11097,23 +11076,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"dtZ" = ( -/obj/structure/platform_decoration/stone/runed_sandstone, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "dvf" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"dvA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "dvF" = ( /obj/structure/flora/bush/ausbushes/pointybush, /obj/structure/flora/jungle/vines/heavy, @@ -11159,6 +11125,19 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"dAv" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dAS" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"dBR" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/caves/sand_temple) "dBS" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; @@ -11245,6 +11224,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/dark, /area/lv624/lazarus/comms) +"dHA" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "dId" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/whiteblue, @@ -11315,10 +11298,6 @@ "dLY" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"dMc" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_central_jungle) "dMF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -11370,15 +11349,6 @@ /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"dSb" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "dTm" = ( /turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -11386,6 +11356,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"dVB" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "dVH" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) @@ -11481,9 +11455,6 @@ /obj/structure/closet/coffin/predator, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"ecO" = ( -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/west_nexus_road) "edS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -11505,11 +11476,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"efJ" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "efX" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) @@ -11703,6 +11669,11 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) +"eAn" = ( +/obj/structure/sign/safety/maint, +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/colony/south_nexus_road) "eAr" = ( /obj/structure/showcase{ color = "#95948B"; @@ -11774,15 +11745,10 @@ "eGD" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"eHl" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +"eGQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "eHm" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, @@ -11797,10 +11763,6 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"eHw" = ( -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "eHQ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -11813,6 +11775,15 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) +"eLL" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "eMe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -11833,17 +11804,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"eOJ" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome SMES"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) "ePp" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -11866,14 +11826,14 @@ "eQL" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"eSb" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/gm/coast/north, -/area/lv624/ground/caves/sand_temple) "eSg" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) +"eTa" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "eTd" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -11892,6 +11852,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) +"eVV" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/north_tcomms_road) "eYb" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, @@ -11906,10 +11870,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"eYQ" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/caves/sand_temple) "eZg" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -11930,6 +11890,10 @@ "fau" = ( /turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) +"faY" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/north_jungle) "fbb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -11953,14 +11917,6 @@ "fdl" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) -"fdr" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform/metal/almayer, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) "fem" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -11978,6 +11934,16 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"fgO" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "fgS" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_eastern_barrens) @@ -11987,15 +11953,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"fhC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "fhJ" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -12056,6 +12013,15 @@ }, /turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) +"fmF" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "fmV" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -12079,10 +12045,6 @@ /obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/asteroidwarning/east, /area/lv624/ground/colony/telecomm/sw_lz2) -"fqS" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/sand_temple) "frV" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -12118,27 +12080,6 @@ "fuY" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"fvx" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) -"fxh" = ( -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/caves/sand_temple) -"fxZ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "fyA" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -12186,15 +12127,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"fDo" = ( -/obj/structure/platform/stone/runed_sandstone, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "fDq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -12304,10 +12236,9 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fLk" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) +"fLo" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/south_medbay_road) "fMa" = ( /obj/item/prop/alien/hugger, /turf/open/floor/dark, @@ -12330,16 +12261,17 @@ /obj/structure/barricade/wooden, /turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) +"fOS" = ( +/obj/effect/landmark/crap_item, +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/lazarus/quartstorage/outdoors) "fPi" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) "fPH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"fPJ" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "fQx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -12348,15 +12280,6 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"fQD" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "fQL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) @@ -12368,11 +12291,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fSA" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/lv624/ground/barrens/south_eastern_barrens) "fSX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) @@ -12404,6 +12322,11 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) +"fXy" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/coast/beachcorner2/south_east, +/area/lv624/ground/caves/sand_temple) "fXD" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/coast/east, @@ -12417,6 +12340,10 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"fZL" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "fZO" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) @@ -12424,6 +12351,10 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"gaP" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "gbl" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -12437,14 +12368,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"gch" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "gcn" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -12473,6 +12396,15 @@ }, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"gdk" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "gdr" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -12611,11 +12543,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"gtW" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "guQ" = ( /obj/effect/landmark/nightmare{ insert_tag = "cargospecial2" @@ -12653,6 +12580,11 @@ "gxd" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"gxN" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/east_jungle) "gyP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_west_jungle) @@ -12722,19 +12654,10 @@ }, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) -"gFk" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/gm/coast/beachcorner2/south_east, -/area/lv624/ground/caves/sand_temple) "gFm" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"gFO" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/gm/coast/beachcorner/north_east, -/area/lv624/ground/caves/sand_temple) "gGd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -12746,12 +12669,30 @@ "gKg" = ( /turf/open/floor/plating/warnplate/northeast, /area/lv624/lazarus/engineering) +"gLT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "gMe" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-rightsidepass" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"gNK" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "gPu" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -12764,23 +12705,10 @@ "gQr" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) -"gRh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "gRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"gRm" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/barrens/south_eastern_barrens) "gRx" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) @@ -12795,10 +12723,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"gTm" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/lv624/ground/caves/sand_temple) "gTu" = ( /obj/structure/filingcabinet{ density = 0; @@ -12822,6 +12746,9 @@ "gUq" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) +"gUx" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/east_central_jungle) "gVw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -12864,14 +12791,18 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor/warning/southeast, /area/lv624/lazarus/landing_zones/lz1) -"gYs" = ( -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/north_nexus_road) "gZh" = ( /obj/structure/prop/brazier, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) +"gZz" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) "han" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -12902,6 +12833,15 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"hbT" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hbU" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13049,11 +12989,6 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"hqS" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/caves/sand_temple) "hrD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ locked = 1; @@ -13118,6 +13053,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"hBg" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "hBt" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -13155,6 +13094,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_nexus_road) +"hFJ" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/west_central_jungle) "hFO" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -13206,9 +13149,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"hJW" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_jungle) "hKk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -13219,13 +13159,6 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"hLu" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_central_jungle) -"hLB" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "hMd" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/whiteyellowfull/east, @@ -13248,6 +13181,10 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"hMR" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "hNR" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, @@ -13355,15 +13292,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"hYx" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "hZg" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -13407,6 +13335,15 @@ }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) +"iaE" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "ibS" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -13583,16 +13520,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_nexus_road) -"iyd" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "iye" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -13627,15 +13554,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"iAv" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +"izZ" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/north, +/area/lv624/ground/caves/sand_temple) "iAA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -13667,6 +13589,14 @@ }, /turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) +"iFI" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) "iGf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -13694,9 +13624,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) -"iJs" = ( -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "iJA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -13704,6 +13631,10 @@ "iJJ" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"iJK" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/floor/plating/asteroidwarning/west, +/area/lv624/lazarus/landing_zones/lz2) "iKp" = ( /obj/structure/surface/rack, /turf/open/shuttle/bright_red, @@ -13726,10 +13657,6 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"iNF" = ( -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "iNJ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -13740,16 +13667,21 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) +"iOT" = ( +/obj/structure/platform/stone/runed_sandstone, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "iOX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"iPw" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/gm/grass/grass1, -/area/lv624/ground/caves/sand_temple) "iPB" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -13847,6 +13779,9 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"jbg" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/lazarus/quartstorage/outdoors) "jbB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -13897,6 +13832,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/south_nexus_road) +"jhb" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/south_west_jungle) "jhj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -13910,6 +13849,11 @@ }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) +"jia" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "jic" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -13966,6 +13910,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"jqB" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/north_west_jungle) "jrC" = ( /obj/structure/curtain/red, /turf/open/shuttle/red, @@ -13986,26 +13933,12 @@ /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) -"jvr" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "jvQ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jvV" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/stone/stair_cut/runed_sandstone_left, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "jxw" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -14062,6 +13995,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"jCL" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "jCO" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -14144,10 +14087,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) -"jKI" = ( -/obj/structure/platform/stone/runed_sandstone, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/caves/sand_temple) "jKX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -14168,10 +14107,6 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"jLR" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_central_jungle) "jLY" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 @@ -14204,6 +14139,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) +"jOs" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "jQj" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -14292,6 +14231,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"jST" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/east_jungle) "jTm" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -14320,6 +14263,10 @@ }, /turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) +"jZv" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/caves/sand_temple) "jZL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -14332,6 +14279,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"jZZ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/east_jungle) "kae" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -14365,10 +14316,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"kfq" = ( -/obj/structure/platform_decoration/stone/runed_sandstone, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "kft" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -14411,6 +14358,10 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"knB" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/caves/sand_temple) "koh" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirt, @@ -14434,6 +14385,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"krd" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/lv624/ground/caves/sand_temple) "krs" = ( /turf/open/gm/dirt/desert2, /area/lv624/ground/caves/south_west_caves) @@ -14448,10 +14403,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"ksM" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_central_jungle) "ksQ" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical{ @@ -14601,15 +14552,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) -"kBJ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "kCD" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -14631,6 +14573,10 @@ "kHB" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/central_barrens) +"kHL" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/caves/sand_temple) "kHU" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) @@ -14641,10 +14587,6 @@ "kJm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"kJq" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/barrens/south_eastern_barrens) "kJu" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -14667,6 +14609,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"kKW" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/west_central_jungle) "kLl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -14689,6 +14635,10 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"kNp" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "kPL" = ( /obj/structure/fence, /turf/open/floor/warning/east, @@ -14772,10 +14722,6 @@ /obj/structure/largecrate/random, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"kXE" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/south_central_jungle) "kYx" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -14818,15 +14764,6 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"lde" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "ldi" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -14909,14 +14846,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_east_jungle) -"loA" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform/metal/almayer, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) "loP" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -14938,6 +14867,13 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"lrl" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/north_tcomms_road) +"lrC" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_central_jungle) "lsq" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/plantbot1, @@ -14955,10 +14891,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) -"lxr" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/barrens/south_eastern_barrens) "lxX" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -15001,11 +14933,6 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"lAv" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/lv624/ground/caves/sand_temple) "lAX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -15034,6 +14961,15 @@ "lBw" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"lCm" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "lCG" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/robot/down, @@ -15070,10 +15006,6 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) -"lHG" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "lHL" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -15089,6 +15021,15 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/dark, /area/lv624/lazarus/quartstorage) +"lIs" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "lIL" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -15142,6 +15083,10 @@ "lKF" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/containers) +"lLe" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/grass/grass1, +/area/lv624/ground/caves/sand_temple) "lLi" = ( /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, @@ -15298,13 +15243,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"mbp" = ( -/obj/structure/flora/jungle/alienplant1{ - layer = 4.13; - pixel_y = 18 - }, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/caves/sand_temple) "mbu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -15346,15 +15284,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"mft" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "mfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -15383,11 +15312,6 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) -"mhc" = ( -/obj/structure/platform_decoration/metal/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "mhZ" = ( /turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) @@ -15460,10 +15384,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"mpc" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/plating/asteroidwarning, -/area/lv624/lazarus/landing_zones/lz2) "mph" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -15472,6 +15392,10 @@ }, /turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) +"mpW" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/gm/dirt, +/area/lv624/lazarus/landing_zones/lz2) "mqf" = ( /obj/item/tool/wrench, /turf/open/floor/plating, @@ -15529,13 +15453,13 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"mww" = ( +"mvM" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/obj/structure/platform_decoration/stone/runed_sandstone/east, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "mwB" = ( @@ -15588,10 +15512,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"mEw" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_jungle) "mFu" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -15623,15 +15543,6 @@ "mJB" = ( /turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/corporate_dome) -"mJC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) "mJF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -15716,11 +15627,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"mTK" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "mUH" = ( /turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) @@ -15781,6 +15687,15 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"naM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "naR" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, @@ -15816,6 +15731,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"neW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"nfi" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/gm/dirt, +/area/lv624/lazarus/landing_zones/lz2) "nfD" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -15864,6 +15793,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"nkJ" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/barrens/south_eastern_barrens) "nkU" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-bridge-east" @@ -15881,22 +15814,9 @@ "nnL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/east_barrens) -"noO" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "npf" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) -"npt" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "npQ" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/ppflowers, @@ -15919,6 +15839,10 @@ "nrm" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/west_barrens) +"nrG" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/north_nexus_road) "nrK" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -16050,6 +15974,19 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) +"nDY" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"nEb" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/south_central_jungle) "nEd" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/robotics) @@ -16080,6 +16017,13 @@ /obj/effect/landmark/crap_item, /turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) +"nFr" = ( +/obj/structure/flora/jungle/alienplant1{ + layer = 4.13; + pixel_y = 18 + }, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/caves/sand_temple) "nHj" = ( /obj/item/tool/extinguisher, /turf/open/floor/green/northwest, @@ -16145,6 +16089,11 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"nLw" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/west_jungle) "nLF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -16242,10 +16191,6 @@ /obj/structure/curtain/red, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"nTT" = ( -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/caves/sand_temple) "nUs" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -16343,16 +16288,14 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"odE" = ( -/obj/structure/fence, -/obj/effect/landmark/nightmare{ - insert_tag = "lv-hydro" - }, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/south_medbay_road) "oek" = ( /turf/open/gm/coast/north, /area/lv624/ground/jungle/west_jungle) +"oer" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "oeN" = ( /turf/closed/wall, /area/lv624/ground/barrens/north_east_barrens/ceiling) @@ -16429,6 +16372,15 @@ }, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"olE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "omu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -16456,9 +16408,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"opP" = ( -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/south_medbay_road) "opS" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) @@ -16487,6 +16436,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"osB" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/caves/sand_temple) "otl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -16614,6 +16568,14 @@ "oFf" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/river/east_river) +"oFz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "oFJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -16629,6 +16591,11 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) +"oGY" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/lv624/ground/caves/sand_temple) "oHu" = ( /turf/open/gm/coast/north, /area/lv624/ground/river/east_river) @@ -16703,13 +16670,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"oQU" = ( -/obj/structure/platform/stone/runed_sandstone, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) -"oRH" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_east_jungle) "oRY" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, @@ -16777,10 +16737,6 @@ "oVM" = ( /turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) -"oVR" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/gm/dirt, -/area/lv624/lazarus/landing_zones/lz2) "oWN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, @@ -16806,14 +16762,14 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"pas" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "pat" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"paG" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "paJ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -16903,10 +16859,6 @@ "pjk" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/river/east_river) -"pjw" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "pjY" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -16955,10 +16907,6 @@ }, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) -"poE" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "poX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -17002,6 +16950,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"psJ" = ( +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "psZ" = ( /obj/item/stack/sheet/wood, /obj/item/ammo_magazine/rifle/nsg23{ @@ -17056,21 +17007,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark, /area/lv624/lazarus/comms) -"pAr" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/stair_cut/platform_left, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "pAE" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -17138,6 +17074,9 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"pGE" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/north_jungle) "pGL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -17191,15 +17130,20 @@ /obj/effect/landmark/crap_item, /turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"pKC" = ( -/obj/effect/landmark/lizard_spawn, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_east_jungle) "pKS" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"pLl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "pLm" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -17221,6 +17165,10 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"pMY" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/lv624/ground/caves/sand_temple) "pNa" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, @@ -17229,11 +17177,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"pNG" = ( -/obj/effect/landmark/lv624/fog_blocker, -/obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/gm/coast/beachcorner/north_east, -/area/lv624/ground/river/east_river) "pOC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -17334,14 +17277,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"pXp" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/caves/sand_temple) "pXI" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"pXR" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "pYp" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -17364,13 +17307,6 @@ /obj/item/clothing/mask/gas, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"qae" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) "qaE" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, @@ -17432,10 +17368,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"qgt" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/landing_zones/lz2) +"qgq" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/north_east_jungle) "qgA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_east_jungle) @@ -17468,6 +17404,15 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"qmD" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/beachcorner/north_east, +/area/lv624/ground/river/east_river) +"qnh" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) "qns" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -17532,14 +17477,25 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"qvf" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/caves/sand_temple) "qvC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/west_nexus_road) +"qvP" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/west_jungle) +"qwa" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "qxo" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/white{ @@ -17561,6 +17517,15 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"qzc" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "qAf" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -17609,6 +17574,16 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"qDH" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "qDQ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -17689,6 +17664,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"qNr" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "qNz" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -17750,6 +17729,10 @@ /obj/item/ammo_magazine/smg/mp5, /turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) +"qUL" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) "qUM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_central_jungle) @@ -17788,6 +17771,10 @@ /obj/item/stack/rods, /turf/open/floor/dark, /area/lv624/lazarus/comms) +"qXE" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/south_east_jungle) "qYF" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirt, @@ -17823,15 +17810,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"rbw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/stone/stair_cut/runed_sandstone_right, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "rby" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -17955,6 +17933,10 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"rpB" = ( +/obj/structure/foamed_metal, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/east_central_jungle) "rpR" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/warning/southeast, @@ -18087,6 +18069,14 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/secure_storage) +"rEx" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8 + }, +/obj/effect/decal/remains/xeno, +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/west_tcomms_road) "rER" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -18122,10 +18112,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"rGW" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/east_jungle) "rGZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -18173,10 +18159,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"rKf" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) "rKQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -18188,6 +18170,21 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"rLQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "rMR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -18234,6 +18231,10 @@ }, /turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) +"rSn" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/caves/sand_temple) "rSy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_jungle) @@ -18242,10 +18243,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"rTK" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/colony/north_tcomms_road) "rTT" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) @@ -18286,14 +18283,15 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/river, /area/lv624/ground/caves/west_caves) -"rZK" = ( +"rZs" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 5; + dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirt, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "rZL" = ( /obj/structure/surface/rack, @@ -18319,14 +18317,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"scu" = ( -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "sdh" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"sdk" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/south_central_jungle) "sdS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/tomatosoup{ @@ -18376,19 +18373,15 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"shB" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "sic" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"siY" = ( -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) "slW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -18490,10 +18483,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"swt" = ( +"svS" = ( /obj/structure/platform_decoration/stone/runed_sandstone/west, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/gm/coast/beachcorner/north_east, +/area/lv624/ground/caves/sand_temple) "swR" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -18518,10 +18511,6 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"sxJ" = ( -/obj/structure/platform/stone/runed_sandstone/north, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "sxY" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -18535,10 +18524,10 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) -"szy" = ( +"szF" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/south_medbay_road) +/area/lv624/lazarus/quartstorage/outdoors) "sAh" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -18556,6 +18545,10 @@ }, /turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) +"sBp" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) "sBC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -18585,10 +18578,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"sDV" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "sET" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -18689,23 +18678,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"sOZ" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/caves/sand_temple) "sPm" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"sPq" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "sPy" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -18714,19 +18690,14 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"sPU" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "sRH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"sRM" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "sRW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) @@ -18865,9 +18836,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"teS" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_west_jungle) "tfA" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid, @@ -18988,10 +18956,6 @@ "tnY" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/caves/west_caves) -"tob" = ( -/obj/structure/platform_decoration/stone/runed_sandstone, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/lv624/ground/caves/sand_temple) "toz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -19017,10 +18981,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"tqh" = ( -/obj/structure/platform_decoration/stone/runed_sandstone, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "tqH" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -19062,24 +19022,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"tur" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"tut" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/stair_cut/platform_right, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "tuJ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; @@ -19090,6 +19032,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"tuT" = ( +/obj/structure/fence, +/obj/effect/landmark/nightmare{ + insert_tag = "lv-hydro" + }, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/colony/south_medbay_road) "tuX" = ( /obj/effect/landmark/crap_item, /turf/open/floor/wood/wood_broken6, @@ -19102,6 +19051,13 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"twz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) "twC" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/east_barrens) @@ -19123,12 +19079,19 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) +"tyA" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/caves/sand_temple) "tyG" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) "tzo" = ( /turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/central_barrens) +"tzw" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/north_east_jungle) "tzK" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -19140,6 +19103,24 @@ }, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"tAf" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"tAm" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "tBB" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -19164,6 +19145,23 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"tGc" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"tGM" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "tHc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, @@ -19173,16 +19171,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) -"tIw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/stone/stair_cut/runed_sandstone_left, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "tIZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -19319,6 +19307,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"tUG" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/south_medbay_road) "tVw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -19404,10 +19396,6 @@ "udP" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"udZ" = ( -/obj/structure/platform/stone/runed_sandstone, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "ueZ" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -19485,6 +19473,15 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"ukD" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "ukE" = ( /turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/south_eastern_barrens) @@ -19535,10 +19532,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"unT" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/east_jungle) "uop" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, @@ -19581,24 +19574,14 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"uta" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "uuf" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"uuV" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/east_jungle) +"uup" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "uve" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -19640,6 +19623,15 @@ "uya" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"uyh" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "uyn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -19712,6 +19704,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"uHl" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"uHs" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/west_jungle) "uHI" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass2, @@ -19720,6 +19719,10 @@ /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) +"uKt" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/caves/north_central_caves) "uKT" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -19857,6 +19860,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"uZc" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "uZp" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -19898,15 +19905,6 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"vcI" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stone/runed_sandstone/west, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "vcY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -19967,6 +19965,10 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"viY" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/gm/dirtgrassborder/west, +/area/lv624/lazarus/landing_zones/lz2) "vjH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -20030,6 +20032,9 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"vps" = ( +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/colony/west_nexus_road) "vqT" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) @@ -20037,6 +20042,10 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"vtf" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/barrens/south_eastern_barrens) "vtk" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -20081,6 +20090,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"vyn" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "vyz" = ( /obj/structure/largecrate, /turf/open/floor/vault2/west, @@ -20107,10 +20120,6 @@ "vBe" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"vBg" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/lazarus/landing_zones/lz2) "vBQ" = ( /obj/structure/largecrate, /turf/open/floor/bot/north, @@ -20121,16 +20130,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"vDc" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) "vDy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/barrens/south_eastern_barrens) @@ -20202,22 +20201,15 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"vLF" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) -"vLO" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/lazarus/quartstorage/outdoors) -"vMA" = ( +"vLt" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 4; + dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform/stone/runed_sandstone, +/obj/structure/platform_decoration/stone/runed_sandstone/west, /turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +/area/lv624/ground/barrens/south_eastern_barrens) "vMC" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -20259,10 +20251,6 @@ "vOF" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) -"vOG" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/north, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "vPo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -20290,10 +20278,10 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"vRR" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) +"vRZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/east_jungle) "vSG" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -20302,10 +20290,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"vUj" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/south_west_jungle) "vUw" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -20365,6 +20349,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"wbe" = ( +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_west_jungle) "wbg" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -20435,6 +20426,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"whP" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "whQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -20452,10 +20447,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"wjA" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/coast/north, -/area/lv624/ground/caves/sand_temple) "wjT" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 @@ -20593,10 +20584,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"wAI" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_central_jungle) "wAP" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -20611,15 +20598,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"wEk" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "wEO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -20745,6 +20723,10 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"wQr" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/south_central_jungle) "wQK" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -20793,10 +20775,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wTf" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/floor/plating/asteroidwarning/west, -/area/lv624/lazarus/landing_zones/lz2) "wTC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -20808,11 +20786,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"wUv" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/east_jungle) "wUz" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, @@ -20865,6 +20838,10 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"wXM" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "wYp" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -20900,6 +20877,10 @@ /obj/item/shard, /turf/open/floor/whiteyellow/southwest, /area/lv624/lazarus/corporate_dome) +"xcc" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/north_east_jungle) "xch" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) @@ -20968,6 +20949,14 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"xnA" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "xov" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -20998,6 +20987,10 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"xtV" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/barrens/south_eastern_barrens) "xuk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_central_jungle) @@ -21027,10 +21020,6 @@ "xwr" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"xwt" = ( -/obj/structure/platform/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "xwN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -21043,6 +21032,15 @@ /obj/item/restraint/adjustable/cable/white, /turf/open/floor/whiteyellow, /area/lv624/lazarus/corporate_dome) +"xxn" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "xxz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/crowbar, @@ -21092,6 +21090,10 @@ "xDw" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/ground/colony/telecomm/cargo) +"xDH" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/coast/north, +/area/lv624/ground/caves/sand_temple) "xDR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, @@ -21246,6 +21248,11 @@ "xVN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/south_central_jungle) +"xVO" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/lv624/ground/barrens/south_eastern_barrens) "xWy" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -21256,9 +21263,6 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"xXZ" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/east_central_jungle) "xYj" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -21378,10 +21382,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ykl" = ( -/obj/structure/platform_decoration/stone/runed_sandstone/east, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "ykM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/pointybush, @@ -22020,7 +22020,7 @@ nsk gbz nsk aZb -aqS +uHs hJn atC npQ @@ -23414,7 +23414,7 @@ aAl aAl aAl aAl -aqS +uHs aro asw aIm @@ -23433,7 +23433,7 @@ aKf aXh hqQ aLj -aVT +wbe acr aWn aWO @@ -23642,7 +23642,7 @@ knd axw aAl aAl -aqS +uHs aro aro aro @@ -23661,7 +23661,7 @@ kJu aVA aKf aLj -exf +xdO acr aWo aWP @@ -23669,7 +23669,7 @@ aWO aWO qBW axR -xdO +exf hUs aXh aKb @@ -23870,7 +23870,7 @@ jga ajg aAl aAl -aqS +uHs asc aro asc @@ -24098,7 +24098,7 @@ qMX bBu knd akZ -aqS +uHs asw asw aro @@ -24326,7 +24326,7 @@ aGg jga azs dmf -aqS +uHs aro asw aro @@ -24554,7 +24554,7 @@ jga jga jga dmf -aqS +uHs asg aro aro @@ -24782,7 +24782,7 @@ nWJ jga aGV dmf -aqS +uHs aro aro aro @@ -25010,7 +25010,7 @@ jga qMX jga aHO -aIz +nLw asw aro aIq @@ -25238,7 +25238,7 @@ azs jga aGV dmf -aqS +uHs asw asw aro @@ -25466,7 +25466,7 @@ jga jga jga dmf -aqS +uHs asw asw aro @@ -25694,7 +25694,7 @@ jga aGV jga aHR -aqS +uHs asw axX aro @@ -25922,7 +25922,7 @@ lyj sTB sTB erx -aqS +uHs aro aro asc @@ -26813,7 +26813,7 @@ aFm aAl aqi aAl -asX +qvP aAp aAp baN @@ -26863,7 +26863,7 @@ iPB bkY mWe xTT -xdO +exf aKb aKb aac @@ -27088,10 +27088,10 @@ nLk caX aXh aXh -exf +xdO xTT xTT -xdO +exf aKb aKb aac @@ -27316,10 +27316,10 @@ nLk jHT cQJ aXh -exf +xdO xTT xTT -xdO +exf aKb aKb aac @@ -27747,7 +27747,7 @@ aJF aJF uRE uRE -vBg +viY uRE uRE aJF @@ -27955,7 +27955,7 @@ qKC pKm aAp nmO -aZP +aRx aOB uzH uzH @@ -27973,7 +27973,7 @@ uzH uzH uzH uzH -wTf +iJK uzH uzH uzH @@ -28183,7 +28183,7 @@ hdh oKP aAp nmO -aZP +aRx aOB aRg aCh @@ -28411,7 +28411,7 @@ hdh hdh aAp aXX -aZP +aRx aOB oOB aRg @@ -28435,7 +28435,7 @@ aRg aRg aCi aRg -qae +twz aRg wLz tZD @@ -28639,7 +28639,7 @@ oXI aAp fuy aXX -aZP +aRx aOB aTv aRg @@ -28664,7 +28664,7 @@ aRg aKO aRg aEw -rKf +qnh wLz tZD aAp @@ -28867,7 +28867,7 @@ aAp aAp cIL nmO -aZP +aRx aOB kvE aRg @@ -29095,7 +29095,7 @@ aAp aAp aAp nmO -aZP +aRx aOB aTt aRg @@ -29323,7 +29323,7 @@ oTJ aAp aAp aXX -aZP +aRx aOB oOB aRg @@ -29551,7 +29551,7 @@ aAp aAp nmO aXX -aZP +aRx aOB aTv aRg @@ -29577,7 +29577,7 @@ aRg aRg aEw aRg -mpc +qUL gef mxW oOf @@ -29779,7 +29779,7 @@ aAp aAp cIL nmO -aZP +aRx aOB kvE aRg @@ -30007,7 +30007,7 @@ aAp aAp aAp nmO -aZP +aRx aOB aTt aRg @@ -30032,7 +30032,7 @@ aRg aRg aRg aZT -rKf +qnh wLz lUb tZD @@ -30224,7 +30224,7 @@ aud aud auP oTJ -teS +jqB pDI yiE pYJ @@ -30235,7 +30235,7 @@ aAp aAp nmO aXX -aZP +aRx aOB oOB aRg @@ -30463,7 +30463,7 @@ aAp aAp aXX aXX -aZP +aRx aOB aTv aRg @@ -30691,7 +30691,7 @@ aAp aAp nmO aXX -aZP +aRx aOB kvE aRg @@ -30919,7 +30919,7 @@ aAp cIL cIL nmO -aZP +aRx aOB aRg aAJ @@ -31147,7 +31147,7 @@ aAp aAp nmO aXX -aZP +aRx pRh niV niV @@ -31192,7 +31192,7 @@ kVS xLT sCx haE -vUj +jhb qGH aLj aXk @@ -31413,14 +31413,14 @@ gkh buw efp efp -uSq +ntL eUI qIO qIO jaw uXV hen -dMc +nEb knp iIU kZw @@ -31585,7 +31585,7 @@ aud aud auP oTJ -teS +jqB psh vEp wzG @@ -31603,17 +31603,17 @@ aAp aAp aAp nmO -aZP +aRx aDv -oVR +nfi aDv -aRx +aZP aXX aXX aXX aXX aXX -aZP +aRx nsA aDv aDv @@ -31623,7 +31623,7 @@ aDv aDv aDv aOB -qgt +sBp wLz aDv tZD @@ -31641,14 +31641,14 @@ kjp hSp efp efp -uSq +ntL njC qIO qIO qIO ose qtj -ksM +wQr rox wqz kZw @@ -31831,17 +31831,17 @@ aAp aAp aAp aAp -aZP +aRx aDv aDv aDv -aRx +aZP svh aXX aXX nHZ aXX -aZP +aRx aDv aDv aDv @@ -31869,11 +31869,11 @@ fJQ efp efp gDu -uSq +ntL rwK qIO qIO -aXH +rEx ebr xNQ vVe @@ -32040,7 +32040,7 @@ aud aul avK aBn -teS +jqB psh psh nuW @@ -32059,25 +32059,25 @@ wqO aAp aAp aAp -aZP +aRx aDv aDv aDv -aRx +aZP aXX aXX -vRR +dkq aXX aXX azD aEs -bwq +mpW aDv aDv -aRx +aZP anP aXX -aZP +aRx aOB wHp ncV @@ -32097,11 +32097,11 @@ ply efp efp efp -uSq +ntL xOL qIO jaw -ntL +uSq kxI kxI kxI @@ -32268,7 +32268,7 @@ apa aBn asH oTJ -teS +jqB psh psh psh @@ -32298,11 +32298,11 @@ wZc aXX aXX aXX -aZP +aRx aDv aDv aDv -aRx +aZP vcY svh xgE @@ -32325,11 +32325,11 @@ gDu hRI efp efp -uSq +ntL qIO qIO qIO -ntL +uSq kxI mVK kxI @@ -32526,11 +32526,11 @@ ado avH svh aXX -aZP +aRx aDv aCI -bwq -aRx +mpW +aZP twg aXX xgE @@ -32553,11 +32553,11 @@ gDu gDu efp efp -uSq +ntL qIO hDX qIO -ntL +uSq lUc kxI kxI @@ -32754,11 +32754,11 @@ aCk ado aXX aXX -aZP -oVR +aRx +nfi aDv aDv -aRx +aZP aXX aXX xgE @@ -32781,11 +32781,11 @@ efp uRb efp efp -uSq +ntL qIO qIO pHx -ntL +uSq kxI kxI rCV @@ -32951,7 +32951,7 @@ oTJ oTJ oTJ oTJ -teS +jqB psh pGD psh @@ -32982,11 +32982,11 @@ aCk ado aXX aXX -aZP +aRx aDv aDv aDv -aRx +aZP aXX svh xgE @@ -33009,11 +33009,11 @@ efp efp snr mmu -uSq +ntL qIO qIO qIO -ntL +uSq kxI pYp kxI @@ -33210,7 +33210,7 @@ aCl ado aXX aXX -aZP +aRx aDv aDv aDv @@ -33241,7 +33241,7 @@ qeY qIO qIO qIO -ntL +uSq kxI rCV kxI @@ -33405,7 +33405,7 @@ aud auP oTJ oTJ -teS +jqB psh bnE pYq @@ -33469,7 +33469,7 @@ qIO qIO qIO qIO -ntL +uSq kxI kxI tsa @@ -33633,7 +33633,7 @@ aud auP oTJ oTJ -teS +jqB pYq iLS eny @@ -33697,7 +33697,7 @@ qIO qIO njC qIO -ntL +uSq kxI kxI kxI @@ -33861,7 +33861,7 @@ aud auP asH oTJ -teS +jqB pNa eny eny @@ -33925,7 +33925,7 @@ qIO qIO qIO qIO -ntL +uSq kxI kxI lAX @@ -34089,7 +34089,7 @@ aud auP oTJ oTJ -teS +jqB qSZ eny oAD @@ -34153,7 +34153,7 @@ qIO qIO qIO qIO -ntL +uSq kxI vgM kxI @@ -34317,7 +34317,7 @@ aud auP oTJ oTJ -teS +jqB psh qSZ fio @@ -34601,13 +34601,13 @@ sxY xgE aRf cPV -uSq +ntL qIO qIO qIO qIO qIO -ntL +uSq mVK kxI kxI @@ -34772,7 +34772,7 @@ aud aud auP oTJ -teS +jqB psh psh nuW @@ -34829,13 +34829,13 @@ lFv xgE cPV cPV -uSq +ntL qIO qIO qIO qIO qIO -ntL +uSq kxI lUc kxI @@ -35000,7 +35000,7 @@ aud bGb auP asH -teS +jqB psh psh nuW @@ -35057,13 +35057,13 @@ pnl xgE cPV bwR -uSq +ntL qIO qIO qIO qIO qIO -ntL +uSq kxI kxI tsa @@ -35228,7 +35228,7 @@ aud aud auP oTJ -teS +jqB kzv psh cRT @@ -35285,13 +35285,13 @@ xgE ndK rBF bCH -uSq +ntL qIO qIO qIO qIO qIO -ntL +uSq kxI kxI kxI @@ -35513,13 +35513,13 @@ oYx wMk wMk qGK -uSq +ntL qIO njC qIO qIO qIO -ntL +uSq kxI kxI kxI @@ -35707,7 +35707,7 @@ psh psh psh kzv -uiN +fTf byY ylL byY @@ -35716,12 +35716,12 @@ oGs oGs oGs hFO -qUM +fPH byY byY byY byY -wAI +kKW xEt bCH aDP @@ -35741,13 +35741,13 @@ ilf lsq wMk qGK -uSq +ntL qIO qIO qIO qIO qIO -ntL +uSq kxI kzu kxI @@ -35779,7 +35779,7 @@ aaF xJG aaw aaw -aaK +aaH aah aah aah @@ -35935,7 +35935,7 @@ nuW psh mvr psh -uiN +fTf byY byY byY @@ -35949,7 +35949,7 @@ byY byY byY byY -fPH +qUM xEt bbU mfI @@ -35969,13 +35969,13 @@ wJA wMk wMk rXW -uSq +ntL qIO qIO qIO ctS ctS -ntL +uSq kxI kxI jxG @@ -36007,7 +36007,7 @@ aaF aaF aaF aaw -aaK +aaH aah aah aah @@ -36021,7 +36021,7 @@ aah aah aah aah -aaH +aaK aaw aaw aaF @@ -36137,7 +36137,7 @@ aud aul avK aBn -teS +jqB psh nuW psh @@ -36163,7 +36163,7 @@ psh psh psh psh -uiN +fTf byY byY byY @@ -36177,7 +36177,7 @@ byY byY byY byY -jLR +hFJ xEt wMk laY @@ -36197,7 +36197,7 @@ rfH rIq rBF qGK -uSq +ntL njC qIO qIO @@ -36235,7 +36235,7 @@ aaF aaF aaF aaw -aaK +aaH aah aaU aah @@ -36249,7 +36249,7 @@ aah aah aah aah -aaH +aaK aaw aaw aaF @@ -36365,7 +36365,7 @@ aul aBn msV nsk -teS +jqB psh psh psh @@ -36391,7 +36391,7 @@ pGD psh psh psh -uiN +fTf byY byY byY @@ -36405,7 +36405,7 @@ byY byY byY byY -rTK +eVV bCH bCH mfI @@ -36425,12 +36425,12 @@ bbp rIq wMk qGK -uSq +ntL qIO qIO qIO ctS -hLu +sdk kxI kxI oAJ @@ -36477,7 +36477,7 @@ aah aah aah aah -aaH +aaK aaw aaF aaF @@ -36633,7 +36633,7 @@ byY byY byY byY -rTK +eVV bbH bbZ rBF @@ -36658,7 +36658,7 @@ aPT aUk aPT aPt -hLu +sdk kxI kxI gzd @@ -36851,7 +36851,7 @@ psh psh psh psh -uiN +fTf byY byY byY @@ -36861,7 +36861,7 @@ byY byY byY byY -rTK +eVV cPV cPV cPV @@ -36917,7 +36917,7 @@ avm avm avm abk -aaK +aaH aah wrN aah @@ -36934,7 +36934,7 @@ aau aah aah aah -aaH +aaK aaF abm abm @@ -37079,7 +37079,7 @@ psh mvr psh nuW -uiN +fTf byY byY byY @@ -37088,6 +37088,7 @@ lIm byY byY byY +byY mun oGs oGs @@ -37100,7 +37101,6 @@ oGs oGs oGs oGs -oGs hFO bwR cPV @@ -37162,7 +37162,7 @@ aau aah aah aah -aaH +aaK abm abm abm @@ -37307,7 +37307,7 @@ psh wqO jHd psh -uiN +fTf aBx byY byY @@ -37329,7 +37329,7 @@ byY byY byY byY -fTf +uiN cPV cPV akq @@ -37390,7 +37390,7 @@ aau aah aah aah -aaH +aaK aaw abm aaw @@ -37498,7 +37498,7 @@ alS akC akC amT -hJW +pGE tyG tyG weH @@ -37535,7 +37535,7 @@ atO asT psh psh -uiN +fTf byY byY byY @@ -37557,7 +37557,7 @@ byY byY byY byY -fTf +uiN nhi cPV aRf @@ -37618,7 +37618,7 @@ aau aah aah aah -aaH +aaK aaw aaw aaw @@ -37763,7 +37763,7 @@ axF asU psh cGb -uiN +fTf byY byY byY @@ -37846,7 +37846,7 @@ aaC aaA aah aah -aaH +aaK aaw aaw aaw @@ -37991,7 +37991,7 @@ nMu asU psh psh -uiN +fTf byY byY byY @@ -38074,7 +38074,7 @@ abb aau aah aah -aaH +aaK aaw aaw aax @@ -38219,11 +38219,11 @@ ayI asU nVG psh -uiN +fTf byY byY byY -fTf +uiN aJr aJr aJr @@ -38237,7 +38237,7 @@ wkE aJr aJr aJr -uiN +fTf byY aTS byY @@ -38302,7 +38302,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -38406,7 +38406,7 @@ sTX sqj tlD rit -hJW +pGE tyG amC amB @@ -38451,7 +38451,7 @@ lYB byY ylL byY -fTf +uiN aJr jGW jGW @@ -38465,7 +38465,7 @@ aJr aJr aJr jGW -uiN +fTf byY byY byY @@ -38480,12 +38480,12 @@ aQn aTi aTi qit -pjw -hLB -hLB -vLF -mhc -mTK +shB +sRM +sRM +dAv +jia +oer aPT kxI lIU @@ -38530,7 +38530,7 @@ abb aau aah aaU -aaH +aaK aaw aaw aaw @@ -38634,7 +38634,7 @@ sqj sqj sqj rit -hJW +pGE jZL amB ldZ @@ -38656,7 +38656,7 @@ aqA txL tIg nSg -opP +gRx udP udP asU @@ -38679,7 +38679,7 @@ byY aAq ylL byY -fTf +uiN qDQ aJr jGW @@ -38708,18 +38708,18 @@ aTg aTg kKL aXn -mft +alm aTg aTg -tut -uta +hbT +qDH aPt aPt kxI -awL +bxH vkN qtj -hLu +sdk tsa tsa aac @@ -38758,7 +38758,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -38862,7 +38862,7 @@ sqj sqj sqj rit -hJW +pGE tyG amC tyG @@ -38884,7 +38884,7 @@ apV pwq dId nSg -opP +gRx udP udP asV @@ -38907,7 +38907,7 @@ byY byY byY aCo -fTf +uiN aJr aJr aDl @@ -38923,11 +38923,11 @@ aJr aJr aJr aJr -uiN +fTf byY byY byY -aUl +lrl aPT aRi aTi @@ -38944,7 +38944,7 @@ kvv aPT kxI kxI -awQ +day qtj qtj xVN @@ -38986,7 +38986,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -39090,7 +39090,7 @@ alo sqj sqj rit -hJW +pGE tyG amB nOX @@ -39135,7 +39135,7 @@ byY byY byY byY -fTf +uiN aJr aJr ltT @@ -39151,11 +39151,11 @@ aJr jGW aJr aKZ -uiN +fTf byY byY byY -aUl +lrl aPT aSe aWE @@ -39214,7 +39214,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -39379,11 +39379,11 @@ aJr ujd aJr aJr -uiN +fTf byY byY byY -aUl +lrl aPT aSJ aTk @@ -39401,7 +39401,7 @@ aPT sBJ kxI kxI -ayU +lrC qtj qtj tsa @@ -39442,7 +39442,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -39629,7 +39629,7 @@ aPt tzK kxI kxI -kXE +ahY qtj tsa tsa @@ -39670,7 +39670,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -39776,7 +39776,7 @@ dVH dVH wqy dVH -hJW +pGE tyG amB ldZ @@ -40004,7 +40004,7 @@ dVH dVH dVH dVH -hJW +pGE tyG amC ldZ @@ -40127,7 +40127,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -40355,7 +40355,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -40459,7 +40459,7 @@ sqj sqj rit dVH -hJW +pGE nVC aOS evT @@ -40480,11 +40480,11 @@ aoI hZg qJg nSg -opP +gRx udP udP udP -aCS +tUG jHN jHN jHN @@ -40583,7 +40583,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -40687,7 +40687,7 @@ sqj sqj rit wqy -hJW +pGE gaw xei tyG @@ -40708,11 +40708,11 @@ pzt aqQ atV nSg -opP +gRx udP udP udP -aCS +tUG bgQ buW jHN @@ -40760,7 +40760,7 @@ aSL aSL aVg tem -fdr +tGM kzp aTq aTq @@ -40915,7 +40915,7 @@ sTX sqj rit dVH -hJW +pGE uLW toL tyG @@ -40936,11 +40936,11 @@ anF nSg nSg anF -szy +aCS udP udP udP -aCS +tUG jHN eoo jHN @@ -40962,7 +40962,7 @@ gsA iAA aJr aJr -pIy +iCN mKf mKf mKf @@ -40988,7 +40988,7 @@ aSL lHc ogR aUs -fvx +gZz aTM aTq kzp @@ -41143,7 +41143,7 @@ sqj sqj dGG nPd -hJW +pGE xoL toL ldZ @@ -41164,11 +41164,11 @@ anS jHN jHN jHN -szy +aCS udP udP udP -aCS +tUG jHN jHN ofv @@ -41190,7 +41190,7 @@ aJr jGW aLv aJr -pIy +iCN mKf mKf mKf @@ -41269,7 +41269,7 @@ aaC aaA aah aah -aaH +aaK aaw aaw wbM @@ -41392,11 +41392,11 @@ jHN bgQ buW jHN -szy +aCS udP oua udP -aCS +tUG atw adp adp @@ -41418,7 +41418,7 @@ aJr aJr aJr aDn -pIy +iCN mKf qAP mKf @@ -41497,7 +41497,7 @@ abb aaC aaA aah -aaH +aaK aaw aaw aaw @@ -41600,7 +41600,7 @@ sqj tlD rit dVH -hJW +pGE xoL kYx amB @@ -41620,11 +41620,11 @@ jHN sWy eoo jHN -szy +aCS udP udP udP -gRx +fLo adp auz atX @@ -41646,7 +41646,7 @@ sOp pjY aJr aJr -pIy +iCN mKf mKf oLk @@ -41672,7 +41672,7 @@ aSL lHc gKg aVe -siY +xnA aTM aTM gqG @@ -41703,7 +41703,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aah @@ -41725,7 +41725,7 @@ abb abb aau aah -aaH +aaK aaw aaw aaw @@ -41828,7 +41828,7 @@ hwR hwR oTt dVH -hJW +pGE grl evT amB @@ -41848,7 +41848,7 @@ jHN jHN jHN ofv -odE +tuT udP udP udP @@ -41874,10 +41874,10 @@ aJr aJr qDQ aOW -pIy +iCN mKf mKf -iCN +pIy uxh uEb heZ @@ -41900,7 +41900,7 @@ aSL aSL aVf jMk -loA +iFI lzW kyz aWF @@ -42056,7 +42056,7 @@ bkG oXS oXS nPd -hJW +pGE tyG amB amB @@ -42076,7 +42076,7 @@ jHN jHN jHN jHN -szy +aCS udP udP udP @@ -42102,10 +42102,10 @@ aJr aJr aJr aJr -pIy +iCN mKf mKf -iCN +pIy uEb pXI cWr @@ -42160,7 +42160,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aah @@ -42182,7 +42182,7 @@ abb aau aah aah -aaH +aaK aaw aaw aaw @@ -42284,7 +42284,7 @@ eqF sTX sqj rit -hJW +pGE tyG amB ldZ @@ -42304,7 +42304,7 @@ anG jHN jHN jHN -szy +aCS udP udP udP @@ -42333,7 +42333,7 @@ hEu pSt mKf mKf -iCN +pIy dJG mfu rGu @@ -42512,7 +42512,7 @@ eqF sqj sqj csu -hJW +pGE ldZ amB tyG @@ -42532,7 +42532,7 @@ anG anT anT anG -szy +aCS udP udP udP @@ -42561,7 +42561,7 @@ qAP mKf mKf mKf -iCN +pIy qdQ hSn jbd @@ -42585,9 +42585,9 @@ aTs aTR aUu aSX -pAr +rLQ vdl -noO +gdk aSX aXt aWi @@ -42615,7 +42615,7 @@ abm abm aaw aaw -aaK +aaH aah aah aah @@ -42639,7 +42639,7 @@ abb aau aah aah -aaH +aaK aaw aaF aaF @@ -42740,7 +42740,7 @@ eqF sqj kft rit -hJW +pGE amB tyG tyG @@ -42812,10 +42812,10 @@ aSL aTu fLf fQx -eOJ -gtW +qwa +bzA hDe -gch +oFz aSX aXu aXN @@ -42843,7 +42843,7 @@ abm abm aaw aaw -aaK +aaH aah aah aah @@ -42867,7 +42867,7 @@ abb aau aah aah -aaJ +uKt aaw aaF aaF @@ -42968,7 +42968,7 @@ kyc alF hwR oTt -hJW +pGE amB jZL tyG @@ -43071,7 +43071,7 @@ abm aaw aaw abm -aaK +aaH aah aah aaU @@ -43095,13 +43095,13 @@ abb aau aah aaU -aaH +aaK aaw aaw aaF aaw aaw -aaK +aaH aah aah abm @@ -43196,7 +43196,7 @@ oXS oXS nPd dVH -hJW +pGE amB tyG nOX @@ -43263,7 +43263,7 @@ dEg dEg dEg dEg -cys +rpB aSL fFN hHc @@ -43323,13 +43323,13 @@ abb aau aah aah -aaH +aaK aaw aaw aaw aaw aaw -aaK +aaH aah aah tdX @@ -43424,7 +43424,7 @@ sqj sqj rit dVH -hJW +pGE amB tyG tyG @@ -43491,7 +43491,7 @@ dEg dEg dEg dEg -cys +rpB aSm aSm aSm @@ -43528,7 +43528,7 @@ aaw abm abm aaw -aaK +aaH aah aah aah @@ -43551,13 +43551,13 @@ abb aau aah aah -aaH +aaK aaw aaw aaw aaw aaw -aaK +aaH aah aar tdX @@ -43652,7 +43652,7 @@ sqj sTX rit dVH -mEw +faY amB lnK tyG @@ -43704,7 +43704,7 @@ oUy oUy oUy fiZ -ecO +vps mKf mKf mKf @@ -43724,11 +43724,11 @@ aSm aSm aSm oUy -aVk +eAn yle yle yle -cqw +mko kxI kxI lAX @@ -43779,13 +43779,13 @@ abb aau aah aah -aaH +aaK aaw aaw aaw aaw aaw -aaK +aaH aah aah tdX @@ -43880,7 +43880,7 @@ sqj sqj rit amo -hJW +pGE amB tyG tyG @@ -43946,17 +43946,17 @@ dEg dEg dEg dEg -xXZ +gUx oUy aKo aXo oUy lEY -mko +cqw yle yle yle -cqw +mko jxG bFa kxI @@ -43985,7 +43985,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aaY @@ -44007,13 +44007,13 @@ abb aau aah aah -aaH +aaK aaw aaw aaw aaw aaw -aaK +aaH aah aah tdX @@ -44108,7 +44108,7 @@ sqj ajH alW dVH -hJW +pGE amB tyG tyG @@ -44131,7 +44131,7 @@ aoA anT jRm jRm -iwh +nrG aGY atw atz @@ -44180,11 +44180,11 @@ oUy bbI bbN oUy -mko +cqw yle yle fXr -cqw +mko gzd eqs kxI @@ -44213,7 +44213,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aaY @@ -44235,13 +44235,13 @@ aat aav aah aah -aaH +aaK aaw aaw aaw aaw aaw -aaK +aaH aah aah tdX @@ -44336,7 +44336,7 @@ sqj sqj alW dVH -hJW +pGE amB ldZ tyG @@ -44359,7 +44359,7 @@ anG anG jRm jRm -iwh +nrG oUy oUy aXv @@ -44408,7 +44408,7 @@ bbI bbL ukk oUy -mko +cqw yle yle yle @@ -44441,7 +44441,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aaY @@ -44463,13 +44463,13 @@ aau aah aah aah -aaH +aaK aaw aaw aaw aaw aaw -aaK +aaH aah abm abm @@ -44564,7 +44564,7 @@ sqj kft alW byL -hJW +pGE amC ldZ tyG @@ -44587,7 +44587,7 @@ anT jRm jRm jRm -iwh +nrG oUy oHx oUy @@ -44636,7 +44636,7 @@ bbJ tmE bbO oUy -mko +cqw yle yle yle @@ -44644,7 +44644,7 @@ yle yle yle yle -cqw +mko kxI kxI pYp @@ -44669,7 +44669,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aaY @@ -44691,7 +44691,7 @@ aav aah aah aah -aaH +aaK aaw aaw aaw @@ -44792,7 +44792,7 @@ ajX ajX alX amr -hJW +pGE tyG amB tyG @@ -44815,7 +44815,7 @@ anT xpf jRm mFu -iwh +nrG aWC oUy oUy @@ -44864,7 +44864,7 @@ oUy oUy aOG oUy -mko +cqw yle yle yle @@ -44872,7 +44872,7 @@ yle yle yle yle -cqw +mko kxI kxI tsa @@ -44897,7 +44897,7 @@ aax aaE aaw aaw -aaK +aaH aah aah aaY @@ -45020,7 +45020,7 @@ whR ajV alY amr -hJW +pGE tyG amC vqT @@ -45040,10 +45040,10 @@ anG anT anT anG -gYs +iwh jRm jRm -iwh +nrG oUy oUy oUy @@ -45092,7 +45092,7 @@ aSv aTw aQx oUy -mko +cqw yle yle yle @@ -45100,7 +45100,7 @@ yle fXr yle yle -cqw +mko sBJ kxI tsa @@ -45125,7 +45125,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aaZ @@ -45248,7 +45248,7 @@ whR ajV alY amr -hJW +pGE tyG amB tyG @@ -45268,10 +45268,10 @@ anG tyG tyG tyG -gYs +iwh jRm jRm -iwh +nrG aKo oUy wvO @@ -45328,7 +45328,7 @@ jgJ yle yle yle -cqw +mko kxI kxI tsa @@ -45353,7 +45353,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aah @@ -45476,7 +45476,7 @@ ajV whR alY amr -hJW +pGE tyG amB tyG @@ -45496,10 +45496,10 @@ tyG tyG tyG xze -gYs +iwh jRm jRm -iwh +nrG oUy oUy aKo @@ -45552,11 +45552,11 @@ oUy oUy oUy aWC -mko +cqw yle yle yle -cqw +mko kxI kxI tsa @@ -45581,7 +45581,7 @@ aaw aaw aaw aaw -aaK +aaH aah aah aah @@ -45600,7 +45600,7 @@ aah aah aah aah -aaH +aaK aaw aaw aaw @@ -45704,7 +45704,7 @@ ajU ajU alX amr -hJW +pGE tyG amB tyG @@ -45724,10 +45724,10 @@ tyG ldZ tyG tyG -gYs +iwh jRm jRm -iwh +nrG lEY oUy aKo @@ -45780,11 +45780,11 @@ oaL oUy aXP cIQ -mko +cqw yle yle yle -cqw +mko kxI kxI tsa @@ -45932,7 +45932,7 @@ sqj eHq alW byL -hJW +pGE amB amB tyG @@ -45952,10 +45952,10 @@ tyG tyG tyG tyG -gYs +iwh jRm jRm -iwh +nrG aKo oUy aKo @@ -46008,11 +46008,11 @@ aQM oUy oUy oUy -mko +cqw yle yle yle -cqw +mko kxI iUm tsa @@ -46160,7 +46160,7 @@ sqj sqj rit amr -oRH +tzw guY fuY wcS @@ -46180,10 +46180,10 @@ tyG dvf tyG tyG -gYs +iwh jRm jRm -iwh +nrG oUy oUy aKo @@ -46236,11 +46236,11 @@ aQM oUy tBJ oUy -mko +cqw yle yle yle -cqw +mko kxI kxI kxI @@ -46388,7 +46388,7 @@ kft lju oTt ams -amE +xcc gFm fuY fuY @@ -46408,10 +46408,10 @@ tyG tyG nOX tyG -gYs +iwh jRm jRm -iwh +nrG oUy aKo aKo @@ -46464,11 +46464,11 @@ aQM aQM oUy pBk -mko +cqw yle yle yle -cqw +mko kxI kxI tsa @@ -46616,7 +46616,7 @@ lju oTt dVH dVH -amD +qgq cpY gFm gFm @@ -46636,10 +46636,10 @@ fuY tyG tyG tyG -gYs +iwh jRm jRm -iwh +nrG oUy oUy aKo @@ -46692,11 +46692,11 @@ aZE aQM aXV oUy -mko +cqw yle yle yle -cqw +mko mnK kxI kxI @@ -46844,7 +46844,7 @@ rit dVH dVH dVH -oRH +tzw guY dmZ dmZ @@ -46864,10 +46864,10 @@ fuY tyG eDy tyG -gYs +iwh mFu jRm -iwh +nrG aMD oUy oUy @@ -46920,11 +46920,11 @@ aVo aQM aQM oUy -mko +cqw yle yle fXr -cqw +mko mVK kxI kxI @@ -47072,7 +47072,7 @@ oTt hrG wqy dVH -oRH +tzw fuY cpY guY @@ -47092,10 +47092,10 @@ vSG fuY fuY tyG -gYs +iwh jRm jRm -iwh +nrG oUy oUy oUy @@ -47148,11 +47148,11 @@ aVp aZF aSB oUy -mko +cqw yle yle yle -cqw +mko kxI kxI kxI @@ -47300,7 +47300,7 @@ dVH dVH dVH dVH -oRH +tzw guY cpY anc @@ -47320,10 +47320,10 @@ vjH fuY fuY cpY -gYs +iwh jRm jRm -iwh +nrG oUy oUy aWC @@ -47376,11 +47376,11 @@ aVq aVM aSB oUy -mko +cqw yle yle yle -cqw +mko kxI kxI kxI @@ -47528,7 +47528,7 @@ dVH dVH hrG dVH -oRH +tzw cpY guY wsZ @@ -47548,10 +47548,10 @@ vSG fuY fuY cpY -gYs +iwh jRm jRm -iwh +nrG oUy bad oUy @@ -47608,7 +47608,7 @@ uiz yle yle yle -cqw +mko kxI tsa kxI @@ -47776,10 +47776,10 @@ vtt vtt cpY cpY -gYs +iwh jRm jRm -iwh +nrG oUy oUy oUy @@ -47836,7 +47836,7 @@ yle yle fXr yle -cqw +mko kxI kyN kxI @@ -48004,7 +48004,7 @@ vSG fuY fuY cpY -gYs +iwh jRm mFu aXi @@ -48064,7 +48064,7 @@ yle yle yle yle -cqw +mko kxI kxI kxI @@ -48209,7 +48209,7 @@ sqj sqj lju oTt -oRH +tzw cpY dmZ fuY @@ -48232,7 +48232,7 @@ vSG fuY fuY cpY -gYs +iwh jRm jRm jRm @@ -48292,7 +48292,7 @@ yle yle yle yle -cqw +mko wkP knp kxI @@ -48437,7 +48437,7 @@ sqj sqj rit dVH -oRH +tzw fuY cpY cpY @@ -48460,7 +48460,7 @@ vtt fuY fuY oER -gYs +iwh jRm jRm jRm @@ -48520,7 +48520,7 @@ yle yle yle yle -cqw +mko kxI kxI kxI @@ -48665,7 +48665,7 @@ lju hwR oTt dVH -oRH +tzw cpY cpY cpY @@ -48688,7 +48688,7 @@ cpY cpY cpY cpY -gYs +iwh jRm jRm jRm @@ -48748,7 +48748,7 @@ yle yle yle yle -cqw +mko kxI tsa kxI @@ -48893,7 +48893,7 @@ rit dVH dVH hrG -oRH +tzw guY guY guY @@ -48976,7 +48976,7 @@ yle yle nfD yle -cqw +mko jxG bFa kxI @@ -49121,7 +49121,7 @@ rit ogZ dVH amr -amD +qgq gFm cpY cpY @@ -49149,11 +49149,11 @@ rck cpY cpY cpY -aqG +avP aqW aqW aqW -avP +szF fjM fjM fjM @@ -49204,7 +49204,7 @@ yle yle yle yle -cqw +mko oAJ qZv bFa @@ -49349,7 +49349,7 @@ dGG nPd dVH amr -oRH +tzw cpY cpY cpY @@ -49377,11 +49377,11 @@ kip fbb rck cpY -aqG +avP aqW aqW aqW -avP +szF fjM kuZ fjM @@ -49577,7 +49577,7 @@ sqj dGG bnX amr -oRH +tzw heC qLc rck @@ -49605,11 +49605,11 @@ iOX kip sMK cpY -aqG +avP aqW aqW aqW -avP +szF fjM fjM cOs @@ -49805,7 +49805,7 @@ sqj sqj rit amr -oRH +tzw ock kip qLc @@ -49833,11 +49833,11 @@ cpY dCZ mkW cpY -aqG +avP aqW aqW aqW -avP +szF fjM fjM cOs @@ -50033,7 +50033,7 @@ sqj sqj rit amr -oRH +tzw bPy qLc kip @@ -50061,11 +50061,11 @@ cpY cpY bit cpY -aqG +avP aqW aqW aqW -avP +szF cOs fjM fjM @@ -50289,11 +50289,11 @@ cpY cpY pba cpY -aqG +avP aqW aqW aqW -avP +szF fjM fjM fjM @@ -50488,7 +50488,7 @@ sqj jLD sqj rit -amD +qgq cpY heC qLc @@ -50521,7 +50521,7 @@ aqV aqX aqW aqW -avP +szF fjM fjM cOs @@ -50716,7 +50716,7 @@ sqj sqj sTX rit -amD +qgq dmZ ock kip @@ -50743,13 +50743,13 @@ cpY pIC asy cpY -aqG +avP aqW aqW aqW aqW aqX -avP +szF fjM mxd sSE @@ -50800,7 +50800,7 @@ sPy wpw wpw wpw -eTQ +gUq opS opS opS @@ -50944,7 +50944,7 @@ sqj sqj sqj rit -amD +qgq hMA qLc kip @@ -51172,7 +51172,7 @@ sqj sqj sqj rit -amD +qgq dCZ iOX mkW @@ -51193,7 +51193,7 @@ fuY cpY cpY cpY -aqG +avP aqW arG aqW @@ -51206,7 +51206,7 @@ arI ask arK avR -vLO +jbg fjM fjM fjM @@ -51400,7 +51400,7 @@ sqj sqj kft rit -amD +qgq uHI cpY mMq @@ -51421,7 +51421,7 @@ cpY cpY pba cpY -aqG +avP aqW aqW aqW @@ -51649,7 +51649,7 @@ cpY cpY cpY cpY -aqG +avP aqX aqW arH @@ -51823,14 +51823,14 @@ ahv ahv afS aej -iyd -vDc +neW +rZs ubJ -mJC -sPU +nDY +gNK aej ssK -poE +jOs agX agX ahv @@ -52058,7 +52058,7 @@ mhZ pEV uFA cRm -poE +jOs agX ahv ahv @@ -52104,7 +52104,7 @@ cpY cpY cpY cpY -aqG +avP aqW aqW arH @@ -52286,7 +52286,7 @@ mhZ lDh pws ssK -poE +jOs agX agX ahv @@ -52332,7 +52332,7 @@ pba cpY bit cpY -aqH +fOS aqW aqW aqW @@ -52514,7 +52514,7 @@ mhZ dID kbr jFc -poE +jOs agX gxd ahv @@ -52560,7 +52560,7 @@ cpY cpY cpY cpY -aqG +avP aqW arH aqW @@ -52742,7 +52742,7 @@ mhZ pEV lJm aeg -poE +jOs gxd qeW btX @@ -52788,7 +52788,7 @@ fuY cpY cpY cpY -aqG +avP aqX aqW arI @@ -52970,7 +52970,7 @@ mhZ pEV uDd slW -poE +jOs fPi btX wPN @@ -53001,7 +53001,7 @@ alM als als arO -oRH +tzw cpY cpY cpY @@ -53198,8 +53198,8 @@ mhZ pEV fzZ aeg -efJ -eSb +dAS +izZ wPN gQr agX @@ -53229,7 +53229,7 @@ ajI ajI ajI arQ -oRH +tzw cpY cpY fuY @@ -53427,7 +53427,7 @@ nTE afS afS aeg -gFk +fXy gQr agX xBi @@ -53457,7 +53457,7 @@ ajI alA ajI arQ -oRH +tzw dmZ cpY fuY @@ -53645,17 +53645,17 @@ ahv ahv ahv aeg -fPJ -rZK -eHl +wXM +iaE +mvM oyI oyI oyI -dvA -fhC -wjA +xxn +pLl +xDH aeg -poE +jOs agX agX agX @@ -53685,7 +53685,7 @@ ajI ajI ajI arQ -oRH +tzw cpY ubN dmZ @@ -53873,17 +53873,17 @@ ahv ahv ahv ufW -tob -cdB -fLk +pMY +dlq +byy boe boe boe -kfq -cdB -gFO +qNr +dlq +svS afS -poE +jOs agX agX agX @@ -53900,9 +53900,9 @@ xch xch xch xch -dtZ -xwt -pNG +uZc +fZL +qmD uxT uxT uxT @@ -54101,17 +54101,17 @@ aeb dkN ufW ufW -jKI +kHL avk -sxJ +cVn boe boe boe -udZ +gaP thn -bXU +tyA ufW -mww +olE rCK rCK rCK @@ -54121,19 +54121,19 @@ slW afS ahv ahv -swt +dVB xch xch xch -dtZ -gRh -fxZ -sPq +uZc +naM +vLt +lCm nnq -lde -tur -cib -swt +qzc +eLL +tGc +dVB ajw ajI alz @@ -54143,7 +54143,7 @@ ajI arS als arO -oRH +tzw tHc kip rck @@ -54329,16 +54329,16 @@ agA rac ufW msd -gTm -scu -sDV +krd +whP +kNp boe boe boe -pXR -scu -eYQ -hqS +vyn +whP +jZv +osB agX agX boe @@ -54349,11 +54349,11 @@ wUz afS aeg lUy -rbw +ukD qpX qpX pRx -dSb +tAf jSp oTx jhG @@ -54361,7 +54361,7 @@ jhG jhG thS btr -npt +paG ajw ajI ajI @@ -54371,7 +54371,7 @@ alA ajI ajI arQ -oRH +tzw bPy iOX mkW @@ -54581,15 +54581,15 @@ wBS ahB wZW wZW -jvr +dHA dVO -bEq +dGc iuO lPJ whv -dGc +bEq lBq -npt +paG jLc aqu ajI @@ -54792,7 +54792,7 @@ oys ulj aeR ufW -qvf +pXp kqL kff nBK @@ -54811,13 +54811,13 @@ wZW wZW wZW mjY -bEq +dGc lPJ rxV lPJ -dGc +bEq shy -npt +paG xch ajw ajI @@ -54829,7 +54829,7 @@ akQ arS and arO -oRH +tzw qAu cpY fuY @@ -55037,15 +55037,15 @@ wZW wZW wZW wZW -tqh +aTA xvN -bEq +dGc uUJ lPJ mUH -dGc +bEq wca -npt +paG xch ajw alA @@ -55057,7 +55057,7 @@ ajI ajI ajI arQ -oRH +tzw dmZ cpY fuY @@ -55241,15 +55241,15 @@ aeT rac aej boe -kfq -eHw -fLk +qNr +uHl +byy agX agX agX -kfq -fxh -cJY +qNr +dbd +rSn dDa boe agX @@ -55261,11 +55261,11 @@ kqL aeg aeg lUy -jvV +fgO dqo dqo bQA -kBJ +daS eAr ktf iOz @@ -55273,7 +55273,7 @@ iOz iOz ttZ mVg -npt +paG arT ajw ajI @@ -55285,7 +55285,7 @@ ajI alA ajI arQ -oRH +tzw cpY cpY fuY @@ -55469,17 +55469,17 @@ aKj ahv aeg aeg -udZ +gaP woM -poE +jOs yhd dxy agX -oQU +uup idz -iPw +lLe ufW -tIw +jCL aBi aBi aBi @@ -55489,19 +55489,19 @@ aeg aeg ahv ahv -fSA +xVO iIF xch xch -vOG -vcI -wEk -fDo +coZ +gLT +bqu +iOT nnq -hYx -iAv -fQD -ykl +uyh +tAm +lIs +hMR rGZ ajw alz @@ -55513,7 +55513,7 @@ ajI ajI ajI arQ -oRH +tzw mMq rgQ cpY @@ -55697,17 +55697,17 @@ gWE ahv ahv slW -fPJ -scu -lHG +wXM +whP +hBg qqJ aev agX -fPJ -nTT -lAv +wXM +knB +oGY ufW -poE +jOs agX agX agX @@ -55724,10 +55724,10 @@ xch xch xch xch -vOG -iNF -ykl -dGc +coZ +eTa +hMR +bEq eER iIF xch @@ -55741,7 +55741,7 @@ ajI amL ajI arQ -oRH +tzw cpY cpY dmZ @@ -55940,7 +55940,7 @@ agX agX agX agX -bLE +cpQ kHU ahv ahv @@ -55957,7 +55957,7 @@ xch xch sxn uvh -gRm +vtf xch ajw ajI @@ -56154,16 +56154,16 @@ ahv ahv aeg aeg -tIw +jCL aBi aBi aBi aBi aBi -vMA +fmF afS afS -poE +jOs agX agX agX @@ -56184,8 +56184,8 @@ rGZ xch xch xch -dGc bEq +dGc xch jLc aqu @@ -56201,7 +56201,7 @@ als als als aoX -oRH +tzw cpY cpY jik @@ -56382,16 +56382,16 @@ ahv ahv ahv aeg -sDV +kNp boe boe boe boe boe -pXR +vyn afS ahv -fqS +bVe agX agX agX @@ -56413,7 +56413,7 @@ bwk bwk bwk qDx -iJs +psJ hba hba ajw @@ -56429,7 +56429,7 @@ ajI ajI ajI arQ -cCr +btS fSX uYC psc @@ -56635,7 +56635,7 @@ xch xch xch xch -dGc +bEq uve qPx vty @@ -56657,7 +56657,7 @@ ajI alw ajI arQ -cCr +btS uYC eil eil @@ -56870,7 +56870,7 @@ vty vty vty vty -iJs +psJ hba ajw qcz @@ -57089,7 +57089,7 @@ xch xch xch xch -dGc +bEq bNn uve uve @@ -57098,7 +57098,7 @@ vty obC vty vty -iJs +psJ hba hIh uxT @@ -57115,7 +57115,7 @@ ajI arS als aoX -cCr +btS dLY lxX dLY @@ -57293,7 +57293,7 @@ ahv ahv afS ufW -cpQ +bLE agX mrQ boe @@ -57317,7 +57317,7 @@ xch xch xch xch -kJq +xtV tqe fHz txp @@ -57326,7 +57326,7 @@ vty vty glS vty -iJs +psJ dTm hba hba @@ -57521,7 +57521,7 @@ ahv ahv aeg ufW -mbp +nFr agX aut aut @@ -57545,7 +57545,7 @@ xch xch xch xch -lxr +nkJ oWN tqe fHz @@ -57554,7 +57554,7 @@ vty vty vty vty -pas +eGQ hba hba hba @@ -57574,7 +57574,7 @@ arS als als aqM -cCr +btS dLY dLY dLY @@ -57773,7 +57773,7 @@ xch xch xch xch -dGc +bEq rwg oWN rwg @@ -57782,7 +57782,7 @@ uve vty vty vty -iJs +psJ hba hba nWe @@ -58001,7 +58001,7 @@ xch boy rGZ xch -dGc +bEq rwg tqe tqe @@ -58033,12 +58033,12 @@ arS als als arO -cCr +btS dLY dLY fSX dLY -btS +cCr oUa oUa oUa @@ -58261,12 +58261,12 @@ ajI ajI ajI arQ -cCr +btS dLY dLY fED dLY -btS +cCr oUa oUa oUa @@ -58439,7 +58439,7 @@ yhd jas ufW ufW -cpQ +bLE agX boe boe @@ -58456,7 +58456,7 @@ xch xch xch xch -dGc +bEq niF uve tqe @@ -58489,12 +58489,12 @@ ajI alA ajI arR -cCr +btS fSX dLY dLY fSX -btS +cCr oUa jik oUa @@ -58663,7 +58663,7 @@ agX agX agX agX -sOZ +dBR ufW ufW qAf @@ -58684,7 +58684,7 @@ xch xch xch xch -dGc +bEq dNj uve uve @@ -58701,7 +58701,7 @@ vty iRb vty uve -iJs +psJ hba izv ajw @@ -58717,7 +58717,7 @@ ajI ajI alw arQ -cCr +btS dLY gAI dLY @@ -58737,7 +58737,7 @@ oUa oUa uuf oUa -cCr +btS vKt apu apu @@ -58912,7 +58912,7 @@ xch xch eGg xch -dGc +bEq dNj uve uve @@ -58929,7 +58929,7 @@ uve git uve uve -iJs +psJ nWe hba ajw @@ -58951,7 +58951,7 @@ fSX dLY dLY dLY -btS +cCr qns oUa oUa @@ -58965,7 +58965,7 @@ jik oUa oUa oUa -cCr +btS djI dZY djI @@ -59140,7 +59140,7 @@ xch xch xch xch -dGc +bEq vsT uve uve @@ -59157,7 +59157,7 @@ uve tqe uve uve -iJs +psJ hba qYF hIh @@ -59174,12 +59174,12 @@ ajI ajI arQ mqJ -cCr +btS fSX dLY gMe gcn -btS +cCr oUa oUa oUa @@ -59193,7 +59193,7 @@ oUa oUa oUa oUa -cCr +btS rON djI vKt @@ -59234,10 +59234,10 @@ wpw wpw lBw lBw -eTQ +gUq opS opS -pKC +qXE wpw lBw lBw @@ -59368,7 +59368,7 @@ xch xch xch rGZ -dGc +bEq dNj uve uve @@ -59385,7 +59385,7 @@ moM tqe uve uve -iJs +psJ hba iVg hba @@ -59402,12 +59402,12 @@ ajI ajI ala mqJ -auM +vRZ hKk psc xQI dLY -btS +cCr oUa oUa oUa @@ -59421,7 +59421,7 @@ oUa oUa oUa oUa -cCr +btS jik jik rON @@ -59462,10 +59462,10 @@ lBw wpw wpw wpw -eTQ +gUq oov opS -gUq +eTQ lBw lBw lBw @@ -59596,7 +59596,7 @@ xch xch xch xch -dGc +bEq dNj uve uve @@ -59630,7 +59630,7 @@ ajI wkt hWj jRM -cCr +btS lLO eil sXi @@ -59649,7 +59649,7 @@ oUa oUa oUa oUa -cCr +btS jik jik jik @@ -59690,7 +59690,7 @@ wpw qjt wpw wpw -eTQ +gUq tkS lnV qgA @@ -59824,7 +59824,7 @@ ahr xch xch xch -dGc +bEq dNj uve uve @@ -59842,7 +59842,7 @@ txp uve uve uve -iJs +psJ hba nWe hba @@ -59858,11 +59858,11 @@ efX hWj pmz mqJ -cCr +btS dLY xDR sXi -btS +cCr oUa oUa oUa @@ -60052,7 +60052,7 @@ xch xch xch rGZ -dGc +bEq jxR uve uve @@ -60070,7 +60070,7 @@ rwg uve uve uve -iJs +psJ hba hba eNQ @@ -60086,7 +60086,7 @@ vIt ogM ogM mqJ -cCr +btS dLY xDR sXi @@ -60280,7 +60280,7 @@ xch xch xch xch -dGc +bEq dNj uve uve @@ -60321,9 +60321,9 @@ dNN dLY fSX hRS -btS +cCr oUa -uuV +jZZ dLY eOk iBy @@ -60508,7 +60508,7 @@ xch xch rcR xch -dGc +bEq dNj uve uve @@ -60571,7 +60571,7 @@ jik oUa oUa mbN -rGW +dcy jik jik vWs @@ -60795,11 +60795,11 @@ jik jik dLY dLY -wUv +gxN oUa oUa mbN -unT +jST djI uVU jik diff --git a/maps/map_files/LV624/standalone/leftsidepass.dmm b/maps/map_files/LV624/standalone/leftsidepass.dmm index 0b90931f2fd3..21d9023ee5d1 100644 --- a/maps/map_files/LV624/standalone/leftsidepass.dmm +++ b/maps/map_files/LV624/standalone/leftsidepass.dmm @@ -50,7 +50,7 @@ /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/west_river) "au" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_jungle) "aw" = ( /turf/open/gm/coast/beachcorner/south_west, diff --git a/maps/map_files/LV624/standalone/lv-bridge-east.dmm b/maps/map_files/LV624/standalone/lv-bridge-east.dmm index 09f938cadc91..739e4cc01be2 100644 --- a/maps/map_files/LV624/standalone/lv-bridge-east.dmm +++ b/maps/map_files/LV624/standalone/lv-bridge-east.dmm @@ -161,10 +161,10 @@ /area/lv624/ground/jungle/north_jungle) "bw" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "by" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "bz" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -246,7 +246,7 @@ /area/lv624/ground/river/central_river) "Hi" = ( /obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "HT" = ( /obj/structure/flora/jungle/planttop1, @@ -266,7 +266,7 @@ /area/lv624/ground/river/central_river) "Ow" = ( /obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "Rp" = ( /obj/structure/flora/jungle/planttop1, diff --git a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm index d715a9e30fcf..fc2645363f93 100644 --- a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm +++ b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm @@ -63,7 +63,7 @@ /turf/open/gm/river, /area/lv624/ground/river/central_river) "lS" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "lW" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -87,11 +87,11 @@ /area/lv624/ground/river/central_river) "mD" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "mE" = ( /obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_east_jungle) "pF" = ( /turf/open/gm/coast/south, @@ -103,7 +103,7 @@ /area/lv624/ground/river/central_river) "xB" = ( /obj/effect/landmark/crap_item, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_jungle) "yj" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -134,7 +134,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) "Wb" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/north_east_jungle) "Yw" = ( /turf/open/floor/plating/asteroidwarning/north, diff --git a/maps/map_files/LV624/standalone/rightsidepass.dmm b/maps/map_files/LV624/standalone/rightsidepass.dmm index e7ce416997f0..19615bd843eb 100644 --- a/maps/map_files/LV624/standalone/rightsidepass.dmm +++ b/maps/map_files/LV624/standalone/rightsidepass.dmm @@ -25,7 +25,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) "hc" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) "jd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -174,7 +174,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_jungle) "Ov" = ( -/turf/open/gm/dirtgrassborder/north, +/turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "Pb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -190,7 +190,7 @@ /area/lv624/ground/jungle/east_jungle) "PE" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) "PV" = ( /turf/open/gm/dirt, diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index 9e51f09fb628..5ec75167d2c9 100644 --- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm @@ -166,10 +166,10 @@ /area/lv624/ground/jungle/south_west_jungle) "Ge" = ( /obj/structure/flora/jungle/vines/light_2, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) "Gi" = ( -/turf/open/gm/dirtgrassborder/north, +/turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_west_jungle) "IP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -242,7 +242,7 @@ /area/lv624/ground/jungle/south_west_jungle) "RS" = ( /obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) "Sj" = ( /obj/structure/flora/jungle/vines/light_2, diff --git a/maps/map_files/LV624/standalone/sandtemple-se.dmm b/maps/map_files/LV624/standalone/sandtemple-se.dmm index 7e1db79bab61..9339902e99e7 100644 --- a/maps/map_files/LV624/standalone/sandtemple-se.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-se.dmm @@ -154,7 +154,7 @@ /obj/structure/flora/jungle/vines/light_2{ pixel_y = -22 }, -/turf/open/gm/dirtgrassborder/north, +/turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) "Wr" = ( /obj/structure/flora/jungle/vines/light_2, @@ -205,7 +205,7 @@ /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) "Ze" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) "Zi" = ( /obj/structure/flora/jungle/vines/heavy{ diff --git a/maps/predship/huntership.dmm b/maps/predship/huntership.dmm index 93c46def5428..5a7b0c69d5fd 100644 --- a/maps/predship/huntership.dmm +++ b/maps/predship/huntership.dmm @@ -33,12 +33,91 @@ "af" = ( /turf/closed/wall/cult, /area/yautja) +"ah" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"ai" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" + }, +/turf/open/shuttle/predship, +/area/yautja) +"ak" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/shuttle/predship, +/area/yautja) +"al" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"am" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/shuttle/predship, +/area/yautja) "an" = ( /obj/structure/machinery/medical_pod/autodoc{ dir = 4 }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"ao" = ( +/obj/item/clothing/yautja_cape/ceremonial{ + anchored = 1; + color = "#292b29"; + pixel_x = 2; + pixel_y = 32 + }, +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_n"; + pixel_y = 30 + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_n"; + pixel_y = 40 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"aq" = ( +/obj/item/clothing/yautja_cape/ceremonial{ + anchored = 1; + color = "#292b29"; + pixel_x = 2; + pixel_y = 32 + }, +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_joshuu"; + pixel_y = 30 + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_joshuu"; + pixel_y = 40 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "as" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 6 @@ -161,15 +240,6 @@ /obj/structure/machinery/computer/cryopod/yautja, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"aO" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/gun/pistol/m1911/socom{ - pixel_y = 0 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "aP" = ( /obj/structure/machinery/door/airlock/yautja{ dir = 1; @@ -193,6 +263,16 @@ }, /turf/open/shuttle/predship, /area/yautja) +"aV" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/weapon/yautja/knife, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "aW" = ( /obj/structure/machinery/optable, /turf/open/floor/corsat/squareswood/north, @@ -278,6 +358,17 @@ }, /turf/open/shuttle/predship, /area/yautja) +"bn" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "bo" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 @@ -334,6 +425,18 @@ }, /turf/open/shuttle/predship, /area/yautja) +"by" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + pixel_y = 20 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "bz" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -422,6 +525,19 @@ name = "runed hull" }, /area/yautja) +"bO" = ( +/obj/structure/closet/crate{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"bQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/gun/pistol/heavy/co/gold, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "bS" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 9 @@ -480,6 +596,12 @@ /obj/item/stack/sheet/xenochitin, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"ca" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/shuttle/predship, +/area/yautja) "cb" = ( /obj/structure/machinery/door_control{ id = "Cell Lockdown 2"; @@ -1049,6 +1171,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"cZ" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja{ + pixel_y = 2 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja) "da" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1152,31 +1280,19 @@ "dw" = ( /turf/open/gm/dirtgrassborder/south, /area/yautja) -"dz" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/left_centre, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) -"dD" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, -/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, -/turf/open/shuttle/predship, -/area/yautja) "dI" = ( /turf/open/space/basic, /area/space) -"ef" = ( +"dS" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/shuttle/predship, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "eg" = ( /obj/structure/barricade/handrail/strata{ @@ -1192,14 +1308,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"es" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, -/turf/open/shuttle/predship, -/area/yautja) -"et" = ( -/obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "eS" = ( /obj/item/stack/sheet/animalhide/xeno{ anchored = 1; @@ -1413,17 +1521,6 @@ }, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) -"hL" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "hY" = ( /obj/structure/kitchenspike, /obj/item/reagent_container/food/snacks/meat, @@ -1432,26 +1529,9 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/darkred2/west, /area/yautja) -"ig" = ( -/obj/item/clothing/yautja_cape/ceremonial{ - anchored = 1; - color = "#292b29"; - pixel_x = 2; - pixel_y = 32 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_n"; - pixel_y = 30 - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_n"; - pixel_y = 40 - }, -/turf/open/floor/corsat/squareswood/north, +"hZ" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/centre, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "is" = ( /obj/structure/kitchenspike, @@ -1464,6 +1544,23 @@ /obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, /turf/open/floor/darkred2/west, /area/yautja) +"iG" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/shuttle/predship, +/area/yautja) +"iL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/shuttle/predship, +/area/yautja) "iV" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1475,6 +1572,10 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"jp" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "jP" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1517,22 +1618,18 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"ko" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/elder, -/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, -/turf/open/shuttle/predship, +"kf" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ku" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +"kA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) -"kI" = ( -/obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/shuttle/predship, +/obj/item/weapon/gun/pistol/m1911/socom{ + pixel_y = 0 + }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "lr" = ( /obj/structure/lamarr, @@ -1541,10 +1638,6 @@ "lw" = ( /turf/open/gm/dirtgrassborder/desert1, /area/yautja) -"mm" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/right_centre, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "mn" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1628,16 +1721,22 @@ /obj/item/weapon/twohanded/yautja/spear, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"nI" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"nT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/shuttle/predship, +/area/yautja) "nW" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 6 }, /turf/open/shuttle/predship, /area/yautja) -"nX" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/right, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "ob" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1647,6 +1746,20 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"og" = ( +/obj/structure/closet/crate{ + color = "#6b675e" + }, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars_alt, +/obj/item/bracer_attachments/scimitars_alt, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "ov" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1661,12 +1774,6 @@ /obj/item/stack/yautja_rope, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"oC" = ( -/obj/structure/bed/alien{ - color = "#aba9a9" - }, -/turf/open/shuttle/predship, -/area/yautja) "oO" = ( /obj/item/weapon/yautja/chain{ anchored = 1; @@ -1676,32 +1783,13 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"pF" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) -"pN" = ( -/obj/structure/closet/crate{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, +"pb" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/shuttle/predship, /area/yautja) -"pW" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/yautja/knife, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/strata/grey_multi_tiles, +"pn" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/shuttle/predship, /area/yautja) "qj" = ( /obj/structure/surface/rack{ @@ -1711,12 +1799,6 @@ /obj/item/tool/crowbar, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"qp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/shuttle/predship, -/area/yautja) "qS" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1730,6 +1812,14 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"qZ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "rt" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1784,6 +1874,23 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"sz" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/right, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"sE" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "sS" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1812,10 +1919,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"sT" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "sV" = ( /obj/structure/machinery/door/airlock/yautja{ dir = 1; @@ -1827,6 +1930,10 @@ /obj/structure/xenoautopsy/tank/alien, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"tg" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "ti" = ( /obj/structure/shuttle/window{ color = "#6b675e" @@ -1915,10 +2022,6 @@ /obj/item/frame/table/gambling, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"ul" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "um" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1933,6 +2036,10 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"un" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/right_centre, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "uO" = ( /obj/structure/bed/chair/hunter{ dir = 4 @@ -1946,10 +2053,6 @@ /obj/item/weapon/sword/ceremonial, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"vC" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/shuttle/predship, -/area/yautja) "vO" = ( /obj/structure/machinery/shower{ dir = 4 @@ -1966,6 +2069,19 @@ }, /turf/open/shuttle/predship, /area/yautja) +"wF" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "wH" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -2037,6 +2153,14 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"yb" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"yk" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "yr" = ( /obj/structure/window/reinforced{ dir = 8; @@ -2076,14 +2200,6 @@ }, /turf/open/gm/dirtgrassborder/east, /area/yautja) -"zj" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/elder, -/turf/open/shuttle/predship, -/area/yautja) -"zs" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/shuttle/predship, -/area/yautja) "zA" = ( /turf/open/floor/dark2, /area/yautja) @@ -2112,14 +2228,14 @@ /obj/item/frame/table/wood/fancy, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Av" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/shuttle/predship, +/area/yautja) "AA" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Bd" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/shuttle/predship, -/area/yautja) "Be" = ( /obj/structure/machinery/cryopod/no_store/right, /turf/open/shuttle/predship, @@ -2137,10 +2253,6 @@ /obj/item/weapon/yautja/chained/combistick, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Bk" = ( -/obj/structure/machinery/cm_vending/clothing/yautja, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "Br" = ( /turf/open/gm/dirtgrassborder/desert2, /area/yautja) @@ -2155,6 +2267,19 @@ /obj/structure/machinery/prop/yautja/bubbler, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Cd" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/turf/open/shuttle/predship, +/area/yautja) "Cn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2185,20 +2310,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"CQ" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/north, -/turf/open/shuttle/predship, -/area/yautja) -"CT" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "Dk" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2217,19 +2328,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/space, /area/yautja) -"Dw" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, -/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, -/turf/open/shuttle/predship, -/area/yautja) "DF" = ( /obj/item/reagent_container/food/snacks/xenomeatbreadslice, /obj/item/reagent_container/food/snacks/xenomeatbreadslice, @@ -2266,6 +2364,10 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"EP" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, +/turf/open/shuttle/predship, +/area/yautja) "Fh" = ( /turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) @@ -2313,14 +2415,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Go" = ( -/obj/item/weapon/yautja/knife{ - name = "sacred ceremonial dagger"; - pixel_y = 34; - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "Gr" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2351,9 +2445,18 @@ /obj/item/restraint/handcuffs, /turf/open/shuttle/predship, /area/yautja) +"GA" = ( +/obj/structure/machinery/hunt_ground_spawner, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "GM" = ( /turf/open/gm/dirtgrassborder/desert_dug, /area/yautja) +"GP" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/elder, +/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, +/turf/open/shuttle/predship, +/area/yautja) "GY" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2482,10 +2585,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"IV" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/centre, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "Je" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -2523,33 +2622,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Jg" = ( -/obj/structure/closet/crate{ - color = "#6b675e" - }, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars_alt, -/obj/item/bracer_attachments/scimitars_alt, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) -"JC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "JH" = ( /turf/open/floor/strata/grey_multi_tiles, /area/yautja) @@ -2561,30 +2633,14 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"JZ" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja{ - pixel_y = 2 +"Ke" = ( +/obj/item/weapon/yautja/knife{ + name = "sacred ceremonial dagger"; + pixel_y = 34; + anchored = 1 }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Ku" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/shuttle/predship, -/area/yautja) -"Kx" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "KD" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2632,9 +2688,18 @@ /obj/structure/machinery/vending/dinnerware, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"LX" = ( -/obj/structure/prop/pred_flight, -/turf/open/floor/corsat/squareswood/north, +"Ls" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/shuttle/predship, +/area/yautja) +"LB" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Mb" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2648,20 +2713,9 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Mz" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/turf/open/floor/strata/grey_multi_tiles, +"Mi" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/shuttle/predship, /area/yautja) "ME" = ( /obj/structure/stairs/perspective{ @@ -2680,25 +2734,14 @@ "NA" = ( /turf/open/floor/darkred2, /area/yautja) -"NS" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja{ - pixel_y = 2 - }, -/turf/open/floor/strata/grey_multi_tiles/southwest, -/area/yautja) -"Oj" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, +"NH" = ( +/obj/structure/machinery/cm_vending/clothing/yautja, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"Ob" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/elder, +/turf/open/shuttle/predship, +/area/yautja) "Ok" = ( /turf/open/gm/dirtgrassborder/desert, /area/yautja) @@ -2734,15 +2777,6 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Pv" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/kutjevo_smooth, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "Qi" = ( /obj/structure/machinery/gibber, /turf/open/floor/darkred2/southeast, @@ -2769,21 +2803,16 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Rj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"Rq" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja{ + pixel_y = 2 }, -/obj/item/weapon/gun/pistol/heavy/co/gold, -/turf/open/floor/corsat/squareswood/north, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "RE" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, /turf/open/floor/darkred2/southeast, /area/yautja) -"RG" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "RS" = ( /turf/open/gm/dirtgrassborder/north, /area/yautja) @@ -2796,17 +2825,13 @@ }, /turf/open/shuttle/predship, /area/yautja) -"SW" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth, -/turf/open/shuttle/predship, +"SO" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/left_centre, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"TR" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, +"Ul" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/floor/strata/grey_multi_tiles, +/turf/open/shuttle/predship, /area/yautja) "Ut" = ( /obj/structure/surface/rack{ @@ -2843,10 +2868,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"UJ" = ( -/obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "UR" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -2913,10 +2934,18 @@ /obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Xc" = ( -/obj/structure/platform/metal/kutjevo_smooth/west, +"WD" = ( +/obj/structure/machinery/hunting_ground_selection, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"WQ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "Xg" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2928,12 +2957,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Xl" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/shuttle/predship, -/area/yautja) "Xp" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -2973,27 +2996,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/yautja) -"XA" = ( -/obj/item/clothing/yautja_cape/ceremonial{ - anchored = 1; - color = "#292b29"; - pixel_x = 2; - pixel_y = 32 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_joshuu"; - pixel_y = 30 - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_joshuu"; - pixel_y = 40 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "XP" = ( /obj/structure/machinery/cryopod/no_store, /turf/open/floor/strata/grey_multi_tiles, @@ -3015,10 +3017,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"Zq" = ( -/obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/shuttle/predship, -/area/yautja) "Zs" = ( /obj/structure/machinery/door/airlock/yautja/secure{ name = "\improper Heavy Armory" @@ -3052,9 +3050,15 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"ZQ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat/squareswood/north, +"ZR" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) (1,1,1) = {" @@ -4154,7 +4158,7 @@ bj as bJ aY -pF +dS cj bL an @@ -4439,7 +4443,7 @@ aa ae bj bj -ZQ +ah bL bL bj @@ -4936,15 +4940,15 @@ aa ac bj bj -CT -pW -hL +ZR +aV +bn bj bj ZM -pN +bO bL -pN +bO ZM bj bj @@ -5010,9 +5014,9 @@ bj bj cP JH -Mz +al bj -et +jp FG FG FG @@ -5079,16 +5083,16 @@ aa aa ad bj -zj +Ob cP JH JH -ku -RG -oC -oC -oC -oC +qZ +kf +ai +ai +ai +ai cP wQ bj @@ -5151,7 +5155,7 @@ aa bj bj bj -ko +GP cP cP JH @@ -5224,15 +5228,15 @@ aa ac bj bj -kI -Bd +Ul +Mi cP df bL -zs -ef -ef -Ku +iL +ak +ak +nT cP wQ bj @@ -5297,15 +5301,15 @@ ad bj bj bj -JC +wF cP -TR -UJ -Bd -Xl -Xl -SW -kI +WQ +nI +Mi +ca +ca +Av +Ul bj bj JH @@ -5343,7 +5347,7 @@ bL bL jP bj -XA +aq cP cP cP @@ -5368,20 +5372,20 @@ bj bj bj bj -Go +Ke df cP bj bj -Dw +iG ME ME -Pv +LB bj bj bj JH -Rj +bQ ab cP cP @@ -5439,7 +5443,7 @@ aa aa ac bj -Bk +NH JH df cP @@ -5511,11 +5515,11 @@ aa aa ae bj -dz +SO JH df JH -sT +tg cP cP Fh @@ -5550,11 +5554,11 @@ bL bL rH ha -RS +dw ZI Ok Br -dw +RS ha Ip bL @@ -5567,7 +5571,7 @@ ct cP bL hI -LX +WD bL bL cP @@ -5583,7 +5587,7 @@ aa aa ae bj -IV +hZ cP df cP @@ -5591,7 +5595,7 @@ aw cP cP Fh -NS +cZ Fh cP ti @@ -5622,18 +5626,18 @@ cK cP rH fS -RS +dw Ok GM Ok -dw +RS fS Ip cP cP sx JH -JZ +Rq JH sx cP @@ -5655,11 +5659,11 @@ aa aa ae bj -mm +un JH df JH -sT +tg cP cP Fh @@ -5694,11 +5698,11 @@ bL bL rH hJ -RS +dw lw Ok nd -dw +RS hJ Ip bL @@ -5711,7 +5715,7 @@ ct cP bL hI -LX +GA bL bL cP @@ -5727,7 +5731,7 @@ aa aa ad bj -nX +sz JH df cP @@ -5800,15 +5804,15 @@ bj bj bj bj -Go +Ke df cP bj bj -dD +Cd ME ME -Pv +LB bj bj bj @@ -5873,20 +5877,20 @@ ac bj bj bj -Oj +sE cP -ku -Xc -vC -qp -qp -CQ -Zq +qZ +yk +pn +am +am +Ls +pb bj bj JH bL -aO +kA bL bL cP @@ -5919,7 +5923,7 @@ bL bL fF bj -ig +ao cP cP cP @@ -5944,15 +5948,15 @@ aa ad bj bj -Zq -vC +pb +pn cP df bL -zs -ef -ef -Ku +iL +ak +ak +nT cP wQ bj @@ -6015,7 +6019,7 @@ aa bj bj bj -zj +Ob cP cP JH @@ -6087,16 +6091,16 @@ aa aa ac bj -es +EP cP JH JH -TR -ul -oC -oC -oC -oC +WQ +yb +ai +ai +ai +ai cP wQ bj @@ -6162,9 +6166,9 @@ bj bj cP JH -Mz +al bj -et +jp FG FG FG @@ -6232,15 +6236,15 @@ aa ad bj bj -CT -pW -hL +ZR +aV +bn bj bj ZM -pN +bO bL -pN +bO ZM bj bj @@ -6765,7 +6769,7 @@ bv bv bv bj -Jg +og JH JH JH @@ -7047,11 +7051,11 @@ bj cP cP bj -Kx +by bj -Kx +by bj -Kx +by bj bj bj diff --git a/maps/templates/lazy_templates/pred/jungle_moon.dmm b/maps/templates/lazy_templates/pred/jungle_moon.dmm new file mode 100644 index 000000000000..afff18c30099 --- /dev/null +++ b/maps/templates/lazy_templates/pred/jungle_moon.dmm @@ -0,0 +1,13991 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"ah" = ( +/obj/item/stool, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"ak" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"am" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/meatsteak{ + desc = "A chunk of meat taken from the most worthy foe that could be found in the known universe. Nothing more than a meal for a noble Elder."; + name = "Primordial Empress Steak"; + pixel_y = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"ar" = ( +/turf/open/gm/dirtgrassborder, +/area/yautja_grounds/jungle/west) +"at" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"ax" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"aG" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"aH" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"aO" = ( +/turf/open/gm/coast/east, +/area/yautja_grounds/south) +"aZ" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"bi" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/jungle/east) +"bl" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/soap, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"bn" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"bo" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"bx" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"bz" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle) +"bC" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"bD" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"bE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"bG" = ( +/obj/structure/kitchenspike{ + icon_state = "spikebloodygreen" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"bH" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"bJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"bN" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/yautja_grounds/jungle/west) +"bT" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"cr" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"cA" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"cG" = ( +/turf/open/gm/river, +/area/yautja_grounds/temple) +"cK" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"cQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"cV" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"cW" = ( +/turf/open/gm/coast/south, +/area/yautja_grounds/temple/entrance) +"cZ" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/storage/backpack/yautja, +/obj/item/storage/backpack/yautja, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/jungle) +"dd" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"di" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"du" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/yautja_grounds/jungle) +"dO" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle/east) +"dQ" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"ec" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"ej" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"ep" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/yautja_grounds/south) +"es" = ( +/obj/effect/decal/remains/xeno, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"eE" = ( +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"eG" = ( +/obj/structure/prop/brazier, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"eY" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"fb" = ( +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle) +"fc" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/yautja_grounds/temple/entrance) +"fk" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/device/healthanalyzer/alien, +/obj/item/device/healthanalyzer/alien, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"fl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"fp" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"fq" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/yautja_grounds/south) +"fr" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"ft" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"fv" = ( +/obj/structure/prop/brazier, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"fy" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"fC" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"fG" = ( +/turf/open/gm/coast/beachcorner/north_east, +/area/yautja_grounds/south) +"fL" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"fT" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/yautja_grounds/south) +"gc" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ge" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/temple) +"gf" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"gg" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/west) +"gh" = ( +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"gp" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/yautja_grounds/jungle) +"gs" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"gt" = ( +/obj/effect/alien/weeds/node/feral, +/turf/open/gm/dirt, +/area/yautja_grounds/caves) +"gy" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"gD" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 24 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"gE" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"gJ" = ( +/turf/open/gm/coast/west, +/area/yautja_grounds/temple/entrance) +"gN" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"gP" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"gU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ha" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/yautja_grounds/caves) +"hc" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"hj" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/jungle) +"hw" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"hx" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"hM" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"hN" = ( +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"ig" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"ih" = ( +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ik" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"it" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/yautja_grounds/jungle) +"iz" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"iC" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"iJ" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"iV" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"jb" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/closed/wall/rock/brown, +/area/yautja_grounds/temple/entrance) +"jd" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"jh" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/yautja_grounds/jungle) +"jj" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"jl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"jo" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ju" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"jx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"jF" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"jI" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"jL" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"jN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jO" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"kh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"kp" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"kt" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle) +"kv" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"kC" = ( +/turf/open/gm/dirt/desert3, +/area/yautja_grounds/south) +"kJ" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/gm/dirt, +/area/yautja_grounds/caves) +"kM" = ( +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle/west) +"kO" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"kT" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"kW" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"kX" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"kY" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"kZ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"lb" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/caves) +"lh" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"li" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"lr" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/temple/entrance) +"lI" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple) +"lN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"lP" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"lQ" = ( +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"lR" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/yautja_grounds/temple) +"lZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"ma" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"md" = ( +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"mh" = ( +/turf/open/gm/coast/west, +/area/yautja_grounds/south) +"mo" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"mt" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"mD" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/jungle/west) +"mE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"mK" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"mM" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"mN" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"mP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"nc" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room) +"nm" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"nn" = ( +/turf/open/gm/coast, +/area/yautja_grounds/south) +"nq" = ( +/turf/open/gm/river, +/area/yautja_grounds/temple/entrance) +"ns" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"nu" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"nA" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"nH" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"nI" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/yautja_grounds/south) +"nO" = ( +/turf/open/gm/coast/west, +/area/yautja_grounds/temple) +"nW" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"of" = ( +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/jungle) +"oh" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/jungle/north) +"on" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"oq" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + color = "#2e1e21" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"os" = ( +/turf/open/gm/coast/east, +/area/yautja_grounds/jungle) +"ot" = ( +/turf/open/gm/dirtgrassborder/west, +/area/yautja_grounds/jungle/east) +"oG" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"oL" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/yautja_grounds/south) +"oM" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/yautja_grounds/south) +"oV" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/jungle/west) +"pa" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/jungle) +"pl" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"pm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/yautja_grounds/jungle) +"py" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"pz" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_x = -28 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"pK" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/jungle) +"pO" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"pR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"pT" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"pU" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"pV" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"qg" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"qh" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"qk" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"qo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/weldingtool/hugetank, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"qp" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"qz" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple/entrance) +"qD" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 24 + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"qF" = ( +/turf/open/gm/dirt/desert1, +/area/yautja_grounds/jungle/west) +"qI" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/yautja_grounds/jungle/west) +"qP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"qT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"rf" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"rh" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"rj" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 2 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"rs" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/rock/brown, +/area/yautja_grounds/jungle) +"rv" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"rz" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/east) +"rR" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/south) +"rX" = ( +/turf/open/gm/coast/east, +/area/yautja_grounds/temple/entrance) +"sb" = ( +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/south) +"sc" = ( +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"se" = ( +/turf/open/floor/corsat/squareswood, +/area/yautja_grounds/temple/entrance) +"sf" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle) +"su" = ( +/turf/open/gm/coast/beachcorner/north_east, +/area/yautja_grounds/temple/entrance) +"sy" = ( +/turf/open/gm/dirtgrassborder, +/area/yautja_grounds/jungle) +"sA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/meatballsoup{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"sB" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"sD" = ( +/turf/open/gm/dirtgrassborder/west, +/area/yautja_grounds/south) +"sT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"tb" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"tj" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"tl" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/yautja_grounds/south) +"tm" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle/east) +"tw" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/desert1, +/area/yautja_grounds/jungle) +"tC" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"tI" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"tO" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"tY" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ue" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"uh" = ( +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"ui" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"ul" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"up" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder, +/area/yautja_grounds/south) +"uq" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"us" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ut" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/yautja_grounds/south) +"uu" = ( +/obj/structure/kitchenspike{ + icon_state = "spikebloody" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/south) +"uB" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/river, +/area/yautja_grounds/temple/entrance) +"uH" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/coast/beachcorner/south_west, +/area/yautja_grounds/south) +"uI" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 9 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"uJ" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"uL" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"uQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/south) +"uS" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"vf" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/west) +"vo" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"vA" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/yautja_grounds/temple/entrance) +"vL" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"vM" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"vN" = ( +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"vY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"wd" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + color = "#2e1e21" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"wg" = ( +/turf/open/gm/coast/south, +/area/yautja_grounds/jungle) +"wi" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + color = "#2e1e21" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"wn" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"wr" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"ws" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"wt" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"wy" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + color = "#2e1e21" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/south) +"wz" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/yautja_grounds/south) +"wG" = ( +/turf/open/gm/dirt/desert2, +/area/yautja_grounds/jungle) +"wI" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"wN" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"wR" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"xa" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"xe" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"xh" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle/east) +"xj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"xn" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/yautja_grounds/south) +"xy" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/yautja_grounds/jungle) +"xz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"xB" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple) +"xC" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"xF" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"xJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle) +"yc" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"yd" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"yf" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/mineral/sandstone/runed, +/area/yautja_grounds/south) +"yk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood, +/area/yautja_grounds/temple/entrance) +"ym" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/caves) +"yo" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt, +/area/yautja_grounds/temple) +"yI" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"yJ" = ( +/turf/open/gm/dirt/desert_dug, +/area/yautja_grounds/south) +"yM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"yO" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"yP" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"yV" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/yautja_grounds/temple/entrance) +"zd" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"ze" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"zf" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"zj" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/closed/wall/mineral/sandstone/runed, +/area/yautja_grounds/south) +"zl" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_x = -28 + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"zm" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"zn" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple) +"zu" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"zQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"Ae" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/yautja_grounds/jungle/east) +"Ag" = ( +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"Ah" = ( +/turf/open/gm/river, +/area/yautja_grounds/south) +"Aj" = ( +/turf/open/gm/dirtgrassborder/west, +/area/yautja_grounds/jungle) +"Ak" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Am" = ( +/turf/open/gm/dirtgrassborder/west, +/area/yautja_grounds/jungle/west) +"Aq" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"As" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 2 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"AN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"AO" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"AP" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"AS" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/yautja_grounds/south) +"Bz" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/yautja_grounds/south) +"BB" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"BI" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"BR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"BS" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"BX" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/sheet/animalhide/xeno{ + anchored = 1; + name = "Warrior Hide"; + pixel_y = 30 + }, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/jungle) +"Cf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = 5 + }, +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = -7 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/jungle) +"Cl" = ( +/obj/effect/alien/weeds/node/feral, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"Co" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"Cv" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/yautja_grounds/jungle) +"Cx" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/yautja_grounds/south) +"CE" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/yautja_grounds/jungle) +"CK" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"CN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/hand_labeler, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"CS" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"CU" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"CV" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/yautja_grounds/temple/entrance) +"Db" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Dj" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"DG" = ( +/turf/open/gm/dirt/desert_dug, +/area/yautja_grounds/jungle) +"DK" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"DM" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"DP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Eh" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Ek" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/yautja_grounds/temple) +"Em" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/yautja_grounds/jungle) +"Eq" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/yautja_grounds/south) +"Ex" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"EF" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"EN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"EP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"ET" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + color = "#2e1e21" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"Fc" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/yautja_grounds/jungle/east) +"Fh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Fj" = ( +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/west) +"Fo" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Fs" = ( +/obj/item/roller/bedroll, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/east) +"Fz" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"FE" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"FG" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"FK" = ( +/obj/structure/prop/brazier, +/turf/open/floor/corsat/squareswood, +/area/yautja_grounds/temple) +"FU" = ( +/turf/open/gm/coast/beachcorner2/east, +/area/yautja_grounds/south) +"FZ" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/yautja_grounds/temple) +"Gb" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"Gc" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"Gj" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"Gk" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/yautja_grounds/jungle) +"Gz" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"GJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"GK" = ( +/turf/open/gm/coast/south, +/area/yautja_grounds/temple) +"GN" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"HA" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/yautja_grounds/jungle/north) +"HB" = ( +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/jungle/west) +"HE" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"HF" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"HI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"HJ" = ( +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"HK" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"HL" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"HN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/yautja_grounds/temple) +"HP" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"HV" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"HW" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Ia" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Ib" = ( +/turf/open/gm/coast/south, +/area/yautja_grounds/south) +"Ij" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/yautja_grounds/temple/entrance) +"Ir" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_x = -28 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"IU" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"IZ" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Jl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Jm" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"Jr" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Jt" = ( +/turf/open/gm/dirt/desert3, +/area/yautja_grounds/jungle/west) +"Jv" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Jw" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/west, +/area/yautja_grounds/jungle/west) +"Jz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"JA" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"JC" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"JF" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"JG" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"JH" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/south) +"JI" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 24 + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"JJ" = ( +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle/east) +"JR" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"JS" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Kf" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Ki" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"Km" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Kn" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/temple) +"Ko" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/jungle) +"Ks" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"KD" = ( +/turf/open/gm/dirt/desert1, +/area/yautja_grounds/south) +"KE" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/desert2, +/area/yautja_grounds/jungle) +"KP" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"KX" = ( +/obj/structure/prop/brazier, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Ld" = ( +/turf/closed/wall/rock/brown, +/area/yautja_grounds/south) +"Lg" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle) +"Ll" = ( +/obj/structure/prop/brazier, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Ln" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"Lu" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"LF" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"LL" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/yautja_grounds/temple) +"LN" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/yautja_grounds/south) +"LV" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"LW" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"LX" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"Ml" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/yautja_grounds/south) +"My" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"MC" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"MK" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"MS" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"MW" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Ng" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/west, +/area/yautja_grounds/jungle/east) +"Ni" = ( +/turf/open/gm/coast/east, +/area/yautja_grounds/temple) +"No" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Nq" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/yautja_grounds/south) +"Nv" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/yautja_grounds/jungle/east) +"NA" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/north) +"NB" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/jungle) +"NE" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"NI" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"NJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"Oc" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Oe" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/yautja_grounds/temple/entrance) +"Of" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/yautja_grounds/jungle/east) +"Og" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/yautja_grounds/jungle/west) +"Oj" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/yautja_grounds/jungle) +"Or" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"OC" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/east) +"OJ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"OL" = ( +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/south) +"OP" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"OR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/west) +"OW" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_x = -28 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"Pe" = ( +/turf/open/gm/river, +/area/yautja_grounds/jungle) +"Pg" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Pr" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple/entrance) +"Py" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"PA" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"PC" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"PJ" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/yautja_grounds/south) +"PK" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"PN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"PT" = ( +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"Qb" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Qi" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/hatchet, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"Qt" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt, +/area/yautja_grounds/south) +"Qx" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Qz" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"QD" = ( +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/south) +"QE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"QF" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"QK" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"QS" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"QU" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/yautja_grounds/jungle/west) +"QW" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"QY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Rf" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/east) +"Rg" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Rs" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/yautja_grounds/jungle/west) +"Rx" = ( +/obj/item/stool, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"RA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"RK" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/south) +"RL" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"RR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Sc" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + desc = "The oranges aren't done yet.. this sucks."; + name = "orange tree"; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/yautja_grounds/jungle/west) +"Se" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Sg" = ( +/obj/structure/flora/jungle/plantbot1{ + icon_state = "alienplant1"; + luminosity = 2 + }, +/turf/open/gm/river, +/area/yautja_grounds/south) +"Sk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"Sl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Sm" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Ss" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Su" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/yautja_grounds/south) +"SD" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/yautja_grounds/south) +"SP" = ( +/turf/open/gm/dirtgrassborder/east, +/area/yautja_grounds/jungle/east) +"SQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"ST" = ( +/turf/open/gm/dirt/desert2, +/area/yautja_grounds/jungle/west) +"SU" = ( +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"SW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"SY" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"Tf" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"Th" = ( +/obj/structure/prop/brazier, +/turf/open/floor/engine/cult, +/area/yautja_grounds/jungle) +"Ti" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"To" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/yautja_grounds/south) +"Tp" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Ts" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Tu" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/north) +"Ty" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + color = "#2e1e21" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/jungle) +"TE" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/south) +"Ub" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"Ue" = ( +/turf/open/gm/dirtgrassborder, +/area/yautja_grounds/south) +"Uk" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"Uu" = ( +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle) +"Uy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/storage/backpack/yautja, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"Vg" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/yautja_grounds/temple/entrance) +"Vl" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/yautja_grounds/jungle/east) +"Vn" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Vt" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"Vy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/storage/box/monkeycubes/neaeracubes{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/storage/box/monkeycubes/farwacubes{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = -4 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room) +"Vz" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"VB" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"VU" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Wp" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Wq" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/yautja_grounds/jungle/east) +"Wr" = ( +/turf/open/gm/coast/north, +/area/yautja_grounds/temple) +"Ws" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/yautja_grounds/south) +"Wv" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/yautja_grounds/temple) +"Ww" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"Wx" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"WA" = ( +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"WF" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"WH" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle) +"WK" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"WO" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"WR" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"WT" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/south) +"Xh" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/north) +"Xj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Xk" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Xl" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle/east) +"Xv" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"Xw" = ( +/obj/structure/showcase{ + color = "#FFE55C"; + desc = "This statue seems taller and somehow mightier than the others.. it makes you want to steer away from it."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "massive statue" + }, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_n"; + name = "unsettling stone mask"; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_n"; + name = "gilded clan armor" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Xx" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/yautja_grounds/jungle) +"Xy" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"XA" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/south) +"XC" = ( +/turf/open/gm/dirt, +/area/yautja_grounds/jungle/west) +"XD" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/yautja_grounds/jungle/west) +"XM" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/south) +"XP" = ( +/obj/item/tool/kitchen/tray{ + pixel_y = -5 + }, +/obj/item/reagent_container/food/snacks/bearmeat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room) +"XQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"XS" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/yautja_grounds/south) +"XT" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"XX" = ( +/obj/structure/flora/jungle/vines, +/turf/closed/wall/rock/brown, +/area/yautja_grounds/jungle) +"Ya" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/yautja_grounds/jungle) +"Yk" = ( +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle/east) +"Yv" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"Yw" = ( +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/jungle) +"Yy" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/south) +"YB" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/gm/dirtgrassborder, +/area/yautja_grounds/jungle) +"YC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/meatsteak{ + desc = "A chunk of meat taken from the most worthy foe that could be found in the known universe. Nothing more than a meal for a noble Elder."; + name = "Primordial Empress Steak"; + pixel_y = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"YE" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/north, +/area/yautja_grounds/south) +"YL" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/closed/wall/strata_ice/jungle, +/area/yautja_grounds/jungle) +"YO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"YU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood, +/area/yautja_grounds/temple/entrance) +"YZ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance) +"Zm" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/yautja_grounds/jungle) +"Zo" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/grass2, +/area/yautja_grounds/jungle/east) +"Zu" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/yautja_grounds/south) +"ZA" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance) +"ZG" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/grass/grass1, +/area/yautja_grounds/jungle) +"ZM" = ( +/turf/open/floor/corsat/squareswood, +/area/yautja_grounds/temple) + +(1,1,1) = {" +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +QU +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +"} +(2,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(3,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +zn +zn +zn +zn +zn +Kn +Kn +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(4,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +lI +gN +gN +gN +gN +gN +gN +lI +zn +Kn +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(5,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +zn +zn +zn +zn +Kn +Kn +Kn +Kn +Kn +zn +gN +gN +ah +ah +ah +ah +gN +gN +zn +Kn +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(6,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +fv +zn +fv +zn +fv +zn +zn +zn +zn +Kn +Kn +zn +gN +gh +Xj +HI +sA +HI +gh +gN +zn +Kn +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(7,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +gh +gh +gh +ik +gh +ik +gh +ik +gh +gh +lI +zn +Kn +zn +gN +gh +HI +YC +HI +Xj +gh +gN +zn +Kn +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(8,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +gh +gh +gh +ik +gh +ik +gh +ik +gh +gN +gh +zn +Kn +zn +gN +gN +ah +ah +ah +ah +gN +gN +zn +Kn +oV +oV +oV +oV +oV +oV +oV +qz +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(9,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +lI +wd +wd +lI +zn +zn +zn +zn +zn +gN +gh +gh +zn +Kn +zn +lI +gN +gN +gN +gN +gN +gN +lI +zn +Kn +lr +qz +qz +qz +qz +qz +qz +qz +nq +nq +nq +lr +lr +lr +lr +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(10,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +zn +zn +gN +gN +gN +gh +gh +gN +gN +gN +zn +zn +zn +zn +gh +gh +zn +Kn +Kn +zn +zn +zn +Kf +Kf +zn +zn +zn +Kn +Kn +qz +Pr +se +se +SU +SU +SU +SU +Gj +nq +vA +nq +lr +lr +lr +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(11,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +zn +KX +ZM +cG +cG +cG +cG +cG +cG +ZM +KX +zn +Kn +zn +gh +gh +zn +Kn +Kn +Kn +Kn +lI +gN +gN +lI +Kn +Kn +Kn +zn +qz +SU +Sk +Sk +YU +se +eG +SU +ZA +nq +nq +uB +nq +lr +lr +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(12,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +zn +ZM +cG +cG +cG +cG +cG +cG +cG +cG +ZM +zn +zn +zn +gh +gh +zn +zn +zn +zn +Kn +zn +oq +oq +zn +Kn +Kn +Kn +zn +SU +ZA +nq +nq +nq +jl +SU +SU +Tf +nq +nq +nq +nq +cW +cr +XC +XC +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +oV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(13,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +Xy +cG +LL +Ni +Ni +Ni +Ni +Ni +Ni +Ek +cG +jN +zn +zn +gh +gh +zn +FK +gh +zn +zn +zn +gh +gh +zn +zn +zn +zn +zn +se +ZA +nq +nq +nq +jl +SU +ZA +su +rX +rX +rX +rX +Ij +cr +XC +XC +XC +XC +Xv +oV +oV +oV +oV +oV +oV +oV +XC +qI +Am +Am +Am +bN +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(14,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +iJ +cG +GK +ge +ge +ge +ge +HN +ge +Wr +cG +jN +gh +lI +gh +gh +zn +gh +gh +gh +lI +gh +gN +gN +FK +gh +gh +gh +zn +dd +SU +QE +QE +QE +SU +SU +ZA +cr +cr +cr +cr +eG +Lu +Jm +XC +XC +XC +XC +XC +oV +oV +oV +oV +vf +ar +XC +XC +XC +XC +XC +XC +IU +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(15,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +Xy +cG +GK +ge +yo +ge +ge +ge +ge +Wr +qP +gN +gh +gh +gN +gh +lI +xz +lP +gN +gh +gh +ZM +ZM +gN +gN +gN +gN +lI +xa +YZ +SU +eG +se +SU +SU +SU +QE +on +QE +QE +QE +SU +kh +XC +XC +XC +XC +XC +XC +oV +oV +vf +gg +ar +XC +XC +XC +XC +XC +XC +XC +zd +zd +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(16,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +iJ +cG +GK +ge +ge +ge +ge +xB +ge +Wr +jN +gh +gN +gh +gN +gh +wd +gN +Fh +gN +gh +gh +gh +ZM +ZM +ZM +ZM +ZM +ET +dd +XT +dd +SU +SU +se +se +SU +dd +dd +dd +dd +dd +dd +eY +XC +XC +XC +XC +XC +XC +XC +qI +Jw +Am +bN +XC +XC +XC +XC +XC +XC +XC +zd +zd +zd +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(17,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +fv +cG +GK +ge +ge +ge +ge +ge +ge +Wr +jN +gh +gh +gN +gh +gN +zn +gN +Sl +gN +gN +gN +gN +gN +gh +gN +gN +gN +qz +dd +XT +dd +dd +dd +dd +dd +se +SU +SU +SU +SU +SU +SU +XT +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(18,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +iJ +cG +GK +ge +xB +ge +ge +ge +ge +Wr +jN +gh +gN +gh +gN +gh +wd +gN +Fh +gN +gh +gh +gh +ZM +ZM +ZM +ZM +ZM +ET +dd +XT +dd +SU +SU +se +se +SU +dd +dd +dd +dd +dd +dd +eY +XC +XC +XC +qF +XC +XC +XC +XC +qF +XC +XC +XC +XC +XC +XC +XC +XC +XC +zd +yJ +kC +kC +kC +zd +zd +KD +zd +zd +zd +zd +LN +mh +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(19,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +uI +cG +GK +ge +HN +ge +ge +ge +ge +Wr +ul +gN +gh +gh +gN +gh +lI +rf +Jl +gN +gh +gh +ZM +ZM +gN +gN +gN +gN +lI +fl +Gc +SU +eG +se +SU +SU +SU +Sk +Sk +Sk +jx +Sk +SU +kh +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +Fz +LN +mh +mh +xn +zd +zd +zd +zd +zd +zd +LN +XS +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(20,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +iJ +cG +GK +ge +ge +ge +ge +ge +ge +Wr +cG +jN +gh +lI +gh +gh +zn +gh +gh +gh +lI +gh +gN +gN +FK +gh +gh +gh +zn +dd +SU +Sk +Sk +Sk +SU +SU +ZA +cr +cr +cr +cr +eG +EF +Vg +CK +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +Jt +XC +XC +XC +XC +LN +XS +Ah +Ah +FU +uH +zd +zd +zd +zd +zd +nn +Ah +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(21,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +uI +cG +lR +nO +nO +nO +nO +nO +nO +FZ +cG +jN +zn +zn +gh +gh +zn +FK +gh +zn +zn +zn +gh +gh +zn +zn +zn +zn +zn +se +ZA +nq +nq +nq +jl +SU +ZA +Oe +gJ +gJ +gJ +gJ +fc +cr +XC +XC +XC +XC +XC +XC +kZ +XC +IU +XC +XC +XC +XC +XC +XC +XC +XC +XC +nn +Ah +nI +Ah +Ah +Ib +zd +zd +zd +zd +zd +nn +nI +Ah +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(22,1,1) = {" +Wv +Kn +Kn +Kn +Kn +zn +zn +ZM +cG +cG +cG +cG +cG +cG +cG +cG +ZM +zn +zn +zn +gh +gh +zn +zn +zn +zn +Kn +zn +gh +gh +zn +Kn +Kn +Kn +zn +SU +ZA +nq +nq +nq +jl +SU +SU +Gj +nq +uB +nq +nq +yV +fc +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +nn +Ah +Ah +Ah +Ah +FU +xn +zd +zd +zd +zd +nn +Ah +Ah +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(23,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +zn +KX +ZM +cG +cG +cG +cG +cG +cG +ZM +KX +zn +Kn +zn +gh +gh +zn +Kn +Kn +Kn +Kn +zn +gh +gh +zn +Kn +Kn +Kn +zn +qz +SU +QE +QE +yk +se +eG +SU +ZA +nq +nq +CV +nq +nq +cW +XC +XC +XC +XC +IU +XC +XC +XC +XC +XC +XC +XC +XD +HB +HB +Rs +XC +XC +fG +Su +Ws +aO +Su +Ah +FU +xn +zd +zd +zd +nn +Ah +Ah +Ah +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(24,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +zn +zn +gN +gN +gN +gh +gh +gN +gN +gN +zn +zn +zn +zn +gh +gh +zn +Kn +Kn +zn +zn +zn +gh +gh +zn +zn +zn +Kn +Kn +qz +Pr +se +se +SU +SU +SU +SU +Tf +nq +nq +nq +nq +nq +cW +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XD +Og +Fj +Fj +ar +XC +XC +Ks +nn +Ib +Fz +nn +Sg +Ah +FU +mh +xn +zd +nn +Ah +Ah +Ah +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(25,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +lI +wd +wd +lI +zn +zn +zn +zn +zn +gN +gh +gh +zn +Kn +zn +zn +fv +ZM +gh +gh +ZM +fv +zn +zn +Kn +qz +qz +qz +qz +qz +qz +qz +qz +nq +nq +nq +nq +vA +nq +lr +oV +pT +XC +XC +XC +XC +ST +XC +XC +XC +XC +kM +Fj +OR +Sc +bN +XC +XC +zd +nn +FU +mh +XS +Ah +Ah +Ah +Ah +FU +mh +XS +Ah +Ah +nI +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(26,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +gh +gh +gh +ik +gh +ik +gh +ik +gh +gN +gh +zn +Kn +zn +gh +gh +ZM +ZM +ZM +ZM +gh +gh +zn +Kn +lr +lr +lr +lr +lr +lr +lr +qz +lr +lr +lr +nq +nq +lr +lr +oV +XC +XC +XC +IU +XC +XC +XC +XC +XC +XC +qI +Am +Am +bN +IU +XC +XC +zd +fG +Su +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(27,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +gh +gh +gh +ik +gh +ik +gh +ik +gh +gh +lI +zn +Kn +zn +gh +ZM +gh +gh +gh +gh +ZM +gh +zn +Kn +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +XC +IU +XC +XC +XC +XC +XC +XC +XC +EN +XC +XC +XC +XC +XC +XC +XC +XC +zd +zd +fG +Su +nI +Ah +Ah +Ws +aO +aO +aO +aO +aO +aO +Su +Ah +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(28,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +fv +zn +fv +zn +fv +zn +zn +zn +zn +Kn +zn +zn +gh +ZM +gh +gh +gh +gh +ZM +gh +zn +zn +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +jb +lr +lr +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +XC +zd +zd +zd +fG +aO +aO +aO +Zu +zd +zd +zd +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(29,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +zn +zn +zn +zn +zn +Kn +Kn +Kn +Kn +zn +ZM +gN +gh +gN +gh +gh +gN +gh +gN +ZM +zn +lr +lr +lr +lr +lr +lr +lr +lr +lr +kY +cr +lr +lr +cr +cr +XC +XC +IU +XC +XC +mD +mD +wi +mD +mD +XC +XC +XC +XC +XC +XC +XC +XC +zd +Co +zd +zd +zd +zd +zd +zd +zd +Ks +bn +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(30,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +gh +KX +gN +gN +gh +gh +gN +gN +KX +gh +zn +hj +hj +hj +hj +hj +hj +hj +hj +YB +ju +ju +hj +hj +hj +ju +ju +ju +ju +ju +NB +NB +LW +LW +LW +NB +NB +Th +ju +ju +ju +ju +ju +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(31,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +ZM +gN +gN +ma +Kf +Kf +OP +gN +gN +ZM +zn +hj +hj +hj +hj +hj +hj +hj +hN +sy +ju +ju +ju +hj +hj +ju +ju +ju +ju +NB +pa +eE +HJ +HJ +HJ +LW +pa +NB +ju +ju +ju +ju +ju +zd +KD +zd +zd +kC +zd +zd +zd +KD +zd +zd +zd +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(32,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +ZM +gh +gh +Ll +sT +sT +Ll +gh +gh +gh +zn +hj +hj +hj +hj +hj +hj +hj +nA +it +du +ju +ju +ju +ju +gP +ju +ju +ju +NB +RA +HJ +HJ +qo +HJ +HJ +LW +NB +ju +ju +ju +ju +ju +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +oM +OL +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(33,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +ZM +gh +gN +DP +gN +gN +Km +gN +gh +ZM +zn +hj +hj +hj +hj +hj +hj +IZ +hN +pO +sy +ju +ju +ju +ju +ju +ju +ju +Th +NB +Vy +HJ +qh +AN +Uy +HJ +LW +Ty +ju +ju +ju +ju +ju +zd +zd +zd +zd +zd +zd +zd +zd +zd +oM +Ml +WA +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(34,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +ZM +gh +gN +gN +HW +AP +gN +gN +gh +ZM +zn +hj +hj +hj +hj +hj +hj +hN +hN +hN +sy +ju +gP +ju +ju +ju +ju +NB +NB +NB +NB +pa +HJ +HJ +HJ +HJ +LW +NB +ju +ju +ju +ju +ju +zd +zd +KD +zd +zd +zd +zd +zd +zd +sb +WA +WA +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(35,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +gh +ZM +gh +JC +gh +gh +vY +gh +ZM +gh +zn +hj +hj +hj +hj +hj +hj +hN +hN +hN +sy +ju +ju +ju +ju +ju +NB +NB +BX +LW +CN +NB +NB +XP +HJ +Ag +pa +NB +ju +ju +ju +tw +ju +zd +zd +zd +oM +OL +OL +ep +zd +oM +Ml +lh +WA +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(36,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +lI +gh +ZM +jN +gh +gh +WO +ZM +gh +lI +zn +hj +hj +hj +hj +hj +iC +hN +hN +hN +sy +ju +ju +ju +ju +NB +pa +LW +HJ +HJ +HJ +LW +pa +NB +Cf +NB +NB +YB +ju +gp +of +of +du +zd +oM +OL +Ml +WA +HF +Cx +OL +Ml +vN +WA +WA +uS +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(37,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +pR +gh +Xw +iJ +gh +pR +zn +zn +Kn +hj +hj +hj +hj +hj +zm +hN +hN +hN +sy +ju +ju +ju +ju +NB +LW +HJ +tO +tO +tO +HJ +cZ +NB +NB +NB +Gk +jh +pm +CE +hN +NB +NB +wy +rR +rR +WA +WA +ig +WA +WA +WA +WA +vN +WA +NJ +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(38,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +zn +zn +lI +zn +zn +lI +zn +zn +Kn +Kn +hj +hj +hj +hj +hj +hN +hN +hN +hN +it +du +ju +ju +ju +wi +LW +HJ +Qi +bl +nu +HJ +LW +NB +Th +Gk +Ya +ju +xJ +Th +NB +pa +LW +LW +LW +JH +rR +cK +WA +ig +kv +vN +WA +vN +WA +aH +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(39,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +hj +hj +hj +hj +hj +fb +Wp +hN +hN +hN +sy +ju +ju +gP +NB +LW +HJ +tO +tO +tO +HJ +fk +NB +Aj +Xx +ju +ju +Yw +NB +NB +LW +HJ +HJ +HJ +LW +rR +rR +lh +WA +WA +WA +ig +vN +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(40,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +hj +hj +hj +hj +fb +fb +fb +hN +pO +hN +sy +ju +ju +ju +NB +pa +LW +HJ +HJ +HJ +LW +pa +NB +Vz +ju +ju +KE +xy +NB +LW +HJ +Rx +Rx +Rx +HJ +LW +rR +oL +sD +sD +To +vN +vN +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(41,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +hj +hj +fb +fb +fb +fb +fb +fb +uL +hN +it +du +ju +ju +ju +NB +NB +LW +LW +LW +NB +NB +DG +ju +ju +ju +ju +ju +wi +LW +HJ +mP +am +mP +HJ +LW +rR +wz +zd +zd +sb +WA +WA +lh +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(42,1,1) = {" +Wv +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +Kn +hj +fb +fb +fb +hj +fb +fb +fb +fb +iC +hN +sy +ju +ju +ju +ju +NB +NB +Ty +NB +NB +Th +ju +gP +ju +ju +ju +gp +NB +LW +HJ +Rx +Rx +Rx +HJ +LW +rR +zd +zd +zd +Bz +To +WA +WA +WA +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(43,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +fb +fb +fb +hj +hj +fb +fb +fb +fb +fb +hN +it +du +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +jI +ju +xy +NB +NB +LW +HJ +HJ +HJ +LW +rR +rR +zd +zd +zd +ej +Bz +To +WA +WA +WA +Qz +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(44,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +fb +fb +hj +hj +hj +fb +fb +fb +fb +Ak +hN +hN +it +of +du +ju +ju +ju +ju +ju +gP +wG +ju +ju +ju +ju +ju +ju +Th +NB +nc +bG +TE +uu +JH +rR +zd +zd +zd +zd +zd +zd +sb +WA +WA +WA +WA +ue +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(45,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +fb +hj +hj +hj +hj +hj +fb +fb +fb +hN +Gk +Aj +Em +hN +it +du +ju +ju +ju +ju +ju +ju +ju +ju +ju +KE +ju +ju +ju +xF +NB +NB +rR +rR +rR +zd +zd +zd +zd +zd +zd +zd +sb +ak +WA +WA +oL +sD +ut +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(46,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +PT +ih +ih +ih +No +ih +ih +ih +No +ih +fb +fb +hj +hj +hj +hj +fb +IZ +hN +Gk +Xx +ju +xy +Em +hN +it +du +ju +ju +ju +WH +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +zd +zd +zd +zd +zd +zd +zd +zd +oM +OL +Ml +WA +WA +oL +wz +Fz +XA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(47,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +LX +ih +bT +ih +ih +ih +yO +PT +us +hN +fb +hj +hj +hj +hj +fb +fb +fr +sy +WH +ju +ju +xy +Em +hN +it +du +ju +ju +ju +ju +ju +ju +gP +ju +ju +ju +ju +ju +ju +ju +zd +zd +zd +zd +zd +zd +zd +zd +sb +WA +WA +WA +cK +Ue +zd +zd +sb +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(48,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +oh +ih +us +us +QF +PT +ih +GJ +HP +HP +us +hN +hN +hN +hj +hj +hj +fb +iV +hN +sy +ju +ju +ju +ju +Yw +hN +hN +it +du +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +zd +zd +zd +zd +zd +oM +OL +OL +fT +WA +WA +oL +sD +wz +zd +zd +sb +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(49,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +oh +oh +ih +uJ +us +yO +ih +ih +us +us +us +us +ih +ih +ih +ih +oh +oh +PT +hN +HV +sy +ju +gP +ju +gp +CE +hN +pO +hN +it +du +ju +ju +ju +ju +DG +ju +gP +ju +ju +ju +ju +ju +zd +zd +zd +oM +OL +Ml +WA +WA +WA +WA +WA +Ue +zd +zd +zd +oM +Ml +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(50,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +oh +oh +ih +GJ +us +us +ih +PT +us +pV +us +GJ +md +ih +ih +ih +ih +ih +us +Lg +hN +it +of +du +ju +Yw +hN +hN +hN +hN +DK +sy +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +zd +zd +oM +Ml +WA +WA +WA +WA +WA +WA +fy +Cx +OL +ep +Qt +YE +Ln +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(51,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +oh +oh +oh +ih +yO +us +us +PT +PT +us +us +us +yO +ih +ih +md +md +ih +ih +Wx +wr +IZ +IZ +PA +it +of +CE +pO +hN +hN +hN +hN +it +of +du +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +oM +OL +Ml +WA +vN +vN +WA +WA +WA +WA +WA +WA +WA +Cx +uQ +AS +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(52,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +oh +oh +oh +ih +ih +Tu +gc +us +PT +ih +PT +us +us +us +QF +us +us +JA +us +ih +ih +IZ +hN +nA +hN +IZ +nA +hN +IZ +WK +fb +fb +hN +hN +hN +it +du +ju +ju +ju +ju +gP +ju +ju +ju +gp +Ml +WA +WA +vN +vN +WA +ak +WA +WA +FG +Qz +QD +QD +uS +uS +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(53,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +oh +oh +ih +ih +ih +PT +HP +us +QF +ih +ih +ih +uJ +us +us +us +us +ih +md +ih +PT +fb +fb +fb +IZ +fb +fb +fb +fb +fb +fb +fb +fb +YL +WK +hN +sy +ju +ju +ju +ju +ju +ju +ju +ju +Yw +kv +WA +WA +vN +kv +WA +kX +uS +ws +QD +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(54,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +ih +ih +ih +ih +QF +us +yO +oG +ih +ih +ih +us +PT +PT +ih +oG +md +ih +PT +fb +fb +fb +fb +fb +fb +fb +fb +fb +fb +kt +zm +IZ +hN +pO +it +of +of +of +of +du +ju +ju +gp +CE +WA +WA +WA +WA +WA +WA +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(55,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +ih +ih +No +ih +md +md +ih +ih +uJ +ih +HP +md +ih +JS +ih +ih +ih +ih +ih +ih +md +PT +fb +fb +hj +hj +hj +hj +fb +fb +fb +YL +hN +hN +hN +hN +hN +hN +fb +IZ +hN +hN +it +of +of +CE +Uu +vN +WA +WA +WA +uS +Ln +QD +QD +iz +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(56,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +ih +NI +ih +PT +ih +ih +mM +PT +ih +ih +ih +ih +ih +PT +PT +ih +bo +ih +ih +aG +kO +ih +PT +hj +hj +hj +hj +hj +hj +fb +fb +ZG +YO +QS +tC +hN +hN +hN +hN +sf +fb +Lg +hN +WA +ak +WA +vN +vN +WA +WA +vN +kX +uS +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(57,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +ih +vL +EP +ih +ih +md +ih +ih +ih +md +ih +ih +hx +ih +ih +ih +PT +ih +Fo +ih +ih +PT +hj +hj +hj +hj +hj +fb +fb +nA +YO +Ss +Ss +lZ +hN +Uu +hN +jF +IZ +IZ +fb +fb +WA +WA +WA +vN +vN +WA +WA +WA +WA +WA +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(58,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +No +ih +ih +As +Vn +EP +ih +ih +md +md +md +ih +ih +ih +No +ih +QW +vL +EP +ih +ih +ih +PT +PT +hj +hj +hj +hj +hj +fb +IZ +hN +Ss +Ss +Tp +hN +Uu +hN +Uu +hN +hN +hN +ax +fb +QD +WA +vN +vN +aZ +WA +WT +WA +WA +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(59,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +ih +fp +ih +As +Vn +Vn +Xh +kO +ih +gE +gU +ih +ih +ih +ih +ih +ih +lN +Vn +Ti +EP +md +PT +PT +hj +hj +hj +hj +hj +fb +kt +hN +Or +lZ +hN +hN +hN +hN +hN +hN +Uu +hN +hN +hN +WA +WA +WA +vN +WA +uS +vN +aH +WA +HK +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(60,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +JF +JF +HP +No +Db +Vn +Vn +yM +PT +ih +ih +ih +ih +ih +ih +aG +kO +vL +Vn +Vn +RR +yM +md +PT +PT +hj +hj +Pe +hj +hj +fb +fb +fb +fb +fb +fb +fb +hN +hN +hN +hN +hN +hN +hN +hN +WA +vN +vN +WA +ft +yc +QD +QD +QD +Ln +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(61,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +us +uJ +ih +ih +ih +Db +yM +ih +ih +ih +PT +vL +Ti +EP +ih +GJ +ih +Db +RR +yM +ih +md +ih +ih +PT +hj +Pe +Pe +Zm +hj +hj +hj +fb +fb +fb +fb +fb +fb +fb +hN +hN +hN +hN +pO +hN +WA +WA +vN +WA +WA +QD +QD +QD +QD +uS +Ln +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(62,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +bo +GJ +HP +ih +PT +ih +PT +ih +ih +JS +No +vL +Vn +Vn +QY +ih +GJ +uJ +PT +ih +Ts +ih +md +ih +ih +oh +hj +Pe +Cv +wg +ju +hj +hj +hj +fb +fb +fb +fb +fb +fb +fb +hN +hN +hN +hN +hN +WA +vN +WA +WA +vN +QD +QD +QD +QD +WA +uS +Ln +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(63,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +md +ih +us +uJ +JF +PT +uJ +uJ +PT +PT +ih +ih +As +Vn +Vn +yM +ih +us +hM +uJ +ih +ih +ih +at +kO +ih +oh +hj +Pe +Pe +wg +es +ju +ju +hj +hj +hj +hj +hj +fb +fb +fb +fb +fb +fb +hN +hN +WA +WA +WA +WA +vN +QD +QD +QD +QD +WA +WA +WA +WA +WA +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(64,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +md +ih +JF +GJ +us +PT +HP +uJ +PT +ih +ih +Ts +Db +RR +yM +ih +ih +jj +GJ +GJ +HP +PT +ih +md +ih +ih +oh +hj +os +os +Oj +Cl +ju +ju +ju +hj +hj +hj +fb +fb +fb +fb +fb +fb +fb +fb +uL +WR +Ln +WA +vN +QD +QD +QD +QD +QD +WA +WA +WA +QD +WA +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(65,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +us +md +ih +JF +PT +uJ +HP +uJ +GJ +PT +ih +ih +gU +ih +ih +ih +No +ih +PT +us +HP +tY +ih +ih +bT +ih +oh +oh +hj +Cl +ju +qk +ju +ju +ju +ju +hj +hj +fb +fb +fb +fb +hN +fb +fb +fb +fb +fb +QD +WA +WA +WA +WA +QD +QD +WA +WA +ig +WA +WA +QD +WA +WA +WA +WA +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(66,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +us +GJ +ih +PT +PT +uJ +uJ +ih +ih +ih +ih +PT +PT +bo +ih +ih +ih +ih +GJ +PT +PT +GJ +ih +ih +ih +ih +oh +oh +XX +ju +ju +ju +ju +es +ju +hj +hj +fb +fb +fb +hN +hN +hN +hN +fb +fb +fb +fb +ue +WA +WA +WA +WA +WA +WA +WA +WA +WA +WA +sB +WA +WA +WA +WA +WA +WA +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(67,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +uJ +ih +gf +ih +PT +PT +us +GJ +ns +Dj +ih +ih +PT +PT +aG +kO +ih +ih +PT +PT +us +ns +GJ +ih +md +md +ih +oh +hj +hj +ju +ju +ju +Cl +ju +hj +hj +fb +fb +hN +hN +iV +Xk +iV +sf +fb +fb +fb +WA +Ww +Gz +WA +WA +WA +Ln +Ln +uS +uS +uS +WA +kX +Qz +kX +WA +uS +ws +LF +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(68,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +mM +ih +ih +PT +GJ +PT +PT +uJ +HP +PT +ih +ih +ih +ih +ih +ih +gE +PT +us +us +HP +us +uJ +ih +md +jo +PT +hj +hj +hj +ju +ju +ju +ju +hj +hj +fb +fb +tj +IZ +IZ +hN +fr +wr +Lg +fb +hN +Ww +BB +qT +WA +QD +uq +Ln +LV +QD +fq +fq +zd +fq +yf +uS +uS +uS +uS +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(69,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +ih +ih +QF +us +JF +PT +us +PT +PT +jo +oG +ih +ih +ih +md +ih +PT +PT +us +Wx +uJ +PT +ih +NA +GJ +gy +hj +hj +hj +XX +Ko +pK +rs +hj +fb +fb +fr +hN +hN +fr +hN +uL +IZ +fL +fr +iV +Yy +ab +nm +QD +uS +qp +uS +cA +QD +fq +wN +zd +jd +yf +Eq +yf +QD +kX +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(70,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +jo +ih +oG +ih +GJ +us +uJ +us +us +ih +ih +ih +PT +tb +md +ih +ih +ih +ih +ih +ih +ih +ih +bo +ih +ih +QK +IZ +nH +IZ +iV +iV +HL +hj +hj +fb +fb +IZ +IZ +hN +hN +hN +fb +IZ +IZ +bH +uL +QD +ak +WA +QD +QD +uS +kX +QD +QD +Nq +XM +zd +xj +sc +XM +fq +qD +Ln +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(71,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +ih +ih +ih +Wx +us +PT +PT +PT +ih +ih +ih +ih +md +PT +PT +ih +HP +PT +aG +kO +HP +ih +ih +ih +uJ +IZ +rs +uL +Rg +HL +iV +hj +hj +fb +hN +hN +IZ +iV +hN +fb +fb +fb +IZ +uL +IZ +aH +QD +QD +QD +iz +uS +Ln +uS +SD +fq +BI +sc +xj +zd +Fz +fq +kp +ws +vM +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(72,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +md +No +ih +us +us +PT +PT +PT +PT +ih +ih +fp +ih +PT +ih +ih +PT +GJ +ih +us +us +ih +gE +PT +ih +md +Fo +XX +hj +uL +HL +Oc +XX +hj +hj +fb +hN +hN +hN +fb +fb +fb +fb +fb +fb +uL +MW +uS +WA +QD +QD +uS +WA +Ub +ws +up +pl +Uk +sc +Gb +dQ +xj +fq +gD +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(73,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +ih +ih +PT +PT +PT +PT +PT +ih +ih +ih +ih +PT +ih +ih +GJ +GJ +us +PT +GJ +us +GJ +ih +ih +JS +ih +hN +hN +hN +fb +hN +hj +hj +hj +fb +hN +hN +fb +fb +fb +fb +fb +fb +bz +iV +fr +uS +uS +Ln +kX +li +nm +uS +ws +Ue +pl +Vt +zd +xj +xj +zd +RK +WA +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(74,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +md +ih +ih +us +PT +HP +uJ +ih +My +ih +PT +ih +ih +ih +ih +us +HP +us +PT +PT +GJ +uJ +ih +ih +oh +ih +YO +QS +tC +hN +hN +Sm +hj +fb +fb +hN +tj +hN +hN +fb +fb +fb +fb +iV +Py +uL +ws +QD +uS +uS +uS +ws +Ln +cQ +tl +fq +zd +zd +sc +JR +zd +fq +CU +Ln +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(75,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +ih +ih +No +uJ +HP +uJ +GJ +ih +ih +ih +ih +ih +ih +ih +PT +PT +PT +HP +Eh +HP +ze +us +uJ +Tu +oh +vL +Ss +Ss +Qb +hN +hN +hN +fb +fb +fb +hN +Yv +PC +hN +hN +hN +iV +IZ +IZ +MW +fb +QD +iz +uS +kX +DM +iz +iz +QD +QD +fq +xj +sc +sc +yI +fC +Nq +JI +rh +nm +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(76,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +yP +ih +uJ +uJ +ih +ih +PT +ih +ih +ih +gf +HP +ih +ih +ih +us +us +us +GJ +gc +MS +HP +ih +ih +Db +Ss +Ss +lZ +hN +fb +hN +fb +fb +fb +fr +IZ +IZ +fb +fb +hN +IZ +IZ +Pg +uL +fb +kX +kX +uS +uS +QD +QD +kv +WA +wR +fq +sc +zd +sc +xj +JG +Nq +xC +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(77,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +PT +ih +aG +kO +ih +PT +PT +ih +ih +PT +us +ih +ih +HP +us +PT +us +PT +HP +us +GJ +ih +cV +gf +PN +Qb +hN +wn +hN +pO +fb +fb +fb +IZ +IZ +hN +hN +fb +hN +fb +fb +IZ +IZ +fb +QD +uS +WA +QD +QD +WA +WA +WA +uS +fq +zj +AO +fC +fq +zj +fq +kX +KP +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(78,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +ih +fp +ih +yP +PT +PT +PT +uJ +aG +kO +ih +ih +ih +WF +PT +HP +us +us +ih +My +ih +ih +vL +Ss +Jz +QS +tC +hN +Gk +fb +fb +fb +hN +iV +fb +hN +hN +hN +fb +IZ +uL +IZ +uL +QD +WA +WA +WA +QD +ws +WA +WA +QD +QD +fq +Nq +fq +fq +zl +Ir +WA +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(79,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +vL +EP +ih +ih +ih +ih +PT +QF +us +GJ +vL +EP +ih +HP +ih +PT +PT +us +ih +HP +ih +ih +ih +Db +lZ +fb +Or +lZ +hN +sy +fb +fb +fb +hN +fb +fb +hN +hN +hN +fb +IZ +MW +kT +uL +WA +HK +sB +Ln +uS +uS +kX +WA +QD +QD +zl +pz +Ir +OW +WA +QD +QD +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(80,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +As +Vn +EP +ih +aG +mo +HP +yO +us +GJ +Db +QY +ih +ih +ih +ih +jo +ih +ih +md +ih +ih +oh +oh +fb +fb +hN +hN +hN +sy +ju +fb +fb +fb +fb +fb +fr +IZ +IZ +fb +iV +IZ +iV +IZ +Ww +bJ +XQ +WA +Ln +QD +QD +WA +ak +WA +WA +QD +QD +QD +WA +WA +WA +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(81,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +Db +RR +yM +PT +ih +GJ +us +uJ +us +us +ih +ih +ih +Fo +No +ih +ih +GJ +ih +ih +oG +ih +ih +PT +Yk +Yk +Yk +Jr +Aq +Vl +SP +Of +mN +Yk +BS +Yk +Yk +BS +Aq +Yk +ui +Yk +BS +BS +Yy +BB +BB +XQ +iz +QD +kX +WA +li +nm +WA +WA +WA +QD +uS +uS +uS +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(82,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +ih +ih +ih +ih +ih +ih +ih +ih +ih +ih +ih +ih +NI +Dj +PT +HP +ih +ih +ih +PT +us +BS +BS +BS +bC +uh +MC +SY +uh +uh +Yk +uh +Aq +Yk +Yk +uh +uh +Yk +Yk +BS +kW +WA +Yy +MK +qT +ws +uS +kX +qg +WA +WA +WA +KP +QD +QD +kX +HE +ws +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(83,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +ih +md +ih +md +ih +ih +HP +yO +ih +ih +ih +uJ +ih +us +NE +JF +QF +ih +ih +PT +Yk +Yk +BS +Yk +uh +hw +uh +uh +CS +kW +BS +BS +uh +Yk +uh +uh +uh +bC +bC +Aq +kX +WA +WA +ws +uS +uS +uS +Ln +QD +QD +WA +WA +QD +QD +QD +QD +uS +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(84,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +PT +ih +ih +ih +ih +bD +bo +HP +us +us +PT +ih +jo +PT +PT +HP +ih +ns +ns +ih +PT +PT +Yk +BS +BS +kW +uh +hc +bE +uh +uh +uh +BS +uh +uh +MC +uh +uh +PK +Yk +Yk +di +QD +ws +kX +uS +uS +QD +ws +sB +WA +QD +fy +QD +QD +QD +QD +uS +uS +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(85,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +ih +ih +md +ih +ih +us +PT +ih +ih +PT +PT +Dj +uJ +yO +ns +HP +ih +us +PT +Yk +Yk +Aq +Aq +rv +jL +jL +bE +uh +uh +Qx +uh +Yk +Aq +uh +ui +BS +Yk +Aq +py +uS +uS +Ln +QD +QD +WA +vN +WA +WA +uS +QD +QD +WA +QD +WA +WA +ws +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(86,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +No +md +ih +ih +us +HP +hx +ih +PT +us +hw +di +Yk +Yk +BS +uh +BS +BS +BS +Jr +zu +uh +uh +Ex +mt +VB +uh +uh +uh +Yk +Yk +Yk +uh +ui +Yk +Jr +BS +Aq +wt +BS +Yk +Yk +BS +uS +vN +QD +LF +WA +WA +Ww +XQ +li +nm +WA +WA +WA +WA +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(87,1,1) = {" +HA +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +oh +PT +PT +PT +ih +ih +ih +ih +ih +HP +Tu +HP +PT +ih +PT +us +zu +Aq +Yk +Yk +Yk +Yk +BS +Yk +BS +kW +Aq +ec +uh +uh +Ex +Jv +uh +Yk +uh +uh +Yk +uh +BS +Yk +py +py +BS +BS +kW +Yk +Yk +uh +BS +fy +vN +WA +cK +WA +Ww +BB +qT +LF +mK +vN +vN +WA +WA +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(88,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +Yk +Yk +Yk +uh +uh +uh +Jr +BS +Yk +Yk +uh +uh +Yk +Xl +Yk +Jr +Yk +ui +Jr +kW +Aq +Yk +Yk +Yk +Yk +Yk +lQ +uh +uh +uh +uh +Yk +uh +uh +BS +BS +Aq +jO +Aq +Jr +RL +di +BS +wI +Jr +uh +uh +vN +QD +WA +WA +Ww +BB +BB +XQ +WA +WA +WA +HK +WA +WA +Qz +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(89,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +Yk +Yk +Yk +Yk +Yk +uh +uh +bi +bi +bi +uh +Yk +Yk +uh +BS +RL +Aq +BS +kW +Yk +Yk +Yk +Yk +Yk +Yk +uh +uh +lQ +MC +uh +pU +Yk +Yk +uh +kW +uh +uh +lQ +lQ +lQ +yd +lQ +uh +uh +uh +uh +lQ +WA +uS +uS +WA +bx +BB +BB +qT +WA +WA +vN +WA +LF +WA +kX +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(90,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +ym +ym +ym +lb +lb +lb +lb +lb +lb +lb +lb +lb +bi +Yk +Yk +Yk +Yk +uh +uh +uh +bi +uh +uh +uh +Yk +Yk +BS +uh +uh +CS +uh +Yk +Yk +Yk +kW +Yk +uh +uh +SQ +lQ +lQ +lQ +uh +Yk +Yk +Yk +uh +MC +Aq +kW +FE +mN +uh +lQ +lQ +Aq +BS +uh +lQ +uS +uS +WA +WA +bx +BB +qT +WA +QD +uS +vo +WA +WA +uS +ws +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(91,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +lb +lb +lb +lb +bi +bi +Yk +Yk +Yk +uh +lQ +uh +uh +uh +SQ +uh +uh +uh +uh +VU +uh +uh +uh +Aq +Yk +kW +BS +Aq +uh +uh +uh +lQ +uh +lQ +lQ +Yk +Yk +Yk +Yk +BS +BS +BS +BS +uh +uh +BS +ui +Yk +Yk +Yk +Yk +QD +WA +WA +WA +Yy +qT +WA +uS +QD +kX +zQ +WA +WA +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(92,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +gt +ym +ym +ym +ym +ym +lb +lb +lb +lb +lb +lb +lb +bi +bi +bi +bi +Yk +Yk +uh +uh +uh +uh +uh +uh +uh +Yk +nW +hc +bE +FE +mN +ui +Jr +Yk +Jr +uh +uh +hc +gs +Ki +uh +SW +Yk +Yk +Yk +Yk +Yk +Aq +uh +uh +Yk +kW +BS +uh +uh +kW +kW +Yk +Yk +QD +QD +QD +WA +WA +WA +uS +ws +QD +QD +WA +WA +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(93,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +bi +bi +bi +bi +bi +Yk +Yk +uh +uh +uh +uh +uh +uh +uh +hc +jL +jL +bE +Yk +ui +BS +zu +uh +MC +uh +Ex +Se +tI +pU +uh +Yk +Yk +Yk +Yk +Yk +Yk +uh +uh +uh +uh +uh +uh +Aq +Yk +Yk +Yk +Yk +QD +QD +QD +WA +QD +QD +uS +QD +WA +WA +WA +WA +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(94,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +kJ +ym +gt +ym +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +bi +bi +bi +bi +Ng +Ng +Nv +pU +uh +hc +jL +jL +Se +Jv +uh +kW +Aq +Jr +uh +PK +uh +Yk +lQ +uh +uh +uh +Yk +Yk +Yk +Yk +Yk +Yk +Yk +uh +uh +BS +kW +BS +Yk +Yk +uh +uh +Yk +QD +QD +kX +WA +ws +QD +QD +LF +WA +WA +QD +WA +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(95,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +gt +ym +ym +ym +lb +bi +bi +bi +bi +Rf +Rf +tm +uh +uh +Ex +Se +Jv +uh +uh +uh +Yk +zu +uh +lQ +lQ +lQ +uh +lQ +lQ +Qx +uh +uh +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +zf +BS +uh +uh +uh +BS +Yk +QD +uS +ws +WA +uS +uS +QD +WA +WA +WA +WA +WA +uS +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(96,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +ym +gt +ym +ym +ym +ym +kJ +ym +ym +ym +ym +Rf +Rf +Rf +bi +Rf +Rf +Wq +Nv +Aq +uh +uh +Qx +ec +uh +uh +Yk +Yk +Yk +xe +uh +FE +mN +OJ +uh +uh +CS +uh +bi +Yk +Yk +bi +Yk +Yk +Yk +Yk +Yk +uh +uh +kW +uh +Aq +BS +uh +QD +QD +QD +WA +WA +uS +uS +WA +WA +LF +WA +uS +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(97,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +gt +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +Rf +Rf +Rf +Rf +Rf +Rf +Rf +Wq +Nv +FE +mN +uh +uh +uh +uh +Aq +Yk +Yk +Yk +Yk +uh +uh +uh +Yk +uh +uh +uh +bi +Yk +Yk +bi +bi +bi +Yk +Yk +Yk +uh +uh +Yk +Yk +BS +uh +uh +WA +WA +WA +WA +QD +ws +uS +kX +Qz +Qz +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(98,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +Rf +Rf +Rf +Rf +Rf +Rf +Rf +Rf +xh +kW +hc +mE +uh +uh +uh +uh +Yk +uh +uh +uh +uh +Yk +uh +uh +kW +kW +BS +Jr +Yk +Yk +Yk +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +kW +BS +uh +Yk +WA +WA +uS +WA +WA +WA +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(99,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +Rf +Rf +Rf +Rf +Rf +Rf +Rf +Rf +dO +Jr +rj +jL +bE +FE +mN +uh +uh +uh +hc +gs +bE +uh +uh +SQ +uh +kW +zu +BS +Yk +Yk +Yk +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +uh +uh +uS +uS +kX +ws +WA +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(100,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +lb +lb +ym +ym +ym +ym +lb +Rf +Rf +Rf +Rf +Rf +Rf +Rf +Rf +xh +BS +rj +jL +VB +uh +uh +uh +hc +gs +jL +jL +VB +uh +CS +uh +GN +uh +Yk +Yk +bi +Yk +Yk +Yk +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(101,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +gt +ym +ym +ym +lb +lb +lb +lb +lb +lb +lb +ym +ym +gt +ym +lb +bi +Rf +Rf +Rf +Rf +Rf +Rf +Rf +JJ +BS +Ex +jL +VB +uh +uh +uh +Ex +Se +jL +jL +Jv +uh +uh +uh +uh +uh +uh +Yk +bi +Yk +Yk +Yk +bi +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +QD +QD +QD +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(102,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +lb +bi +bi +bi +Rf +Rf +Rf +Rf +Rf +JJ +Jr +lQ +BR +Jv +uh +uh +rv +Yk +uh +Ex +Jv +uh +GN +uh +MC +uh +xe +uh +kW +bi +Yk +Yk +Yk +bi +bi +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +QD +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(103,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +lb +bi +bi +bi +bi +Rf +Rf +Rf +Rf +tm +Aq +BS +lQ +Ia +GN +uh +uh +lQ +lQ +rv +uh +uh +Yk +Yk +ot +ot +ot +Ae +FE +bi +Yk +Yk +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Yk +QD +QD +QD +QD +QD +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(104,1,1) = {" +ha +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +lb +lb +ym +ym +ym +ym +ym +ym +ym +lb +bi +bi +bi +bi +Rf +Rf +Rf +Rf +JJ +uh +kW +MC +lQ +lQ +lQ +MC +uh +uh +lQ +uh +uh +uh +Yk +Rf +Rf +Rf +JJ +uh +Yk +Yk +Yk +Yk +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(105,1,1) = {" +ha +lb +lb +lb +ym +ym +ym +gt +ym +ym +ym +ym +ym +ym +ym +ym +ym +kJ +gt +ym +ym +ym +lb +lb +bi +bi +bi +bi +bi +bi +Rf +Rf +JJ +Yk +BS +Zo +lQ +uh +uh +Yk +uh +xe +uh +uh +Yk +uh +Yk +Yk +OC +Rf +JJ +Yk +Yk +Yk +Yk +Yk +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(106,1,1) = {" +ha +lb +lb +lb +lb +ym +ym +ym +ym +kJ +ym +ym +ym +gt +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +uh +uh +uh +Yk +Yk +Yk +Yk +Yk +rz +Fs +Yk +Yk +Yk +Yk +Yk +Yk +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(107,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(108,1,1) = {" +ha +lb +lb +lb +lb +lb +ym +ym +ym +lb +lb +lb +ym +ym +ym +ym +ym +ym +lb +lb +lb +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(109,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +bi +Yk +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(110,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(111,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(112,1,1) = {" +ha +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +lb +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +PJ +"} +(113,1,1) = {" +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +PJ +"} diff --git a/sound/misc/hunt_begin.ogg b/sound/misc/hunt_begin.ogg new file mode 100644 index 000000000000..6ddd9e727a8a Binary files /dev/null and b/sound/misc/hunt_begin.ogg differ diff --git a/tgui/packages/tgui/interfaces/Orbit/index.tsx b/tgui/packages/tgui/interfaces/Orbit/index.tsx index 75625f02ed98..72049d0cfb6d 100644 --- a/tgui/packages/tgui/interfaces/Orbit/index.tsx +++ b/tgui/packages/tgui/interfaces/Orbit/index.tsx @@ -302,6 +302,7 @@ const ObservableContent = () => { marshal = [], synthetics = [], predators = [], + hunted = [], animals = [], dead = [], ghosts = [], @@ -370,6 +371,11 @@ const ObservableContent = () => { section={contractor} title="Military Contractors" /> +