diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000000..7657ebb657e1 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,53 @@ +name: Build and Release + +on: + push: + branches: + - master + +concurrency: + group: build-and-release + cancel-in-progress: true + +jobs: + build_and_release: + name: Build and Release + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v5 + + - name: Setup Bun + uses: ./.github/actions/setup_bun + + - name: Restore BYOND from Cache + uses: ./.github/actions/restore_or_install_byond + + - name: Install curl + run: | + sudo dpkg --add-architecture i386 + sudo apt update || true + sudo apt install -o APT::Immediate-Configure=false curl:i386 + + - name: Build + run: | + source $HOME/BYOND/byond/bin/byondsetup + tools/build/build.sh + + - name: Install zstd + run: sudo apt install -y zstd + + - name: Create compressed archive + run: | + tar --exclude='./icons' --exclude='./sound' --exclude='./.git' --exclude='node_modules' --exclude='./code' --exclude='./tools' -cvf - . | zstd -19 -T0 -o colonialmarines-build.tar.zst + + - name: Create Release + uses: softprops/action-gh-release@v2 + with: + tag_name: build-${{ github.sha }} + name: Build ${{ github.sha }} + body: Automated build from commit ${{ github.sha }} + files: | + colonialmarines-build.tar.zst + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index 254362f5326d..80ad1ef3c8d4 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -34,6 +34,7 @@ #define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" #define MAP_LV759_HYBRISA_PROSPERA "LV-759 Hybrisa Prospera" // Highpop Only #define MAP_NEW_VARADERO "New Varadero"//ice colony underground but as its own map +#define MAP_TYRARGO_RIFT "Tyrargo Rift" #define MAP_CHINOOK "Chinook 91 GSO" //admin level #define MAP_ROSTOCK "SSV Rostock" //UPP Warship @@ -389,6 +390,9 @@ #define WALL_STRATA_ICE "strata_ice" #define WALL_STRATA_ICE_DIRTY "strata_ice_dirty" #define WALL_JUNGLE_UPDATED "jungle_veg" +#define WALL_FOREST "forest_veg" +#define WALL_FOREST_ROCK "rock_forest" +#define WALL_FOREST_ROCK_DIRTY "rock_forest_dirty" #define WALL_STRATA_OUTPOST_RIBBED "strata_ribbed_outpost_" #define WALL_STRATA_OUTPOST_BARE "strata_bare_outpost_" #define WALL_SHIVA_ICE "shiva_ice" diff --git a/code/__DEFINES/__rust_g.dm b/code/__DEFINES/__rust_g.dm index 877d06ed19f6..1293328733b4 100644 --- a/code/__DEFINES/__rust_g.dm +++ b/code/__DEFINES/__rust_g.dm @@ -203,21 +203,70 @@ #define rustg_hash_string(algorithm, text) RUSTG_CALL(RUST_G, "hash_string")(algorithm, text) #define rustg_hash_file(algorithm, fname) RUSTG_CALL(RUST_G, "hash_file")(algorithm, fname) -#define rustg_hash_generate_totp(seed) RUSTG_CALL(RUST_G, "generate_totp")(seed) -#define rustg_hash_generate_totp_tolerance(seed, tolerance) RUSTG_CALL(RUST_G, "generate_totp_tolerance")(seed, tolerance) + +/// Supported algorithms: RUSTG_HASH_SHA1, RUSTG_HASH_SHA256, RUSTG_HASH_SHA512 +/// Seed must be between 10 bytes to 64 bytes (padded or unpadded) of base32. 20 bytes is recommended. Use a CSPRNG. +/// Refresh rate is fixed at 30sec and digit count is fixed at 6 +#define rustg_hash_generate_totp(algorithm, seed) RUSTG_CALL(RUST_G, "generate_totp")(algorithm, seed) +/// Supported algorithms: RUSTG_HASH_SHA1, RUSTG_HASH_SHA256, RUSTG_HASH_SHA512 +/// Seed must be between 10 bytes to 64 bytes (padded or unpadded) of base32. 20 bytes is recommended. Use a CSPRNG. +/// Refresh rate is fixed at 30sec and digit count is fixed at 6 +/// Tolerance is the number of codes +-30sec from the current one that are allowed. +#define rustg_hash_generate_totp_tolerance(algorithm, seed, tolerance) RUSTG_CALL(RUST_G, "generate_totp_tolerance")(algorithm, seed, tolerance) + +/// Creates a cryptographically-secure pseudorandom number generator using the OS-level PRNG as a seed +/// n_bytes is the number of bytes provided to the RNG, the length of the string output varies by format +/// The output string length and characters contained in each format is as follows: +/// RUSTG_RNG_FORMAT_HEX: n_bytes * 2, [a-z0-9] +/// RUSTG_RNG_FORMAT_ALPHANUMERIC: n_bytes, [A-Za-z0-9] +/// RUSTG_RNG_FORMAT_BASE32: ceil(n_bytes / 5 * 8) [A-Z2-7] +/// RUSTG_RNG_FORMAT_BASE32_PADDED: ceil(n_bytes / 5) * 8 [A-Z2-7=] +/// RUSTG_RNG_FORMAT_BASE64: 4 * ceil(n_bytes/3), [A-Za-z0-9+/=] +/// Outputs "ERROR: [reason]" if the format string provided is invalid, or n_bytes is not a positive non-zero integer +#define rustg_csprng_chacha20(format, n_bytes) RUSTG_CALL(RUST_G, "csprng_chacha20")(format, "[n_bytes]") + +/// Creates a seeded pseudorandom number generator using the SHA256 hash output bytes of the seed string +/// Note that this function is NOT suitable for use in cryptography and is intended for high-quality **predictable** RNG +/// Use rustg_csprng_chacha20 for a cryptographically-secure PRNG. +/// n_bytes is the number of bytes provided to the RNG, the length of the string output varies by format +/// The output string length and characters contained in each format is as follows: +/// RUSTG_RNG_FORMAT_HEX: n_bytes * 2, [a-z0-9] +/// RUSTG_RNG_FORMAT_ALPHANUMERIC: n_bytes, [A-Za-z0-9] +/// RUSTG_RNG_FORMAT_BASE32: ceil(n_bytes / 5 * 8) [A-Z2-7] +/// RUSTG_RNG_FORMAT_BASE32_PADDED: ceil(n_bytes / 5) * 8 [A-Z2-7=] +/// RUSTG_RNG_FORMAT_BASE64: 4 * ceil(n_bytes/3), [A-Za-z0-9+/=] +/// Outputs "ERROR: [reason]" if the format string provided is invalid, or n_bytes is not a positive non-zero integer +#define rustg_prng_chacha20_seeded(format, n_bytes, seed) RUSTG_CALL(RUST_G, "prng_chacha20_seeded")(format, "[n_bytes]", seed) + +#define RUSTG_RNG_FORMAT_HEX "hex" +#define RUSTG_RNG_FORMAT_ALPHANUMERIC "alphanumeric" +#define RUSTG_RNG_FORMAT_BASE32 "base32_rfc4648" +#define RUSTG_RNG_FORMAT_BASE32_PADDED "base32_rfc4648_pad" +#define RUSTG_RNG_FORMAT_BASE64 "base64" #define RUSTG_HASH_MD5 "md5" #define RUSTG_HASH_SHA1 "sha1" #define RUSTG_HASH_SHA256 "sha256" #define RUSTG_HASH_SHA512 "sha512" #define RUSTG_HASH_XXH64 "xxh64" +#define RUSTG_HASH_BASE32 "base32_rfc4648" +#define RUSTG_HASH_BASE32_PADDED "base32_rfc4648_pad" #define RUSTG_HASH_BASE64 "base64" /// Encode a given string into base64 #define rustg_encode_base64(str) rustg_hash_string(RUSTG_HASH_BASE64, str) -/// Decode a given base64 string +/// Decode a given base64 string. This expects padding. +/// Returns a blank string if the string is not valid base64. #define rustg_decode_base64(str) RUSTG_CALL(RUST_G, "decode_base64")(str) +/// Encode a given string into base32 (RFC4648) +/// If padding set to FALSE, will not output padding characters. +#define rustg_encode_base32(str, padding) rustg_hash_string(padding ? RUSTG_HASH_BASE32_PADDED : RUSTG_HASH_BASE32, str) +/// Decode a given base32 (RFC4648) string +/// If padding set to FALSE, decoding will not support padding characters. +/// Returns a blank string if the string is not valid base32. +#define rustg_decode_base32(str, padding) RUSTG_CALL(RUST_G, "decode_base32")(str, "[padding ? 1 : 0]") + #ifdef RUSTG_OVERRIDE_BUILTINS #define md5(thing) (isfile(thing) ? rustg_hash_file(RUSTG_HASH_MD5, "[thing]") : rustg_hash_string(RUSTG_HASH_MD5, thing)) #endif diff --git a/code/__DEFINES/job.dm b/code/__DEFINES/job.dm index 97c3aa6003e2..cf9d667cd23b 100644 --- a/code/__DEFINES/job.dm +++ b/code/__DEFINES/job.dm @@ -14,6 +14,7 @@ #define SQUAD_CBRN "CBRN" #define SQUAD_FORECON "FORECON" #define SQUAD_SOLAR "Solar Devils" +#define SQUAD_ARMY "US Army" // Job name defines #define JOB_SQUAD_MARINE "Rifleman" @@ -354,6 +355,21 @@ GLOBAL_LIST_INIT(job_command_roles, JOB_COMMAND_ROLES_LIST) #define JOB_FORECON_LIST list(JOB_FORECON_CO, JOB_FORECON_SL, JOB_FORECON_SYN, JOB_FORECON_SNIPER, JOB_FORECON_MARKSMAN, JOB_FORECON_SUPPORT, JOB_FORECON_RIFLEMAN, JOB_FORECON_SMARTGUNNER) +//-------- US ARMY --------// + +#define JOB_ARMY_TROOPER "US Army Trooper" +#define JOB_ARMY_ENGI "US Army Combat Engineering Technician" +#define JOB_ARMY_MEDIC "US Army Combat Medical Technician" +#define JOB_ARMY_MARKSMAN "US Army Marksman" +#define JOB_ARMY_SMARTGUNNER "US Army Heavy Gunner" +#define JOB_ARMY_SNCO "US Army Squad Leader" +#define JOB_ARMY_CO "US Army Commander" +#define JOB_ARMY_SYN "US Army Synthetic" + + +#define JOB_ARMY_LIST list(JOB_ARMY_TROOPER, JOB_ARMY_ENGI, JOB_ARMY_MEDIC, JOB_ARMY_MARKSMAN, JOB_ARMY_SMARTGUNNER, JOB_ARMY_SNCO, JOB_ARMY_CO, JOB_ARMY_SYN) + + //-------- UPP --------// #define JOB_UPP "UPP Ryadovoy" #define JOB_UPP_CONSCRIPT "UPP Conscript" diff --git a/code/__DEFINES/minimap.dm b/code/__DEFINES/minimap.dm index e2a36c86ded1..d56ed3559a28 100644 --- a/code/__DEFINES/minimap.dm +++ b/code/__DEFINES/minimap.dm @@ -78,6 +78,7 @@ GLOBAL_LIST_INIT(all_minimap_flags, bitfield2list(MINIMAP_FLAG_ALL)) #define MINIMAP_SQUAD_ECHO "#00b043" #define MINIMAP_SQUAD_FOXTROT "#fe7b2e" #define MINIMAP_SQUAD_SOF "#400000" +#define MINIMAP_SQUAD_ARMY "#349c30" #define MINIMAP_SQUAD_INTEL "#053818" //Prison diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index e9cc84335518..c4d7119684ae 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -135,3 +135,11 @@ #define SCAPE_PL_LV759_DEEPCAVES list('sound/soundscape/lv759/outdoors/deepcave1.ogg','sound/soundscape/lv759/outdoors/deepcave2.ogg') #define SCAPE_PL_LV759_CAVES list('sound/soundscape/lv759/outdoors/windy_caverns_1.ogg','sound/soundscape/lv759/outdoors/windy_caverns_2.ogg','sound/soundscape/lv759/outdoors/windy_caverns_3.ogg',) #define SCAPE_PL_LV759_PLATEAU_OUTDOORS list('sound/soundscape/lv759/outdoors/derelict_plateau_1.ogg','sound/soundscape/lv759/outdoors/derelict_plateau_2.ogg',) + +// Tyrargo Soundscapes + +#define AMBIENCE_TYRARGO_CITY 'sound/ambience/tyrargo_city_ambience.ogg' +#define AMBIENCE_TYRARGO_SEWER_CITY 'sound/ambience/tyrargo_sewer_ambience.ogg' + +#define SCAPE_PL_TYRARGO_SEWER list('sound/ambience/tyrargo_underground_1.ogg','sound/ambience/tyrargo_underground_2.ogg','sound/ambience/tyrargo_underground_3.ogg','sound/ambience/tyrargo_underground_4.ogg') +#define SCAPE_PL_TYRARGO_ALERT list('sound/ambience/tyrargo_alert_1.ogg', 'sound/ambience/tyrargo_alert_2.ogg', 'sound/ambience/tyrargo_alert_3.ogg', 'sound/ambience/tyrargo_alert_4.ogg', 'sound/ambience/tyrargo_alert_5.ogg', 'sound/ambience/tyrargo_alert_6.ogg') diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 31d615305101..5c864563c66d 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -763,7 +763,7 @@ GLOBAL_DATUM(action_purple_power_up, /image) * numticks: If a value is given, denotes how often the timed action checks for interrupting actions. By default, there are 5 checks every delay/5 deciseconds. * Note: 'delay' should be divisible by numticks in order for the timing to work as intended. numticks should also be a whole number. */ -/proc/do_after(mob/user, delay, user_flags = INTERRUPT_ALL, show_busy_icon, atom/movable/target, target_flags = INTERRUPT_MOVED, show_target_icon, max_dist = 1, \ +/proc/do_after(mob/user, delay, user_flags = INTERRUPT_ALL, show_busy_icon, atom/movable/target, target_flags = INTERRUPT_MOVED, show_target_icon, max_dist = 1, status_effect = null, \ show_remaining_time = FALSE, numticks = DA_DEFAULT_NUM_TICKS) // These args should primarily be named args, since you only modify them in niche situations if(!istype(user) || delay < 0) return FALSE @@ -802,6 +802,10 @@ GLOBAL_DATUM(action_purple_power_up, /image) if(user_flags & BEHAVIOR_IMMOBILE) busy_user.status_flags |= IMMOBILE_ACTION + // if we wanna apply a status effect to a user + if(status_effect && busy_user) + busy_user.adjust_effect(delay, status_effect) + busy_user.action_busy++ // target is not tethered by action, the action is tethered by target though busy_user.resisting = FALSE busy_user.clicked_something = list() @@ -950,6 +954,10 @@ GLOBAL_DATUM(action_purple_power_up, /image) T.resisting = FALSE busy_user.status_flags &= ~IMMOBILE_ACTION + // remove the effect once we finish + if(status_effect && busy_user) + busy_user.adjust_effect(-delay, status_effect) + if (show_remaining_time) return (. ? 0 : time_remaining/expected_total_time) // If action was not interrupted, return 0 for no time left, otherwise return ratio of time remaining diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm index a2bd187ce6d0..7381bef00ff9 100644 --- a/code/_globalvars/bitfields.dm +++ b/code/_globalvars/bitfields.dm @@ -335,6 +335,8 @@ DEFINE_BITFIELD(status, list( "LIMB_ROBOT" = LIMB_ROBOT, "LIMB_SYNTHSKIN" = LIMB_SYNTHSKIN, "LIMB_BROKEN" = LIMB_BROKEN, + "LIMB_ESCHAR" = LIMB_ESCHAR, + "LIMB_THIRD_DEGREE_BURNS" = LIMB_THIRD_DEGREE_BURNS, "LIMB_DESTROYED" = LIMB_DESTROYED, "LIMB_SPLINTED" = LIMB_SPLINTED, "LIMB_MUTATED" = LIMB_MUTATED, diff --git a/code/controllers/subsystem/communications.dm b/code/controllers/subsystem/communications.dm index 94e42a8ffd12..e01d87b814e9 100644 --- a/code/controllers/subsystem/communications.dm +++ b/code/controllers/subsystem/communications.dm @@ -131,6 +131,7 @@ Radiochat range: 1441 to 1489 (most devices refuse to be tune to other frequency #define PVST_FREQ 1473 #define CBRN_FREQ 1474 #define FORECON_FREQ 1475 +#define ARMY_FREQ 1476 //Ship department channels #define SENTRY_FREQ 1480 @@ -192,6 +193,7 @@ GLOBAL_LIST_INIT(radiochannels, list( SQUAD_CBRN = CBRN_FREQ, SQUAD_FORECON = FORECON_FREQ, SQUAD_SOLAR = SOF_FREQ, + SQUAD_ARMY = ARMY_FREQ, RADIO_CHANNEL_ALAMO = DS1_FREQ, RADIO_CHANNEL_NORMANDY = DS2_FREQ, @@ -322,6 +324,7 @@ SUBSYSTEM_DEF(radio) "[ECHO_FREQ]" = "echoradio", "[CRYO_FREQ]" = "cryoradio", "[CBRN_FREQ]" = "hcradio", + "[ARMY_FREQ]" = "hcradio", "[FORECON_FREQ]" = "hcradio", "[SOF_FREQ]" = "hcradio", "[HC_FREQ]" = "hcradio", diff --git a/code/controllers/subsystem/who.dm b/code/controllers/subsystem/who.dm index 0159e49e0ee4..d11d6c92f4e8 100644 --- a/code/controllers/subsystem/who.dm +++ b/code/controllers/subsystem/who.dm @@ -225,7 +225,7 @@ SUBSYSTEM_DEF(who) listings["Maintainers"] = list(R_PROFILER, list()) listings["Administrators"] = list(R_ADMIN, list()) if(CONFIG_GET(flag/show_mods)) - listings["Moderators"] = list(R_MOD|R_BAN, list()) + listings["Moderators"] = list(R_MOD, list()) if(CONFIG_GET(flag/show_mentors)) listings["Mentors"] = list(R_MENTOR, list()) diff --git a/code/datums/ammo/bullet/pistol.dm b/code/datums/ammo/bullet/pistol.dm index 1601f2db260b..598cef5cb7cc 100644 --- a/code/datums/ammo/bullet/pistol.dm +++ b/code/datums/ammo/bullet/pistol.dm @@ -263,6 +263,13 @@ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary) )) +/datum/ammo/bullet/pistol/squash/heap + name = "high-explosive armor-piercing pistol bullet" + + headshot_state = HEADSHOT_OVERLAY_HEAVY + damage = 50 + penetration = ARMOR_PENETRATION_TIER_10 + /datum/ammo/bullet/pistol/squash/rubber name = "rubber squash-head pistol bullet" damage_type = BURN diff --git a/code/datums/emergency_calls/custom.dm b/code/datums/emergency_calls/custom.dm index b62d984f6fe3..785c9208026c 100644 --- a/code/datums/emergency_calls/custom.dm +++ b/code/datums/emergency_calls/custom.dm @@ -33,8 +33,27 @@ return -/datum/emergency_call/custom/spawn_candidates(announce, override_spawn_loc) +/datum/emergency_call/custom/spawn_candidates(announce, override_spawn_loc, delete_mindless_mobs = FALSE) . = ..() + if(delete_mindless_mobs) + delete_mindless_mobs() + else + offer_mobs_for_ghosts() + +/datum/emergency_call/custom/proc/offer_mobs_for_ghosts() if(owner) for(var/mob/living/carbon/human/H in players_to_offer) owner.free_for_ghosts(H) + +/datum/emergency_call/custom/proc/delete_mindless_mobs() + var/count_mob_deleted = 0 + for(var/player in players_to_offer) + if(!ismob(player)) + continue + var/mob/spawned_mob = player + if(spawned_mob.mind) + continue + qdel(spawned_mob) + count_mob_deleted++ + + message_admins("After ERT spawn as [name], [count_mob_deleted] out of [mob_max] mindless mobs were removed.") diff --git a/code/datums/emergency_calls/us_army.dm b/code/datums/emergency_calls/us_army.dm new file mode 100644 index 000000000000..57a5bfb4568a --- /dev/null +++ b/code/datums/emergency_calls/us_army.dm @@ -0,0 +1,55 @@ + +/datum/emergency_call/us_army + name = "US Army (32nd Armor)" + home_base = /datum/lazy_template/ert/uscm_station + mob_min = 1 + mob_max = 14 + probability = 0 + shuttle_id = "" + chance_hidden = 0 + name_of_spawn = /obj/effect/landmark/ert_spawns/groundside_army + + max_heavies = 2 + max_medics = 2 + max_smartgunners = 2 + +/datum/emergency_call/us_army/New() + ..() + arrival_message = "Break, break. This is USS Victory, local Army elements confirm your sector is free of hostile tangos. Be advised, the 32nd Armour is en-route, forward elements should be entering your AO shortly to assist in mop-up. You may have just saved a lot of lives today Falling Falcons. Over and out." + objectives = "Assist the Marines in securing the area of operations." + +/datum/emergency_call/us_army/create_member(datum/mind/new_mind, 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/mob = new(spawn_loc) + new_mind.transfer_to(mob, TRUE) + + if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + leader = mob + arm_equipment(mob, /datum/equipment_preset/us_army/sl, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the US Army Squad Leader!")) + + else if(heavies < max_heavies && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(mob.client, JOB_SQUAD_SPECIALIST)) + heavies++ + to_chat(mob, SPAN_ROLE_HEADER("You are a US Army Tank Crewman!")) + arm_equipment(mob, /datum/equipment_preset/us_army/tank, TRUE, TRUE) + + else if(medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job)) + medics++ + arm_equipment(mob, /datum/equipment_preset/us_army/medic, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the US Army Medic!")) + + else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN)) + smartgunners++ + to_chat(mob, SPAN_ROLE_HEADER("You are a US Army Gunner!")) + arm_equipment(mob, /datum/equipment_preset/us_army/gunner, TRUE, TRUE) + + else + arm_equipment(mob, /datum/equipment_preset/us_army/standard, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are a US Army Trooper!")) + + to_chat(mob, SPAN_ROLE_BODY("You are a member of the US Army 32nd Armored Division. You and your division have been held in reserve until the Falling Falcons could secure a beachhead. Now that this is true, you are being sent in to help secure the breach!")) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) diff --git a/code/datums/factions/uscm.dm b/code/datums/factions/uscm.dm index 71cb979d2131..047b78f39f47 100644 --- a/code/datums/factions/uscm.dm +++ b/code/datums/factions/uscm.dm @@ -55,6 +55,23 @@ marine_rk = "soccmd" if(JOB_FORECON_SUPPORT) marine_rk = "tech" + // US Army + if(JOB_ARMY_TROOPER) + marine_rk = "trpr" + if(JOB_ARMY_ENGI) + marine_rk = "cet" + if(JOB_ARMY_MEDIC) + marine_rk = "cmt" + if(JOB_ARMY_MARKSMAN) + marine_rk = "snpr" + if(JOB_ARMY_SMARTGUNNER) + marine_rk = "mmg" + if(JOB_ARMY_SNCO) + marine_rk = "sl_army" + if(JOB_ARMY_CO) + marine_rk = "co_army" + if(JOB_ARMY_SYN) + marine_rk = "syn_army" if(squad.squad_leader == current_human) switch(squad.squad_type) if("Squad") @@ -119,6 +136,23 @@ marine_rk = "leader" if(JOB_FORECON_SUPPORT) marine_rk = "tech" + // US Army + if(JOB_ARMY_TROOPER) + marine_rk = "trpr" + if(JOB_ARMY_MEDIC) + marine_rk = "cmt" + if(JOB_ARMY_ENGI) + marine_rk = "cet" + if(JOB_ARMY_MARKSMAN) + marine_rk = "snpr" + if(JOB_ARMY_SMARTGUNNER) + marine_rk = "mmg" + if(JOB_ARMY_SNCO) + marine_rk = "sl_army" + if(JOB_ARMY_CO) + marine_rk = "co_army" + if(JOB_ARMY_SYN) + marine_rk = "syn_army" if(JOB_INTEL) marine_rk = "io" if(JOB_CAS_PILOT) diff --git a/code/datums/skills/forecon.dm b/code/datums/skills/forecon.dm index bc2b0faf109f..cf14b94ecc1e 100644 --- a/code/datums/skills/forecon.dm +++ b/code/datums/skills/forecon.dm @@ -101,3 +101,83 @@ MILITARY SURVIVORS SKILL_VEHICLE = SKILL_VEHICLE_DEFAULT, SKILL_JTAC = SKILL_JTAC_TRAINED, ) + +/datum/skills/military/survivor/army_standard + name = "US Army Trooper" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/military/survivor/army_engineer + name = "US Army Combat Engineering Technician" + skills = list( + SKILL_ENGINEER = SKILL_CONSTRUCTION_ENGI, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, + SKILL_JTAC = SKILL_JTAC_TRAINED, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + ) + +/datum/skills/military/survivor/army_medic + name = "US Army Combat Medical Technician" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/military/survivor/army_marksman + name = "US Army Marksman" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREMAN_SKILLED, + SKILL_SPEC_WEAPONS = SKILL_SPEC_SCOUT, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_TRAINED, + ) + +/datum/skills/military/survivor/army_gunner + name = "US Army Heavy Gunner" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREMAN_SKILLED, + SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + ) + +/datum/skills/military/survivor/army_sl + name = "US Army Squad Leader" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREMAN_SKILLED, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_EXPERT, + SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, + ) diff --git a/code/game/area/hunting_preserve.dm b/code/game/area/hunting_preserve.dm index c9603b8def93..35ae84654642 100644 --- a/code/game/area/hunting_preserve.dm +++ b/code/game/area/hunting_preserve.dm @@ -1,5 +1,5 @@ -///Predator Hunting Grounds stuff +///Predator Hunting Grounds stuff | Jungle Moon /area/yautja_grounds name = "\improper Yautja Hunting Grounds" icon_state = "green" @@ -59,7 +59,104 @@ base_muffle = MUFFLE_HIGH soundscape_interval = 30 -///TP Areas/Prep areas +/area/yautja_grounds/caves/central + name = "\improper Yautja Hunting Grounds Central Caves" + icon_state = "cave" + +/area/yautja_grounds/caves/north + name = "\improper Yautja Hunting Grounds North Caves" + icon_state = "caves_north" + +/area/yautja_grounds/caves/north_west + name = "\improper Yautja Hunting Grounds North West Caves" + icon_state = "caves_north" + +/area/yautja_grounds/caves/north_east + name = "\improper Yautja Hunting Grounds North East Caves" + icon_state = "caves_north" + +/area/yautja_grounds/caves/west + name = "\improper Yautja Hunting Grounds West Caves" + icon_state = "caves_virology" + +/area/yautja_grounds/caves/east + name = "\improper Yautja Hunting Grounds East Caves" + icon_state = "caves_east" + +/area/yautja_grounds/caves/south + name = "\improper Yautja Hunting Grounds South Caves" + icon_state = "caves_research" + +/area/yautja_grounds/caves/south_west + name = "\improper Yautja Hunting Grounds South West Caves" + icon_state = "caves_sw" + +/area/yautja_grounds/caves/south_east + name = "\improper Yautja Hunting Grounds South East Caves" + icon_state = "caves_se" + +/area/yautja_grounds/temple/entrance + name = "\improper Yautja Hunting Grounds Temple" + icon_state = "bluenew" + ambience_exterior = AMBIENCE_JUNGLE + +// Hunting Grounds | Desert Moon +/area/yautja_grounds/desert + name = "\improper Yautja Hunting Grounds Desert central" + icon_state = "central" + ambience_exterior = AMBIENCE_BIGRED + soundscape_playlist = SCAPE_PL_WIND + soundscape_interval = 30 + +/area/yautja_grounds/desert/north + name = "\improper Yautja Hunting Grounds Desert north" + icon_state = "north" + +/area/yautja_grounds/desert/north_east + name = "\improper Yautja Hunting Grounds Desert north east" + icon_state = "northeast" + +/area/yautja_grounds/desert/north_west + name = "\improper Yautja Hunting Grounds Desert north west" + icon_state = "northwest" + +/area/yautja_grounds/desert/east + name = "\improper Yautja Hunting Grounds Desert east" + icon_state = "east" + +/area/yautja_grounds/desert/south + name = "\improper Yautja Hunting Grounds Desert south" + icon_state = "south" + +/area/yautja_grounds/desert/south_east + name = "\improper Yautja Hunting Grounds Desert south east" + icon_state = "southeast" + +/area/yautja_grounds/desert/south_west + name = "\improper Yautja Hunting Grounds Desert south west" + icon_state = "southwest" + +/area/yautja_grounds/desert/west + name = "\improper Yautja Hunting Grounds Desert west" + icon_state = "west" + +/area/yautja_grounds/temple + name = "\improper Yautja Hunting Grounds Temple" + icon_state = "bluenew" + ceiling_muffle = FALSE + ambience_exterior = AMBIENCE_CAVE + ceiling = CEILING_UNDERGROUND_SANDSTONE_BLOCK_CAS + +/area/yautja_grounds/temple/entrance/desert + name = "\improper Yautja Hunting Grounds Temple" + icon_state = "bluenew" + ambience_exterior = AMBIENCE_BIGRED + soundscape_playlist = SCAPE_PL_WIND + soundscape_interval = 30 + ceiling = CEILING_NONE + +///TP Areas/Prep Areas + /area/yautja_grounds/prep_room name = "\improper Jungle Moon Campsite" icon_state = "red" @@ -68,3 +165,17 @@ ceiling_muffle = FALSE base_muffle = MUFFLE_MEDIUM ceiling = CEILING_SANDSTONE_ALLOW_CAS + +/area/yautja_grounds/prep_room/desert + name = "\improper Desert Moon Campsite" + ambience_exterior = AMBIENCE_BIGRED + soundscape_playlist = SCAPE_PL_WIND + soundscape_interval = 30 + sound_environment = SOUND_ENVIRONMENT_GENERIC + ceiling_muffle = TRUE + ceiling = CEILING_NONE + +/area/yautja_grounds/prep_room/desert/interior + name ="\improper Desert Moon Campsite Interior" + ceiling_muffle = FALSE + ceiling = CEILING_SANDSTONE_ALLOW_CAS diff --git a/code/game/area/tyrargo_rift.dm b/code/game/area/tyrargo_rift.dm new file mode 100644 index 000000000000..d6630eff4f1a --- /dev/null +++ b/code/game/area/tyrargo_rift.dm @@ -0,0 +1,656 @@ +//lv759 AREAS--------------------------------------// + +/area/tyrargo +// name = "Tyrargo Rift" + icon_state = "lv-626" + can_build_special = TRUE + powernet_name = "ground" + minimap_color = MINIMAP_AREA_COLONY_RESANDCOM + +//parent types + +/area/tyrargo/indoors + name = "Tyrargo - Indoors" + icon_state = "unknown" + ceiling = CEILING_METAL + ambience_exterior = AMBIENCE_TYRARGO_CITY + +/area/tyrargo/outdoors + name = "Tyrargo - Outdoors" + icon_state = "unknown" + ceiling = CEILING_NONE + ambience_exterior = AMBIENCE_TYRARGO_CITY + +/area/tyrargo/underground + name = "Tyrargo - Underground" + icon_state = "unknown" + ceiling = CEILING_UNDERGROUND_METAL_BLOCK_CAS + ambience_exterior = AMBIENCE_TYRARGO_SEWER_CITY + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ceiling_muffle = FALSE + +/area/tyrargo/oob + name = "Out Of Bounds" + icon_state = "unknown" + ceiling = CEILING_MAX + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + minimap_color = MINIMAP_AREA_OOB + requires_power = FALSE + ambience_exterior = AMBIENCE_TYRARGO_CITY + +/area/tyrargo/oob/outdoors + ceiling_muffle = FALSE + +// Landing Zone One + +/area/tyrargo/landing_zone_1 + name = "Firebase Charlie - Landing Zone One" + icon_state = "yellow" + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + linked_lz = DROPSHIP_LZ1 + requires_power = FALSE + ambience_exterior = AMBIENCE_TYRARGO_CITY + +/area/tyrargo/landing_zone_1/no_tunnel + icon_state = "dk_yellow" + flags_area = AREA_NOTUNNEL + +/area/tyrargo/landing_zone_1/ceiling + ceiling = CEILING_METAL + +/area/tyrargo/landing_zone_1/underground + ceiling = CEILING_UNDERGROUND_METAL_BLOCK_CAS + +/area/tyrargo/landing_zone_1/west_trench + name = "Firebase Charlie - Western Trench" + icon_state = "ass_line" + minimap_color = MINIMAP_AREA_CONTESTED_ZONE + +/area/tyrargo/landing_zone_1/north_trench + name = "Firebase Charlie - Northern Trench" + icon_state = "ass_line" + minimap_color = MINIMAP_AREA_CONTESTED_ZONE + +/area/tyrargo/landing_zone_1/no_mans_land + name = "Firebase Charlie - No Man's Land" + icon_state = "security_sub" + minimap_color = MINIMAP_LAVA + +/area/tyrargo/landing_zone_1/comms + name = "Firebase Charlie - Communications Control Bunker" + requires_power = TRUE + +// Landing Zone Two + +/area/tyrargo/landing_zone_2 + name = "USASF Airbase Anderson - Landing Zone Two" + icon_state = "yellow" + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + linked_lz = DROPSHIP_LZ2 + requires_power = FALSE + ambience_exterior = AMBIENCE_TYRARGO_CITY + +/area/tyrargo/landing_zone_2/road + name = "USASF Airbase Anderson - Road" + icon_state = "shuttle3" + minimap_color = MINIMAP_AREA_SHIP + +/area/tyrargo/landing_zone_2/strip + name = "USASF Airbase Anderson - Airstrip" + icon_state = "shuttle3" + minimap_color = MINIMAP_AREA_COMMS + flags_area = AREA_NOTUNNEL + +/area/tyrargo/landing_zone_2/no_tunnel + icon_state = "dk_yellow" + flags_area = AREA_NOTUNNEL + +/area/tyrargo/landing_zone_2/ceiling + ceiling = CEILING_METAL + minimap_color = MINIMAP_AREA_GLASS + +/area/tyrargo/landing_zone_2/east_trench + name = "USASF Airbase Anderson - North-East Trench" + minimap_color = MINIMAP_AREA_CELL_MED + +// Outskirts Road + +/area/tyrargo/outdoors/outskirts_road + name = "Outskirts Road" + icon_state = "shuttle2" + minimap_color = MINIMAP_AREA_SHIP + requires_power = FALSE + +/area/tyrargo/outdoors/outskirts_road/west + name = "Outskirts Road - West" + linked_lz = list(DROPSHIP_LZ1, DROPSHIP_LZ2) + +/area/tyrargo/outdoors/outskirts_road/central + name = "Outskirts Road - Central" + +/area/tyrargo/outdoors/outskirts_road/east + name = "Outskirts Road - East" + +// Colony Streets + +/area/tyrargo/outdoors/colony_streets + name = "Colony Streets" + icon_state = "shuttle3" + ceiling = CEILING_NONE + minimap_color = MINIMAP_AREA_COLONY_STREETS + requires_power = FALSE + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/outdoors/colony_streets/north_west + name = "Colony Streets - North-West" + +/area/tyrargo/outdoors/colony_streets/west + name = "Colony Streets - West" + +/area/tyrargo/outdoors/colony_streets/south_west + name = "Colony Streets - South-West" + +/area/tyrargo/outdoors/colony_streets/north + name = "Colony Streets - North" + +/area/tyrargo/outdoors/colony_streets/north_east + name = "Colony Streets - North-East" + +/area/tyrargo/outdoors/colony_streets/east + name = "Colony Streets - East" + +/area/tyrargo/outdoors/colony_streets/south_east + name = "Colony Streets - South-East" + +// Colony Exterior + +/area/tyrargo/outdoors/colony_exterior + name = "Colony Exterior" + icon_state = "mining" + ceiling = CEILING_NONE + minimap_color = MINIMAP_AREA_JUNGLE + requires_power = FALSE + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/outdoors/colony_exterior/north_west + name = "Colony Exterior - North-West" + +/area/tyrargo/outdoors/colony_exterior/west + name = "Colony Exterior - West" + +/area/tyrargo/outdoors/colony_exterior/south_west + name = "Colony Exterior - South-West" + +/area/tyrargo/outdoors/colony_exterior/north + name = "Colony Exterior - North" + +/area/tyrargo/outdoors/colony_exterior/north_east + name = "Colony Exterior - North-East" + +/area/tyrargo/outdoors/colony_exterior/east + name = "Colony Exterior - East" + +/area/tyrargo/outdoors/colony_exterior/south_east + name = "Colony Exterior - South-East" + +// Colony Walkways + +/area/tyrargo/outdoors/walkway_access + name = "External Access Walkway" + icon_state = "showroom" + ceiling = CEILING_NONE + minimap_color = MINIMAP_AREA_CELL_HIGH + requires_power = FALSE + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/outdoors/walkway_access/power_sewer + name = "External Walkway - Power/Sewer" + +/area/tyrargo/outdoors/walkway_access/sewer_apart + name = "External Walkway - Sewer/Apartments" + +/area/tyrargo/outdoors/walkway_access/power_apart + name = "External Walkway - Power/Apartments" + +/area/tyrargo/outdoors/walkway_access/apart_gararge + name = "External Walkway - Apartments/Gararge" + +/area/tyrargo/outdoors/walkway_access/gararge_admin + name = "External Walkway - Gararge/Admin" + +/area/tyrargo/outdoors/walkway_access/museum_central + name = "External Walkway - Museum" + +//// Colony Buildings //// + +// Apartment + +/area/tyrargo/indoors/apartment + minimap_color = MINIMAP_AREA_COLONY_RESANDCOM + icon_state = "quart" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/apartment/north_ground + name = "Standfeld Apartment Complex - North-Ground" + +/area/tyrargo/indoors/apartment/north_upper + name = "Standfeld Apartment Complex - North-Upper" + +/area/tyrargo/indoors/apartment/south_ground + name = "Standfeld Apartment Complex - South-Ground" + +/area/tyrargo/indoors/apartment/south_upper + name = "Standfeld Apartment Complex - South-Upper" + +// Bar + +/area/tyrargo/indoors/bar + minimap_color = MINIMAP_AREA_CELL_VIP + icon_state = "bar" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/bar/ground + name = "Last Throw Bar - Ground" + +/area/tyrargo/indoors/bar/upper + name = "Last Throw Bar - Upper" + +/area/tyrargo/indoors/bar/upper/external + name = "Last Throw Bar - Upper/External" + ceiling = CEILING_NONE + requires_power = FALSE + +// Power-Plant + +/area/tyrargo/indoors/engineering + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + icon_state = "maint_engine" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/engineering/ground + name = "Sector F: Power Plant - Ground" + +/area/tyrargo/indoors/engineering/upper + name = "Sector F: Power Plant - Upper" + +/area/tyrargo/indoors/engineering/upper/external + name = "Sector F: Power Plant - Upper/External" + ceiling = CEILING_NONE + requires_power = FALSE + +// Sewer Treatment + +/area/tyrargo/indoors/sewer_treatment + minimap_color = MINIMAP_AREA_HYBRISARESEARCH + icon_state = "explored" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/sewer_treatment/ground + name = "Sewer Treatment Plant - Ground" + +/area/tyrargo/indoors/sewer_treatment/upper + name = "Sewer Treatment Plant - Upper" + +/area/tyrargo/indoors/sewer_treatment/lower + name = "Sewer Treatment Plant - Underground Access" + +/area/tyrargo/indoors/sewer_treatment/upper/external + name = "Sewer Treatment Plant - Upper/External" + ceiling = CEILING_NONE + requires_power = FALSE + +// Ancillery Comms + +/area/tyrargo/indoors/comms + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + icon_state = "ai_upload" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/comms/ground + name = "Ancillery Communications System - Ground" + +/area/tyrargo/indoors/comms/upper + name = "Ancillery Communications System - Upper" + ceiling = CEILING_NONE + requires_power = FALSE + +// Gararge + +/area/tyrargo/indoors/gararge + minimap_color = MINIMAP_AREA_CELL_MED + icon_state = "HH_Mines" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/gararge/ground + name = "Busters Car Repair - Ground" + +/area/tyrargo/indoors/gararge/upper + name = "Busters Car Repair - Ground" + ceiling = CEILING_NONE + +/area/tyrargo/indoors/gararge/upper/external + name = "Busters Car Repair - Upper/External" + ceiling = CEILING_NONE + requires_power = FALSE + +// Mall + +/area/tyrargo/indoors/mall + name = "Tyrargo Wesfeld Mall - Ground" + minimap_color = MINIMAP_AREA_COLONY_RESANDCOM + icon_state = "HH_Mines" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/mall/upper + name = "Tyrargo Wesfeld Mall - Upper" + +/area/tyrargo/indoors/mall/upper/external + name = "Tyrargo Wesfeld Mall - Upper/External" + ceiling = CEILING_NONE + requires_power = FALSE + +// Administration + +/area/tyrargo/indoors/admin + minimap_color = MINIMAP_AREA_COLONY_SPACE_PORT + icon_state = "storage" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 45 + +/area/tyrargo/indoors/admin/ground + name = "Sector F: Government Administration - Ground" + +/area/tyrargo/indoors/admin/upper + name = "Sector F: Government Administration - Upper" + +/area/tyrargo/indoors/admin/upper/external + name = "Sector F: Government Administration - Upper-External" + ceiling = CEILING_NONE + requires_power = FALSE + +// Market + +/area/tyrargo/indoors/market + minimap_color = MINIMAP_AREA_COLONY_HOSPITAL + icon_state = "HH_Panic" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 30 + +/area/tyrargo/indoors/market/ground + name = "Farmers Market - Ground" + +/area/tyrargo/indoors/market/upper + name = "Farmers Market - Upper" + ceiling = CEILING_NONE + requires_power = FALSE + +// Security + +/area/tyrargo/indoors/security + minimap_color = MINIMAP_AREA_COLONY_MARSHALLS + icon_state = "HH_Basement" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 30 + +/area/tyrargo/indoors/security/ground + name = "Sector F: Marshals Outpost - Ground" + +/area/tyrargo/indoors/security/upper + name = "Sector F: Marshals Outpost - Upper" + ceiling = CEILING_NONE + requires_power = FALSE + +// Museum West + +/area/tyrargo/indoors/museum_storage + minimap_color = MINIMAP_AREA_HYBRISARESEARCH + icon_state = "auxstorage" + unoviable_timer = FALSE + soundscape_playlist = SCAPE_PL_TYRARGO_ALERT + soundscape_interval = 30 + +/area/tyrargo/indoors/museum_storage/ground + name = "Museum Carpark - Ground" + +/area/tyrargo/indoors/museum_storage/upper + name = "Museum Carpark - Upper" + +/area/tyrargo/indoors/museum_storage/upper/external + name = "Museum Carpark - Upper/External" + ceiling = CEILING_NONE + requires_power = FALSE + +// fob generator area + +/area/tyrargo/indoors/power_substation_outskirt + name = "Power Substation: West Outskirts" + icon_state = "maint_engine" + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + +// Western Outdoor Areas + +/area/tyrargo/outdoors/outskirts + name = "Outskirts" + icon_state = "green" + minimap_color = MINIMAP_AREA_JUNGLE + requires_power = FALSE + +/area/tyrargo/outdoors/outskirts/north_west_usasf + name = "Outskirts - Worth-West Anderson Airbase" + linked_lz = list(DROPSHIP_LZ1, DROPSHIP_LZ2) + +/area/tyrargo/outdoors/outskirts/north_east_usasf + name = "Outskirts - North-East Anderson Airbase" + +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller + linked_lz = DROPSHIP_LZ2 + +/area/tyrargo/outdoors/outskirts/central + name = "Outskirts - Central" + +/area/tyrargo/outdoors/outskirts/central/landing_zone + linked_lz = DROPSHIP_LZ1 + +/area/tyrargo/outdoors/outskirts/east + name = "Outskirts - East" + +/area/tyrargo/outdoors/outskirts/river + name = "Outskirts - River" + +/area/tyrargo/outdoors/outskirts/fsb_north + name = "Fire Support Base - North" + icon_state = "security_sub" + minimap_color = MINIMAP_AREA_DERELICT + requires_power = TRUE + +/area/tyrargo/outdoors/outskirts/fsb_south + name = "Fire Support Base - South" + icon_state = "security_sub" + minimap_color = MINIMAP_AREA_DERELICT + requires_power = TRUE + +/area/tyrargo/outdoors/outskirts/east_trench + name = "Fire Support Base - Eastern Trench" + icon_state = "ass_line" + minimap_color = MINIMAP_AREA_GLASS + +/area/tyrargo/outdoors/outskirts/no_mans_land + name = "Fire Support Base - No Man's Land" + icon_state = "security_sub" + minimap_color = MINIMAP_LAVA + +// Surface Bunker + +/area/tyrargo/indoors/bunker + name = "Surface Bunker" + icon_state = "security" + minimap_color = MINIMAP_AREA_SEC + ceiling = CEILING_UNDERGROUND_METAL_ALLOW_CAS + base_muffle = MUFFLE_LOW + +/area/tyrargo/indoors/bunker/north + name = "Surface Bunker - Alpha" + +/area/tyrargo/indoors/bunker/north_south + name = "Surface Bunker - Bravo" + +/area/tyrargo/indoors/bunker/central + name = "Surface Bunker - Charlie" + +/area/tyrargo/indoors/bunker/central_south + name = "Surface Bunker - Delta" + +// Underground Bunker + +/area/tyrargo/underground/bunker + name = "Underground Bunker" + icon_state = "security" + minimap_color = MINIMAP_AREA_SEC + +/area/tyrargo/underground/bunker/north + name = "Bunker Network - Sector Tango-12" + +/area/tyrargo/underground/bunker/south + name = "Bunker Network - Sector Epsilon-29" + +/area/tyrargo/underground/bunker/ammo_dump_entrance + name = "USASF Airbase Anderson - Underground Ammo Dump" + linked_lz = DROPSHIP_LZ2 + +/area/tyrargo/underground/bunker/ammo_dump_connection + name = "USASF Airbase Anderson - Underground Cave Network" + requires_power = FALSE + linked_lz = DROPSHIP_LZ2 + +// Underground Sewer + +/area/tyrargo/underground/sewer + name = "City Sewer" + icon_state = "security" + minimap_color = MINIMAP_AREA_COLONY_STREETS + +/area/tyrargo/underground/sewer/south + name = "City Sewers - South" + +/area/tyrargo/underground/sewer/north + name = "City Sewers - North" + +// Underground Other + +/area/tyrargo/underground/oob_area + name = "Disconnected Underground Bunker Network" + minimap_color = MINIMAP_AREA_OOB + icon_state = "Holodeck" + ceiling = CEILING_MAX + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + requires_power = FALSE + +/area/tyrargo/underground/engineering + name = "Sector F: Power Plant - Underground" + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + icon_state = "maint_engine" + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +/area/tyrargo/underground/apartment + name = "Standfeld Apartment Complex - Underground" + minimap_color = MINIMAP_AREA_COLONY_RESANDCOM + icon_state = "quart" + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +/area/tyrargo/underground/mall + name = "Tyrargo Wesfeld Mall - Underground" + minimap_color = MINIMAP_AREA_COLONY_RESANDCOM + icon_state = "HH_Mines" + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +/area/tyrargo/underground/museum_carpark + name = "Museum Carpark - Underground" + minimap_color = MINIMAP_AREA_COLONY_RESANDCOM + icon_state = "auxstorage" + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +/area/tyrargo/underground/power_substation + name = "Sewer - Power-Routing Substation" + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + icon_state = "maint_engine" + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +// Saipan + +/area/tyrargo/indoors/saipan + name = "Dropship Saipan" + minimap_color = MINIMAP_SQUAD_ECHO + icon_state = "Holodeck" + ceiling = CEILING_UNDERGROUND_METAL_ALLOW_CAS + requires_power = FALSE + unoviable_timer = FALSE + +// Tychon + +/area/tyrargo/indoors/tychon + name = "Dropship Tychon" + minimap_color = MINIMAP_SQUAD_ECHO + icon_state = "Holodeck" + ceiling = CEILING_UNDERGROUND_METAL_ALLOW_CAS + requires_power = FALSE + unoviable_timer = FALSE + ceiling_muffle = FALSE + +// USS Heyst + +/area/tyrargo/indoors/heyst + name = "USS Heyst - Mid Deck" + minimap_color = MINIMAP_SQUAD_ECHO + icon_state = "Holodeck" + ceiling = CEILING_UNDERGROUND_METAL_ALLOW_CAS + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_TYRARGO_CITY + ceiling_muffle = FALSE + base_muffle = MUFFLE_MEDIUM + +/area/tyrargo/indoors/heyst/upper + name = "USS Heyst - Upper Deck" + +// ERT Spawn Area + +/area/tyrargo/outdoors/army_staging + name = "32nd Armor Division: Staging Area - Southern Outskirts" + icon_state = "Holodeck" + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + minimap_color = MINIMAP_AREA_SEC_CAVE + ceiling = CEILING_MAX + ceiling_muffle = FALSE + requires_power = FALSE diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index 570d6c59755d..1efa1bf9c65a 100644 --- a/code/game/gamemodes/colonialmarines/colonialmarines.dm +++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm @@ -56,6 +56,9 @@ /obj/effect/landmark/lv624/fog_blocker/short time_to_dispel = 15 MINUTES +/obj/effect/landmark/lv624/fog_blocker/long + time_to_dispel = 24 HOURS + /obj/effect/landmark/lv624/fog_blocker/Initialize(mapload, ...) . = ..() @@ -355,6 +358,7 @@ if(SSmapping.configs[GROUND_MAP].announce_text) var/rendered_announce_text = replacetext(SSmapping.configs[GROUND_MAP].announce_text, "###SHIPNAME###", MAIN_SHIP_NAME) marine_announcement(rendered_announce_text, "[MAIN_SHIP_NAME]") + lore_announcement() /datum/game_mode/proc/ares_command_check(mob/living/carbon/human/commander = null, force = FALSE) /// Job of the person being auto-promoted. @@ -427,6 +431,27 @@ ai_silent_announcement("Commencing final systems scan in 3 minutes.", ".V") log_game("Distress Signal ARES commencing final system scan in 3 minutes!") +/datum/game_mode/colonialmarines/proc/end_of_round_ert() + //A proc for calling end of round ERTs. + switch(SSmapping.configs[GROUND_MAP].map_name) + if(MAP_TYRARGO_RIFT) + SSticker.mode.get_specific_call(/datum/emergency_call/us_army, TRUE, TRUE) + +/datum/game_mode/colonialmarines/proc/lore_announcement() + //A proc that will queue up announcements for the lore of the map. + switch(SSmapping.configs[GROUND_MAP].map_name) + if(MAP_TYRARGO_RIFT) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(xeno_announcement), "My children. A great battle rages across this world, a world slathered in hosts for our taking! However, these hosts fight back with great ferocity. I have directed your sub-hive to this area, you will create a mighty cordon here to cover our western flank whilst another sub-hive overtakes a stronghold to your east that is filled with thousands of hosts!\n\nIn order to aid you, I have dispatched a legion of disposable drones ahead of you, they are far less intelligent than you, but will suffice in waylaying any remaining hostile hosts to your west until you have secured yourselves.", "everything", QUEEN_MOTHER_ANNOUNCE), 20 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "Almayer, this is the Tyrango Museum civilian evacuation site. We are under assault by a XX-121 cluster, but we are holding our own.\n\nWe have heavy XX-121 waves inbound from the north-east and are under heavy suppression, our evacuation craft are pinned by long range boiler strikes and the western city exits are too dangerous to move towards with ground based evacuation vehicles, we’re requesting you secure the western approach so you can suppress the enemy forces to allow civilian evacuation, over.", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 15 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(xeno_announcement), "Be on guard my children. I have sensed that the petrid sewers of this so called city could be flooded by the hosts at a moments notice if the hosts restore power to the area. The button to release this putrid water is found in the metal structure the hosts call the sewer treatement plant.", "everything", QUEEN_MOTHER_ANNOUNCE), 15 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "Attention: Analysis of city layout plans have identified a possible tactical advantage. A release valve can be triggered within the City Sewer Treatment Plant, this valve will flood the lower sewer tunnels with water, expunging a significant amount of xenobiological growth.\n\nHowever, this valve must be powered by repairing a special APC located within the underground power-substation, located east of the underground sewer treatment plant.", "ARES 3.2 Strategic Notice", 'sound/AI/commandreport.ogg'), 20 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "Almayer. We’re seeing increased XX-121 activity at the Tyrango evac site. Additional strains are inbound from the north.\n\nEnemy Boiler’s have moved close enough to suppress our air support, we’re re-orienting the Longstreet tanks to cover our flanks. Requesting immediate suppression of enemy forces near our location via the western city entrance, over. ", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 35 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "All elements, more XX-121 clusters are encroaching from our east. We’re under heavy attack from all quarters and have lost half of our Longstreet tank support to Crushers.\n\nWe’ve exhausted our HEAP munitions and have had to switch to soft-point munitions. We can’t take this for much longer, requesting urgent support from Almayer forces, over.", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 60 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "This is Tyrango. The xenos have begun to encroach from our southern flank. We only have a single tank left. We’re withdrawing to the middle corridor and have relocated the civilians to the inner perimeter.\n\nSituation is dire, we’re getting wasted. We need that support, over.", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 80 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "All elements! This is the Tyrango evac site, our situation is critical. The bugs have us surrounded on all fronts, our armoured support is destroyed and we’re now being pinned by enemy Ravagers.\n\nWe need urgent fire support, we can’t take it much longer.", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 100 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "Almayer! Bugs are pouring into the inner perimeter! Civilians are taking up arms to defend the site, but they’re untrained.\n\nWe’re being overrun, we need fire support now! Now god dammit!", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 120 MINUTES) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "##&@* all dead! Tyrango is overrun! T&^@%###--- the command post any second, %$#* we ne#@##s--------------------", "Tyrargo Civilian Evac, 1st Air Cav Headquarters", 'sound/AI/commandreport.ogg'), 140 MINUTES) + //This is processed each tick, but check_win is only checked 5 ticks, so we don't go crazy with scanning for mobs. @@ -597,6 +622,8 @@ SSticker.roundend_check_paused = TRUE round_finished = MODE_INFESTATION_M_MAJOR //Humans destroyed the xenomorphs. ares_conclude() + end_of_round_ert() + addtimer(VARSET_CALLBACK(SSticker, roundend_check_paused, FALSE), MARINE_MAJOR_ROUND_END_DELAY) else if(!num_humans && !num_xenos) round_finished = MODE_INFESTATION_DRAW_DEATH //Both were somehow destroyed. diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm index fd080478d65b..8d6f74f22bc3 100644 --- a/code/game/jobs/job/marine/squads.dm +++ b/code/game/jobs/job/marine/squads.dm @@ -259,6 +259,18 @@ roundstart = FALSE locked = TRUE +/datum/squad/marine/army + name = SQUAD_ARMY + equipment_color = "#349c30" + chat_color = "#349c30" + radio_freq = ARMY_FREQ + minimap_color = "#349c30" + background_icon = "background_civillian" + minimap_color = MINIMAP_SQUAD_ARMY + + active = FALSE + roundstart = FALSE + locked = TRUE //############################### UPP Squads /datum/squad/upp diff --git a/code/game/jobs/job/special/uscm.dm b/code/game/jobs/job/special/uscm.dm index 4ef5fa456986..2bbc90c9846a 100644 --- a/code/game/jobs/job/special/uscm.dm +++ b/code/game/jobs/job/special/uscm.dm @@ -20,3 +20,13 @@ /datum/job/special/uscm/tech title = JOB_FORECON_SUPPORT + +// US Army +/datum/job/special/uscm/trooper + title = JOB_ARMY_TROOPER + +/datum/job/special/uscm/cet + title = JOB_ARMY_ENGI + +/datum/job/special/uscm/cmt + title = JOB_ARMY_MEDIC diff --git a/code/game/machinery/telecomms/presets.dm b/code/game/machinery/telecomms/presets.dm index 4418194c0d65..c615fb5caec5 100644 --- a/code/game/machinery/telecomms/presets.dm +++ b/code/game/machinery/telecomms/presets.dm @@ -464,7 +464,7 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) id = "CentComm Receiver" network = "tcommsat" autolinkers = list("receiverCent") - freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, YAUT_OVR_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ, FORECON_FREQ) + freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, YAUT_OVR_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ, FORECON_FREQ, ARMY_FREQ) //Buses diff --git a/code/game/objects/effects/decals/strata_decals.dm b/code/game/objects/effects/decals/strata_decals.dm index ef47193be1eb..4412f0cc09ee 100644 --- a/code/game/objects/effects/decals/strata_decals.dm +++ b/code/game/objects/effects/decals/strata_decals.dm @@ -39,6 +39,13 @@ mouse_opacity = MOUSE_OPACITY_TRANSPARENT keep_as_object = TRUE +/obj/effect/decal/strata_decals/tyrargo_mud_corner + icon_state = "tyrargo_mud_innercorner" + name = "mud" + desc = null + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + keep_as_object = TRUE + ////////////////INDOORS STUFF//////////////////// /obj/effect/decal/strata_decals/grime diff --git a/code/game/objects/effects/decals/warning_stripes.dm b/code/game/objects/effects/decals/warning_stripes.dm index 4ce5f6319777..7d6b42a4963e 100644 --- a/code/game/objects/effects/decals/warning_stripes.dm +++ b/code/game/objects/effects/decals/warning_stripes.dm @@ -109,6 +109,10 @@ name = "grass edge" icon_state = "grass_innercorner" +/obj/effect/decal/grass_overlay/grass1/dark + + icon_state = "grass_outercorner_dark" + /obj/effect/decal/siding name = "siding" icon = 'icons/turf/floors/floors.dmi' diff --git a/code/game/objects/effects/landmarks/corpsespawner.dm b/code/game/objects/effects/landmarks/corpsespawner.dm index efb61e0f2f45..b471b2f8d1e1 100644 --- a/code/game/objects/effects/landmarks/corpsespawner.dm +++ b/code/game/objects/effects/landmarks/corpsespawner.dm @@ -376,3 +376,23 @@ equip_path = /datum/equipment_preset/corpse/hybrisa/scientist_xenoarchaeologist/burst //*****************************************************************************************************/ + +///US Army Corpses/// + +// Army Trooper // + +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper + name = "Corpse - US Army - Trooper" + equip_path = /datum/equipment_preset/corpse/tyrargo/us_army_trooper + +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper/burst + name = "Corpse - Burst - US Army - Trooper" + equip_path = /datum/equipment_preset/corpse/tyrargo/us_army_trooper/burst + +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic + name = "Corpse - US Army - Trooper" + equip_path = /datum/equipment_preset/corpse/tyrargo/us_army_medic + +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic/burst + name = "Corpse - Burst - US Army - Trooper" + equip_path = /datum/equipment_preset/corpse/tyrargo/us_army_medic/burst diff --git a/code/game/objects/effects/landmarks/landmarks.dm b/code/game/objects/effects/landmarks/landmarks.dm index 3b2a71201e53..dfdf63b6bd5a 100644 --- a/code/game/objects/effects/landmarks/landmarks.dm +++ b/code/game/objects/effects/landmarks/landmarks.dm @@ -6,6 +6,7 @@ unacidable = TRUE var/invisibility_value = INVISIBILITY_MAXIMUM + var/spawn_chance = 100 /obj/effect/landmark/New() tag = "landmark*[name]" @@ -117,6 +118,10 @@ name = "distress_groundside_xeno" icon_state = "spawn_distress_xeno" +/obj/effect/landmark/ert_spawns/groundside_army + name = "distress_groundside_army" + icon_state = "spawn_distress_wo" + /obj/effect/landmark/monkey_spawn name = "monkey_spawn" icon_state = "monkey_spawn" @@ -169,6 +174,7 @@ #undef MAXIMUM_LIZARD_AMOUNT + /obj/effect/landmark/latewhiskey name = "Whiskey Outpost Late join" @@ -662,6 +668,79 @@ GLOB.comm_tower_landmarks_net_two -= src return ..() +// AMMO SPAWN (tyrargo) + +// m41a ammo + +/obj/effect/landmark/ammo_spawn/m41a_random_spawn + name = "m41a ammo spawn" + icon_state = "ipool" + +/obj/effect/landmark/ammo_spawn/m41a_random_spawn/Initialize(mapload, ...) + . = ..() + if(!prob(spawn_chance)) + return + + new /obj/item/ammo_magazine/rifle(loc) + +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn + name = "m41a extended ammo spawn" + icon_state = "ipool" + +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn/Initialize(mapload, ...) + . = ..() + if(!prob(spawn_chance)) + return + + new /obj/item/ammo_magazine/rifle/extended(loc) + +// M4RA Rifle ammo + +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn + name = "m4ra ammo spawn" + icon_state = "ipool" + +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn/Initialize(mapload, ...) + . = ..() + if(!prob(spawn_chance)) + return + + new /obj/item/ammo_magazine/rifle/m4ra(loc) + +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn + name = "m41a extended ammo spawn" + icon_state = "ipool" + +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn/Initialize(mapload, ...) + . = ..() + if(!prob(spawn_chance)) + return + + new /obj/item/ammo_magazine/rifle/m4ra/extended(loc) + +// vp78 ammo +/obj/effect/landmark/ammo_spawn/vp78_ammo + name = "vp78 ammo" + icon_state = "ipool" + +/obj/effect/landmark/ammo_spawn/vp78_ammo/Initialize(mapload, ...) + . = ..() + if(!prob(spawn_chance)) + return + + new /obj/item/ammo_magazine/pistol/vp78(loc) + +// smg ammo +/obj/effect/landmark/ammo_spawn/smg_ammo + name = "SMG ammo (60)" + icon_state = "ipool" + +/obj/effect/landmark/ammo_spawn/smg_ammo/Initialize(mapload, ...) + . = ..() + if(!prob(spawn_chance)) + return + + new /obj/item/ammo_magazine/smg/m39(loc) // zombie spawn /obj/effect/landmark/zombie diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index c31fb47c1d35..b38664118eee 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -29,3 +29,20 @@ name = "Distress Xeno weed node spawner" icon_state = "weednode" path_to_spawn = /obj/effect/alien/weeds/node + +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky + name = "Distress Xeno sticky spawner" + icon = 'icons/mob/xenos/effects.dmi' + icon_state = "sticky" + path_to_spawn = /obj/effect/alien/resin/sticky + +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced + name = "Distress Xeno reinforced wall spawner" + icon_state = "wall_r" + path_to_spawn = /turf/closed/wall/resin/thick + is_turf = TRUE + +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced + name = "Distress Xeno reinforced door spawner" + icon_state = "door_r" + path_to_spawn = /obj/structure/mineral_door/resin/thick diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index 36007737455d..5a1c0efa360b 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -563,7 +563,9 @@ spawn_priority = SPAWN_PRIORITY_HIGH -//Military Survivors// +////************Military Survivors************//// + +// Forecon // /obj/effect/landmark/survivor_spawner/lv522_forecon_tech equipment = /datum/equipment_preset/survivor/forecon/tech @@ -590,6 +592,30 @@ /obj/effect/landmark/survivor_spawner/upp icon_state = "surv_upp" +// US Army // + +/obj/effect/landmark/survivor_spawner/us_army_engineer + equipment = /datum/equipment_preset/survivor/army/engineer + spawn_priority = SPAWN_PRIORITY_HIGH + +/obj/effect/landmark/survivor_spawner/us_army_medic + equipment = /datum/equipment_preset/survivor/army/medic + spawn_priority = SPAWN_PRIORITY_MEDIUM + +/obj/effect/landmark/survivor_spawner/us_army_marksman + equipment = /datum/equipment_preset/survivor/army/marksman + spawn_priority = SPAWN_PRIORITY_MEDIUM + +/obj/effect/landmark/survivor_spawner/us_army_gunner + equipment = /datum/equipment_preset/survivor/army/gunner + spawn_priority = SPAWN_PRIORITY_MEDIUM + +/obj/effect/landmark/survivor_spawner/us_army_sl + equipment = /datum/equipment_preset/survivor/army/sl + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + +// UPP Recon // + /obj/effect/landmark/survivor_spawner/upp/soldier icon_state = "surv_upp" equipment = /datum/equipment_preset/survivor/upp/soldier diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index 1c9991108598..faab5e7908f9 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -217,6 +217,10 @@ /obj/item/device/encryptionkey/soc/forecon channels = list(SQUAD_SOF = TRUE, RADIO_CHANNEL_COLONY = TRUE) +/obj/item/device/encryptionkey/soc/army + name = "\improper Army Radio Encryption Key" + channels = list(SQUAD_SOF = TRUE, RADIO_CHANNEL_COLONY = TRUE) + //ERT, PMC /obj/item/device/encryptionkey/dutch diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 86cc4ff7d3b7..9b93c4fc4dbb 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -1454,6 +1454,16 @@ has_hud = TRUE hud_type = MOB_HUD_FACTION_MARINE +/obj/item/device/radio/headset/almayer/sof/survivor_army + name = "US Army headset" + desc = "Issued exclusively to Army troopers." + icon_state = "soc_headset" + frequency = ARMY_FREQ + initial_keys = list(/obj/item/device/encryptionkey/soc/army) + volume = RADIO_VOLUME_QUIET + has_hud = TRUE + hud_type = MOB_HUD_FACTION_MARINE + /obj/item/device/radio/headset/almayer/mcom/vc name = "marine vehicle crew radio headset" desc = "Used by USCM vehicle crew, features a non-standard brace. Channels are as follows: :v - marine command, :n - engineering, :m - medbay, :u - requisitions." diff --git a/code/game/objects/items/reagent_containers/autoinjectors.dm b/code/game/objects/items/reagent_containers/autoinjectors.dm index add08dcd9e35..c7ac621ac4f5 100644 --- a/code/game/objects/items/reagent_containers/autoinjectors.dm +++ b/code/game/objects/items/reagent_containers/autoinjectors.dm @@ -94,6 +94,25 @@ display_maptext = TRUE maptext_label = "Tc" +/obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount + +/obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount/Initialize() + . = ..() + var/amount = rand(1, 6) + switch(amount) + if(1) + reagents.add_reagent("tricordrazine", -45) + uses_left = 0 + update_icon() + if(2, 3) + reagents.add_reagent("tricordrazine", -30) + uses_left = 1 + update_icon() + if(4, 5) + reagents.add_reagent("tricordrazine", -15) + uses_left = 2 + update_icon() + /obj/item/reagent_container/hypospray/autoinjector/tricord/skillless name = "tricordrazine EZ autoinjector" desc = "An EZ autoinjector loaded with 3 doses of 15u of Tricordrazine, a weak general use medicine for treating damage. You can refill it at Wey-Med vending machines and it does not require any training to use." @@ -144,6 +163,25 @@ display_maptext = TRUE maptext_label = "Tr" +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount + +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount/Initialize() + . = ..() + var/amount = rand(1, 6) + switch(amount) + if(1) + reagents.add_reagent("tramadol", -45) + uses_left = 0 + update_icon() + if(2, 3) + reagents.add_reagent("tramadol", -30) + uses_left = 1 + update_icon() + if(4, 5) + reagents.add_reagent("tramadol", -15) + uses_left = 2 + update_icon() + /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless name = "tramadol EZ autoinjector" desc = "An EZ autoinjector loaded with 3 doses of 15u of Tramadol, a weak but effective painkiller for normal wounds. You can refill it at Wey-Med vending machines and it doesn't require any training to use." @@ -180,6 +218,25 @@ display_maptext = TRUE maptext_label = "Kl" +/obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount + +/obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount/Initialize() + . = ..() + var/amount = rand(1, 6) + switch(amount) + if(1) + reagents.add_reagent("kelotane", -45) + uses_left = 0 + update_icon() + if(2 , 3) + reagents.add_reagent("kelotane", -30) + uses_left = 1 + update_icon() + if(4 , 5) + reagents.add_reagent("kelotane", -15) + uses_left = 2 + update_icon() + /obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless name = "kelotane EZ autoinjector" desc = "An EZ autoinjector loaded with 3 doses of 15u of Kelotane, a common burn medicine. Doesn't require any training to use. You can refill it at Wey-Med vending machines." @@ -208,6 +265,25 @@ display_maptext = TRUE maptext_label = "Bi" +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount + +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount/Initialize() + . = ..() + var/amount = rand(1, 6) + switch(amount) + if(1) + reagents.add_reagent("bicaridine", -45) + uses_left = 0 + update_icon() + if(2, 3) + reagents.add_reagent("bicaridine", -30) + uses_left = 1 + update_icon() + if(4, 5) + reagents.add_reagent("bicaridine", -15) + uses_left = 2 + update_icon() + /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless name = "bicaridine EZ autoinjector" desc = "An EZ autoinjector loaded with 3 doses of 15u of Bicaridine, a common brute and circulatory damage medicine. Doesn't require any training to use." diff --git a/code/game/objects/items/reagent_containers/food/drinks.dm b/code/game/objects/items/reagent_containers/food/drinks.dm index c6c111b9cba9..c97862da47d5 100644 --- a/code/game/objects/items/reagent_containers/food/drinks.dm +++ b/code/game/objects/items/reagent_containers/food/drinks.dm @@ -334,6 +334,12 @@ reagents.add_reagent("water", 59) reagents.add_reagent("hooch", 1) +/obj/item/reagent_container/food/drinks/flask/marine/army + name = "\improper US Army flask" + icon_state = "flask_army" + item_state = "flask_army" + desc = "A metal flask embossed with the US Army logo and probably filled with a slurry of water, motor oil, and medicinal alcohol. Albiet, higher quality motor oil compared to Marine rations." + /obj/item/reagent_container/food/drinks/flask/weylandyutani name = "\improper Weyland-Yutani flask" desc = "A metal flask embossed with Weyland-Yutani's signature logo that some corporate bootlicker probably ordered to be stocked in USS military vessels' canteen vendors." diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index b10dc1bb5df7..c292bad45a68 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -98,6 +98,13 @@ to_chat(user, SPAN_WARNING("There are no wounds on [possessive] [affecting.display_name].")) return TRUE +/obj/item/stack/medical/bruise_pack/random_amount + +/obj/item/stack/medical/bruise_pack/random_amount/Initialize(mapload, ...) + . = ..() + amount = rand(4,10) + update_icon() + /obj/item/stack/medical/bruise_pack/two amount = 2 @@ -149,6 +156,13 @@ to_chat(user, SPAN_WARNING("There are no burns on [possessive] [affecting.display_name].")) return TRUE +/obj/item/stack/medical/ointment/random_amount + +/obj/item/stack/medical/ointment/random_amount/Initialize(mapload, ...) + . = ..() + amount = rand(4,10) + update_icon() + /obj/item/stack/medical/advanced/bruise_pack name = "trauma kit" singular_name = "trauma kit" @@ -370,6 +384,13 @@ use(1) playsound(user, 'sound/handling/splint1.ogg', 25, 1, 2) +/obj/item/stack/medical/splint/random_amount + +/obj/item/stack/medical/splint/random_amount/Initialize(mapload, ...) + . = ..() + amount = rand(2,5) + update_icon() + /obj/item/stack/medical/splint/nano name = "nano splints" singular_name = "nano splint" diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index a3e373cd62b6..22e2f4c37ab1 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -654,13 +654,17 @@ /obj/item/storage/backpack/marine/satchel name = "\improper USCM satchel" - desc = "A heavy-duty satchel carried by some USCM soldiers and support personnel." + desc = "A heavy-duty satchel carried by some Marines of the USCM and support personnel." icon_state = "marinesatch" worn_accessible = TRUE storage_slots = null max_storage_space = 15 xeno_types = null +/obj/item/storage/backpack/marine/satchel/army + name = "\improper US Army satchel" + desc = "A heavy-duty satchel carried by some US Army soldiers and support personnel." + /obj/item/storage/backpack/marine/satchel/big //wacky squad marine loadout item, its the IO backpack. name = "\improper USCM logistics IMP backpack" desc = "A standard-issue backpack worn by logistics personnel. It is occasionally issued to combat personnel for longer term expeditions and deep space incursions." @@ -669,6 +673,9 @@ storage_slots = null max_storage_space = 21 //backpack size +/obj/item/storage/backpack/marine/satchel/big/army + name = "\improper US Army logistics IMP backpack" + /obj/item/storage/backpack/marine/satchel/medic name = "\improper USCM corpsman satchel" desc = "A heavy-duty satchel used by USCM medics. It sacrifices capacity for usability. A small patch is sewn to the top flap." @@ -1417,6 +1424,14 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r /obj/item/storage/backpack/molle/backpack/surv worn_accessible = FALSE +/obj/item/storage/backpack/molle/army + name = "\improper M1 MOLLE Satchel" + desc = "Tactical satchel manufactured by one of the Alphatech subsidiaries. Very lightweight beltbag variant that utilizes UA standard MOLLE fastening systems. Standard issue pack for US army troopers." + +/obj/item/storage/backpack/molle/backpack/army + name = "\improper M2 MOLLE Backpack" + desc = "Tactical backpack manufactured by one of the Alphatech subsidiaries. Very lightweight backpack that utilizes UA standard MOLLE fastening systems, which allows easy access and optimal weight distribution. Standard issue heavy duty pack for US army troopers." + //----------WY---------- /obj/item/storage/backpack/pmc diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 800012406fc1..680913a231ea 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -1955,13 +1955,14 @@ #undef MAXIMUM_MAGAZINE_COUNT /obj/item/storage/belt/gun/m44 - name = "\improper M276 pattern general revoler holster rig" + name = "\improper M276 pattern general revolver holster rig" desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is universal and adjustable for different revolvers, along with six small pouches for speedloaders. It smells faintly of hay." icon_state = "m44r_holster" storage_slots = 7 can_hold = list( /obj/item/weapon/gun/revolver, /obj/item/ammo_magazine/revolver, + /obj/item/ammo_magazine/handful/revolver, ) flags_atom = FPRINT // has gamemode skin holster_slots = list( @@ -2121,6 +2122,9 @@ item_state = "marinebelt" flags_atom = FPRINT // has gamemode skin +/obj/item/storage/belt/gun/mateba/cmateba/black + flags_atom = NO_NAME_OVERRIDE|NO_GAMEMODE_SKIN + /obj/item/storage/belt/gun/mateba/cmateba/full/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/mateba/cmateba()) new /obj/item/ammo_magazine/revolver/mateba/highimpact(src) diff --git a/code/game/objects/items/storage/mre.dm b/code/game/objects/items/storage/mre.dm index 064620e4d42e..6fd0bef6e466 100644 --- a/code/game/objects/items/storage/mre.dm +++ b/code/game/objects/items/storage/mre.dm @@ -1,7 +1,7 @@ ///CORE MRE, ALSO JUST SO HAPPEN TO BE USCM MRE /obj/item/storage/box/mre - name = "\improper USCM MRE" - desc = "A Meal, Ready-to-Eat. A single-meal combat ration designed to provide a soldier with enough nutrients for a day of strenuous work. Its expiration date is at least 20 years ahead of your combat life expectancy." + name = "\improper US MRE" + desc = "A Meal, Ready-to-Eat. A single-meal combat ration designed to provide a soldier or marine with enough nutrients for a day of strenuous work. Its expiration date is at least 20 years ahead of your combat life expectancy." icon = 'icons/obj/items/storage/mre.dmi' item_icons = list( WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/items/mres_lefthand.dmi', diff --git a/code/game/objects/structures/barricade/barricade.dm b/code/game/objects/structures/barricade/barricade.dm index a35ec6f1bdc9..9e9fd28c6385 100644 --- a/code/game/objects/structures/barricade/barricade.dm +++ b/code/game/objects/structures/barricade/barricade.dm @@ -360,10 +360,14 @@ // However, will look into fixing bugs w/diagonal movement different if this is // to hacky. /obj/structure/barricade/handle_rotation() - if (dir & EAST) - setDir(EAST) - else if(dir & WEST) - setDir(WEST) + var/direction = handle_barricade_stacking() + if(!direction) + if(dir & EAST) + setDir(EAST) + else if(dir & WEST) + setDir(WEST) + else + setDir(direction) update_icon() /obj/structure/barricade/acid_spray_act() @@ -467,8 +471,44 @@ return user.next_move = world.time + 3 //slight spam prevention? you don't want every metal cade to turn into a doorway - setDir(turn(dir, 90 * rotation_dir)) - update_icon() + + var/new_dir = handle_barricade_stacking(turn(dir, 90 * rotation_dir)) + if(new_dir && (new_dir != dir)) + setDir(new_dir) + update_icon() + else + to_chat(user, SPAN_WARNING("Every other facing direction is occupied, you can't rotate it!")) + +/obj/structure/barricade/proc/handle_barricade_stacking(potential_dir = FALSE) + var/list/directions = list() + if(!potential_dir) + potential_dir = dir + + for(var/obj/structure/barricade/cade in loc) + if(cade == src) + continue + directions += cade.dir + + if(length(directions) == 0) + return potential_dir + + if(length(directions) >= 4) + return FALSE //We shouldn't have four cades already there. + + var/possible_directions = CARDINAL_DIRS - directions + var/best_direction = turn(dir, 180) + + if(potential_dir in possible_directions) + return potential_dir + + if(best_direction in possible_directions) + return best_direction + + else + possible_directions -= dir + if(!length(possible_directions)) + return FALSE //We can't rotate it, all other directions are filled + return possible_directions[1] /obj/structure/barricade/clicked(mob/user, list/mods) if(mods[ALT_CLICK]) diff --git a/code/game/objects/structures/barricade/misc.dm b/code/game/objects/structures/barricade/misc.dm index 8fcf7cec41ad..b490d339a1c4 100644 --- a/code/game/objects/structures/barricade/misc.dm +++ b/code/game/objects/structures/barricade/misc.dm @@ -109,3 +109,57 @@ take_damage( I.force * I.demolition_mod * 1.5 ) if("brute") take_damage( I.force * I.demolition_mod * 0.75 ) + +/*----------------------*/ +// HESCO +/*----------------------*/ + +/obj/structure/barricade/hesco + name = "HESCO barricade" + desc = "A sandbag wall. Provides better protection than a makeshift sandbag barricade, but requires specialized equipment to setup." + icon_state = "sand_wall" + health = 500 + maxhealth = 500 + layer = OBJ_LAYER + stack_type = /obj/item/stack/sandbags + debris = list(/obj/item/stack/sandbags) + stack_amount = 5 + color = "#a98c7c" + destroyed_stack_amount = 1 + barricade_hitsound = 'sound/weapons/Genhit.ogg' + can_change_dmg_state = 0 + barricade_type = "sand_wall" + can_wire = FALSE + repair_materials = list("sandbag" = 1) + metallic = FALSE + +/obj/structure/barricade/hesco/attackby(obj/item/W as obj, mob/user as mob) + for(var/obj/effect/xenomorph/acid/A in src.loc) + if(A.acid_t == src) + to_chat(user, "You can't get near that, it's melting!") + return + if(istype(W, /obj/item/stack/sandbags)) + var/obj/item/stack/sandbags/D = W + if(health < maxhealth) + if(D.get_amount() < 1) + to_chat(user, SPAN_WARNING("You need one sandbag to repair [src].")) + return + visible_message(SPAN_NOTICE("[user] begins to repair [src].")) + if(do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, src) && health < maxhealth) + if (D.use(1)) + update_health(-0.5*maxhealth) + update_damage_state() + visible_message(SPAN_NOTICE("[user] clumsily repairs [src].")) + return + + if(try_nailgun_usage(W, user)) + return + + return ..() + +/obj/structure/barricade/hesco/hit_barricade(obj/item/I) + switch(I.damtype) + if("fire") + take_damage( I.force * I.demolition_mod * 1.5 ) + if("brute") + take_damage( I.force * I.demolition_mod * 1.0 ) diff --git a/code/game/objects/structures/barricade/sandbags.dm b/code/game/objects/structures/barricade/sandbags.dm index 16a1644599a4..169d54d1bb82 100644 --- a/code/game/objects/structures/barricade/sandbags.dm +++ b/code/game/objects/structures/barricade/sandbags.dm @@ -155,3 +155,22 @@ ..() flags_can_pass_front_temp &= ~PASS_OVER_THROW_MOB flags_can_pass_behind_temp &= ~PASS_OVER_THROW_MOB + +/obj/structure/barricade/sandbags/weak_wired/New() + health = BARRICADE_SANDBAG_TRESHOLD_1 + maxhealth = BARRICADE_SANDBAG_TRESHOLD_1 + stack_amount = 0 + color = "#a98c7c" + maxhealth += 50 + update_health(-50) + can_wire = FALSE + is_wired = TRUE + build_stage = BARRICADE_SANDBAG_5 + update_icon() + climbable = FALSE + . = ..() + +/obj/structure/barricade/sandbags/weak_wired/initialize_pass_flags(datum/pass_flags_container/PF) + ..() + flags_can_pass_front_temp &= ~PASS_OVER_THROW_MOB + flags_can_pass_behind_temp &= ~PASS_OVER_THROW_MOB diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 7e607bb1a6de..37f15b301af6 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -190,6 +190,54 @@ PLANT_CUT_MACHETE = 3 = Needs at least a machete to be cut down /obj/structure/flora/tree/jungle/bigtreeBOT icon_state = "bigtreeBOT" +/obj/structure/flora/tree/tyrargo + icon = 'icons/obj/structures/props/natural/vegetation/tyrargo_pine_tree.dmi' + icon_state = "pine_1_snow" + +/obj/structure/flora/tree/tyrargo/tree_2 + icon_state = "pine_1" + +/obj/structure/flora/tree/tyrargo/tree_3 + icon_state = "bald" + +/obj/structure/flora/tree/tyrargo/tree_3/Initialize(mapload, ...) + . = ..() + AddComponent(/datum/component/shimmy_around, south_offset = 5) + +/obj/structure/flora/tree/tyrargo/tree_4 + icon_state = "dead_tree1" + +/obj/structure/flora/tree/tyrargo/tree_5 + icon_state = "dead_tree2" + +/obj/structure/flora/tree/tyrargo/tree_6 + icon_state = "dead_tree3" + + +/obj/structure/flora/tree/tyrargo_small + icon = 'icons/obj/structures/props/natural/vegetation/tyrargo_dead_trees.dmi' + icon_state = "tree_1" + +/obj/structure/flora/tree/tyrargo_small/Initialize(mapload, ...) + . = ..() + AddComponent(/datum/component/shimmy_around, south_offset = 5) + +/obj/structure/flora/tree/tyrargo_small/tree_2 + icon_state = "tree_2" + +/obj/structure/flora/tree/tyrargo_small/tree_3 + icon_state = "tree_3" + +/obj/structure/flora/tree/tyrargo_small/tree_4 + icon_state = "tree_4" + +/obj/structure/flora/tree/tyrargo_small/tree_5 + icon_state = "tree_5" + +/obj/structure/flora/tree/tyrargo_small/tree_stump + icon_state = "tree_stump" + density = FALSE + //grass /obj/structure/flora/grass name = "grass" @@ -421,6 +469,39 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. overlay_type = "tallgrass_overlay_corner" center = FALSE +//TYRARGO - TEMPERATE/TAIGA MAPS// + +/obj/structure/flora/grass/temperate + icon = 'icons/obj/structures/props/natural/vegetation/temperate_flora.dmi' + icon_state = "1" + +/obj/structure/flora/wood + name = "stick" + icon = 'icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi' + icon_state = "stick1" + density = FALSE + fire_flag = FLORA_BURN_NO_SPREAD + +/obj/structure/flora/wood/stick1 + icon_state = "stick1" + +/obj/structure/flora/wood/stick2 + icon_state = "stick2" + +/obj/structure/flora/wood/stick3 + icon_state = "stick3" + +/obj/structure/flora/wood/stick4 + icon_state = "stick4" + +/obj/structure/flora/wood/trunk1 + name = "tree trunk" + icon_state = "trunk1" + +/obj/structure/flora/wood/trunk2 + name = "tree trunk" + icon_state = "trunk2" + //BUSHES /* diff --git a/code/game/objects/structures/landing_signs.dm b/code/game/objects/structures/landing_signs.dm index 4093288800e2..214961e16b2e 100644 --- a/code/game/objects/structures/landing_signs.dm +++ b/code/game/objects/structures/landing_signs.dm @@ -80,3 +80,21 @@ name = "Hybrisa Prospera - Weyland-Yutani Kelland Mining - Landing Zone two sign" desc = "A large sign that reads 'WY - KMCC Mining - HBP - LZ - 01' The Kelland Mining logo is adorns the sign." icon_state = "hybrisamining_sign" + +/obj/structure/lz_sign/tyrargo_sign + name = "Tyrargo Rift - Firebase Charlie Landing Zone one sign" + desc = "A medium sized sign, illuminated by red lights, designating this area as firebase charlie." + icon_state = "tyrargo_sign_1" + +/obj/structure/lz_sign/tyrargo_sign/lz2 + name = "Tyrargo Rift - USASF Airbase Anderson Landing Zone two sign" + desc = "A large sign that designates this area as being a USASF airbase." + icon_state = "tyrargo_sign_2" + +/obj/structure/lz_sign/tyrargo_sign/lz2/alt + icon_state = "tyrargo_sign_3" + +/obj/structure/lz_sign/tyrargo_sign/city + name = "Tyrargo Rift - city limit sign" + desc = "A large sign designating the city limit of Tyrargo Rift." + icon_state = "tyrargo_sign_4" diff --git a/code/game/objects/structures/platforms.dm b/code/game/objects/structures/platforms.dm index f978aed3af39..058a1d96b2df 100644 --- a/code/game/objects/structures/platforms.dm +++ b/code/game/objects/structures/platforms.dm @@ -260,6 +260,12 @@ /obj/structure/platform/stone/stair_cut/soro_right icon_state = "strata_rock_platform_stair_alt" +/obj/structure/platform/stone/stair_cut/tyrargo_left + icon_state = "tyrargo_rock_platform_stair" + +/obj/structure/platform/stone/stair_cut/tyrargo_right + icon_state = "tyrargo_rock_platform_stair_alt" + /obj/structure/platform/stone/stair_cut/kutjevo_left icon_state = "kutjevo_rock_stair" @@ -452,6 +458,32 @@ /obj/structure/platform/stone/mineral/west dir = WEST +// Tyrargo Rock + +/obj/structure/platform/stone/tyrargo + name = "rock edge" + desc = "A solid chunk of desolate rocks. Looks like you could climb it." + icon_state = "tyrargo_rock_platform" + +/obj/structure/platform/stone/tyrargo/north + dir = NORTH +/obj/structure/platform/stone/tyrargo/east + dir = EAST +/obj/structure/platform/stone/tyrargo/west + dir = WEST + +//--// + +/obj/structure/platform/stone/mineral + icon_state = "stone" + +/obj/structure/platform/stone/mineral/north + dir = NORTH +/obj/structure/platform/stone/mineral/east + dir = EAST +/obj/structure/platform/stone/mineral/west + dir = WEST + /obj/structure/platform/stone/sandstone name = "sandstone platform" @@ -643,6 +675,20 @@ /obj/structure/platform_decoration/stone/soro/west dir = WEST +//TYRARGO + +/obj/structure/platform_decoration/stone/tyrargo + name = "rock corner" + desc = "Solid chunks of desolate rocks." + icon_state = "tyrargo_rock_platform_deco" + +/obj/structure/platform_decoration/stone/tyrargo/north + dir = NORTH +/obj/structure/platform_decoration/stone/tyrargo/east + dir = EAST +/obj/structure/platform_decoration/stone/tyrargo/west + dir = WEST + /obj/structure/platform_decoration/stone/mineral icon_state = "stone_deco" diff --git a/code/game/objects/structures/props.dm b/code/game/objects/structures/props.dm index 5529e09c654f..44c530d0abec 100644 --- a/code/game/objects/structures/props.dm +++ b/code/game/objects/structures/props.dm @@ -413,6 +413,11 @@ icon_state = "afric_zimmerman" density = FALSE +/obj/structure/prop/invuln/static_corpse/afric_zimmer/trooper + name = "Unknown Trooper" + desc = "What remains of a unknown trooper. May they rest in peace." + icon_state = "army_guy" + /obj/structure/prop/invuln/lifeboat_hatch_placeholder density = FALSE name = "non-functional hatch" @@ -785,6 +790,8 @@ name = "M1 pattern festive needle torus" desc = "In 2140 after a two different sub levels of the São Luís Bay Underground Habitat burned out (evidence points to a Bladerunner incident, but local police denies such claims) due to actual wreaths made with REAL needles, these have been issued ever since. They're made of ''''''pine'''''' scented poly-kevlon. According to the grunts from the American Corridor, during the SACO riots, protestors would pack these things into pillow cases, forming rudimentary body armor against soft point ballistics." icon_state = "wreath" + + /obj/structure/prop/vehicles name = "van" desc = "An old van, seems to be broken down." @@ -808,6 +815,358 @@ icon_state = "twe_tank" density = TRUE +// USCM VTOL + +/obj/structure/prop/vehicles/aircraft/vtol + name = "\improper AD-71E VTOL" + desc = "A twin tilt-jet VTOL, the Blackfoot is the Bearcat's ugly big sister. For what she lacks in fire power and agility, she more than makes up for in utility and love handles. First tested by UA Northridge on American soil, the Blackfoot is currently undergoing active combat trials. This craft appears to be undergoing maintenance and is not ready to fly." + icon = 'icons/obj/vehicles/vtol_prop.dmi' + icon_state = "vtol" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/aircraft/vtol/damaged + name = "\improper Crashed AD-71E VTOL" + desc = "A twin tilt-jet VTOL, the Blackfoot is the Bearcat's ugly big sister. For what she lacks in fire power and agility, she more than makes up for in utility and love handles. First tested by UA Northridge on American soil, the Blackfoot is currently undergoing active combat trials. This craft appears to have crash landed, and is inoperable." + icon_state = "vtol_damaged" + +// USCM Aerospace Fighter + +/obj/structure/prop/vehicles/aircraft/aircraft + name = "\improper EVAC-3 Aerospace fighter" + desc = "A state of the art EVAC-3F aerospace fighter used by the USCM. This fighter has seen better days with extensive internal wiring damage and unfinished repairs to the bomb-bays." + icon = 'icons/obj/vehicles/aircraft_prop.dmi' + icon_state = "evac_uscm" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/aircraft/aircraft/usaf + icon_state = "evac_usaf" + desc = "High tech, silver coated EVAC-3 aerospace fighter used by the USAF in deep recon mission. The thermal-absorbent paint alone probably costs more than your squads collective paycheck. Unfortunately, however, this jet was in the middle of a repair cycle when the nothern defences were breached, nessecitating an evacuation." + +// USCM Truck + +/obj/structure/prop/vehicles/tank/truck + name = "M887 Truck" + desc = "A small box-type van. It's a compact vehicle with a rectangular cargo area, typically designed for transporting goods or small equipment. It features a high roof and straight sides, providing ample vertical space for storage. Its size makes it maneuverable and ideal for urban driving and tight spaces. This van appears to be non-functional, likely due to excessive use during the recent oubreak." + icon = 'icons/obj/vehicles/van_prop.dmi' + icon_state = "van_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/tank/truck/broken + icon_state = "van_broken" + +/obj/structure/prop/vehicles/tank/truck/alt + name = "M991 Truck" + icon_state = "truck_base" + +/obj/structure/prop/vehicles/tank/truck/alt/broken + icon_state = "truck_broken" + +// USCM APC + +/obj/structure/prop/vehicles/tank/apc + name = "M577 Armored Personnel Carrier" + desc = "An M577 Armored Personnel Carrier. An armored transport with four big wheels. This one is no longer in working order, serving now as a roadblock." + icon = 'icons/obj/vehicles/apc_prop.dmi' + icon_state = "apc_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + + +/obj/structure/prop/vehicles/tank/apc/destroyed + icon_state = "apc_destroyed" + +/obj/structure/prop/vehicles/tank/apc/med + icon_state = "apc_med" + +/obj/structure/prop/vehicles/tank/apc/med/destroyed + icon_state = "apc_med_destroyed" + +// USCM Military Truck + +/obj/structure/prop/vehicles/tank/miltruck + name = "M255 Armored Half-Track" + desc = "UA Military half-track, used by all branches of the United American army, including the US Army and USCM. Comes in multiple different configurations, from being able to haul troops to mounting a mobile mortar. Verstile and cheap. This one appears to be non-functional due to overuse during the recent oubreak." + icon = 'icons/obj/vehicles/miltruck_prop.dmi' + icon_state = "track_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/tank/miltruck/destroyed + icon_state = "track_destroyed" + +/obj/structure/prop/vehicles/tank/miltruck/wheeled + icon_state = "miltruck_1_base" + +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover + icon_state = "miltruck_2_base" + +/obj/structure/prop/vehicles/tank/miltruck/wheeled/destroyed + icon_state = "miltruck_1_destroyed" + +// USCM HUMVEE + +/obj/structure/prop/vehicles/tank/humvee + name = "\improper M540-B Armored Recon Carrier" + desc = "An M540-B Armored Recon Carrier. A lightly armored reconnaissance and intelligence vehicle. This vehicle has been immobilised." + icon = 'icons/obj/vehicles/humvee_prop.dmi' + icon_state = "humvee_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/tank/humvee/destroyed + icon_state = "humvee_base_wreck" + +/obj/structure/prop/vehicles/tank/humvee/transport + icon_state = "humvee_carrier" + +/obj/structure/prop/vehicles/tank/humvee/transport/destroyed + icon_state = "humvee_carrier_wreck" + +/obj/structure/prop/vehicles/tank/humvee/medical + icon_state = "humvee_med" + +/obj/structure/prop/vehicles/tank/humvee/medical/destroyed + icon_state = "humvee_med_wreck" + +/obj/structure/prop/vehicles/tank/humvee/turret + icon_state = "humvee_gun" + +/obj/structure/prop/vehicles/tank/humvee/turret/destroyed + icon_state = "humvee_gun_wreck" + +// USCM Infantry Fighting Vehicle + +/obj/structure/prop/vehicles/tank/ifv + name = "M34 Marshal IFV" + desc = "The M34 Marshal IFV: Developed by W-Y, the RAT (Rover Armed Transport) was originally designed for the 3WE Military as an armed version of their RT series of expeditionary vehicles, adopted by the US Army, It's heavier and and more durable then the M570 series the marines use, as the army don't have a need for APCs capable of being transported by dropship." + icon = 'icons/obj/vehicles/ifv_prop.dmi' + icon_state = "ifv_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/tank/ifv/destroyed + icon_state = "ifv_destroyed" + +// USCM BISON + +/obj/structure/prop/vehicles/tank/bison + name = "BISON Automated Transport Vehicle" + desc = "The BISON ATV is an remote-controled logistical supply vehicle, intended to assist USCM and US Army rear-line logistic forces in moving supplies. It requires someone to be standing near it for the auto-pilot functions to work. This model is non-functional." + icon = 'icons/obj/vehicles/bison_prop.dmi' + icon_state = "base_closed" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/tank/bison/destroyed + icon_state = "base_closed_damaged" + +/obj/structure/prop/vehicles/tank/bison/open + icon_state = "base_open" + +/obj/structure/prop/vehicles/tank/bison/open/destroyed + icon_state = "base_open_damaged" + + +// USCM ARC + +/obj/structure/prop/vehicles/tank/arc + name = "M540-B Armored Recon Carrier" + desc = "An M540-B Armored Recon Carrier. A lightly armored reconnaissance and intelligence vehicle. This vehicle appears to be non-functional." + icon = 'icons/obj/vehicles/arc_prop.dmi' + icon_state = "arc_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/vehicles/tank/arc/destroyed + icon_state = "arc_destroyed" + +// USCM Tank + +/obj/structure/prop/vehicles/tank/longstreet + name = "M34A2 Longstreet Light Tank" + desc = "A giant piece of armor with a big gun, it knew what it had to do, and it served its duty." + icon = 'icons/obj/vehicles/tank_prop.dmi' + icon_state = "tank_base" + density = FALSE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +// Hull +// Base Armor + +/obj/structure/prop/vehicles/tank/longstreet/destroyed + + icon_state = "tank_base_destroyed" + +// Caustic Armor + +/obj/structure/prop/vehicles/tank/longstreet/caustic + icon_state = "tank_caustic_base" + +/obj/structure/prop/vehicles/tank/longstreet/caustic/damaged + icon_state = "tank_caustic_damaged" + +/obj/structure/prop/vehicles/tank/longstreet/caustic/destroyed + icon_state = "tank_caustic_destroyed" + +// Concussive Armor + +/obj/structure/prop/vehicles/tank/longstreet/concussive + icon_state = "tank_concussive_base" + +/obj/structure/prop/vehicles/tank/longstreet/concussive/damaged + icon_state = "tank_concussive_damaged" + +/obj/structure/prop/vehicles/tank/longstreet/concussive/destroyed + icon_state = "tank_concussive_destroyed" + +// Ballistic Armor + +/obj/structure/prop/vehicles/tank/longstreet/ballistic + icon_state = "tank_ballistic_base" + +/obj/structure/prop/vehicles/tank/longstreet/ballistic/damaged + icon_state = "tank_ballistic_damaged" + +/obj/structure/prop/vehicles/tank/longstreet/ballistic/destroyed + icon_state = "tank_ballistic_destroyed" + +// Turret + +/obj/structure/prop/vehicles/tank/longstreet/turret + icon_state = "turret_base" + +/obj/structure/prop/vehicles/tank/longstreet/turret/damaged + icon_state = "turret_base_damaged" + +/obj/structure/prop/vehicles/tank/longstreet/turret/destroyed + icon_state = "turret_base_destroyed" + +// Primary Weapon + +/obj/structure/prop/vehicles/tank/longstreet/primary + icon_state = "ltb_base" + +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb + +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb/destroyed + icon_state = "ltb_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/primary/ltaaap + icon_state = "ltaaap_base" + +/obj/structure/prop/vehicles/tank/longstreet/primary/ltaaap/destroyed + icon_state = "ltaaap_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/primary/auto + icon_state = "ace_base" + +/obj/structure/prop/vehicles/tank/longstreet/primary/auto/destroyed + icon_state = "ace_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/primary/flamer + icon_state = "flamer_base" + +/obj/structure/prop/vehicles/tank/longstreet/primary/flamer/destroyed + icon_state = "flamer_destroyed" + +// Secondary + +/obj/structure/prop/vehicles/tank/longstreet/secondary + icon_state = "flamer_sec_base" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/flamer + +/obj/structure/prop/vehicles/tank/longstreet/secondary/flamer/destroyed + icon_state = "flamer_sec_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/glauncher + icon_state = "glauncher_base" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/glauncher/destroyed + icon_state = "glauncher_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/towlauncher + icon_state = "towlauncher_base" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/towlauncher/destroyed + icon_state = "towlauncher_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/m56cupola + icon_state = "m56cupola_base" + +/obj/structure/prop/vehicles/tank/longstreet/secondary/towlauncher/destroyed + icon_state = "m56cupola_destroyed" + +// Module + +/obj/structure/prop/vehicles/tank/longstreet/module + icon_state = "warray_base" + +/obj/structure/prop/vehicles/tank/longstreet/module/destroyed + icon_state = "warray_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/module/odrive + icon_state = "odrive_enhancer_base" + +/obj/structure/prop/vehicles/tank/longstreet/module/odrive/destroyed + icon_state = "odrive_enhancer_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/module/slauncher + icon_state = "slauncher_base" + +/obj/structure/prop/vehicles/tank/longstreet/module/slauncher/destroyed + icon_state = "slauncher_destroyed" + +/obj/structure/prop/vehicles/tank/longstreet/module/slauncher/empty + icon_state = "slauncher_empty" + +/obj/structure/prop/vehicles/tank/longstreet/module/artillerymod + icon_state = "artillerymod_base" + +/obj/structure/prop/vehicles/tank/longstreet/module/artillerymod/destroyed + icon_state = "artillerymod_destroyed" + +// USCM Static Defense Prop + +/obj/structure/prop/turret + name = "\improper UH-46 Heavy Sentry Gun" + desc = "Large weapons system platform designed to deploy multiple types of automated defense systems. This one has been rendered permanently non-functional." + icon = 'icons/obj/structures/props/static_defence_prop.dmi' + icon_state = "gun_platform" + layer = XENO_HIDING_LAYER + bound_height = 32 + bound_width = 64 + density = TRUE + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + +/obj/structure/prop/turret/missile + icon_state = "missile_platform" + //overhead prop sets /obj/structure/prop/invuln/overhead diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index d24a2739ab74..dfe8bd2d20a0 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -108,6 +108,14 @@ . = ..() desc = "1) These premises are under the operation of the United Americas Commission for Quality and Standards.
2) Access to these premises are regulated by UACQS personnel, or the regulating authority of the region.
[SPAN_RED("3) In accordance with Civil Law, firearms are not permitted in these premises.")]" +/obj/structure/sign/minefield + name = "\improper MINEFIELD WARNING" + desc = "A warning sign indicating the presence of a minefield!" + icon_state = "minefield" + +/obj/structure/sign/minefield/alt + icon_state = "mines_warning" + //============// // Banners // //==========// diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index f7f3086dd816..a73718af1509 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -245,11 +245,7 @@ /obj/structure/bed/roller/proc/check_buckle(obj/bed, mob/buckle_target, mob/user) SIGNAL_HANDLER - if(buckle_target.mob_size <= MOB_SIZE_XENO) - if(buckle_target.stat == DEAD || HAS_TRAIT(buckle_target, TRAIT_OPPOSABLE_THUMBS)) - return - - if(buckle_target.mob_size > MOB_SIZE_HUMAN) + if(buckle_target.mob_size > MOB_SIZE_XENO) if(!can_carry_big) to_chat(user, SPAN_WARNING("[buckle_target] is too big to buckle in.")) return COMPONENT_BLOCK_BUCKLE diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 3b7886dfe8f4..69eb96de68a4 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -321,6 +321,10 @@ drag_delay = 1 //Pulling something on wheels is easy picked_up_item = null +/obj/structure/bed/chair/office/Initialize(mapload, ...) + . = ..() + RegisterSignal(src, COMSIG_MOVABLE_PREBUCKLE, PROC_REF(check_buckle)) + /obj/structure/bed/chair/office/Collide(atom/A) ..() if(!buckled_mob) @@ -346,6 +350,15 @@ victim.apply_damage(10, BRUTE, def_zone) occupant.visible_message(SPAN_DANGER("[occupant] crashed into \the [A]!")) +/// Signal handler for COMSIG_MOVABLE_PREBUCKLE to potentially block buckling. +/obj/structure/bed/chair/office/proc/check_buckle(obj/bed, mob/buckle_target, mob/user) + SIGNAL_HANDLER + + if(buckle_target.mob_size > MOB_SIZE_XENO) + if(!can_carry_big) + to_chat(user, SPAN_WARNING("[buckle_target] is too big to buckle in.")) + return COMPONENT_BLOCK_BUCKLE + /obj/structure/bed/chair/office/light icon_state = "officechair_white" anchored = FALSE diff --git a/code/game/objects/structures/tyrargo_props.dm b/code/game/objects/structures/tyrargo_props.dm new file mode 100644 index 000000000000..f0c23d149d4d --- /dev/null +++ b/code/game/objects/structures/tyrargo_props.dm @@ -0,0 +1,294 @@ +/obj/structure/prop/tyrargo/boards + name = "boards" + desc = "Salvaged wooden boards." + icon = 'icons/obj/structures/props/tyrargo_props.dmi' + icon_state = "boards" + density = FALSE + anchored = TRUE + unslashable = FALSE + health = 100 + layer = 2.4 + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + +/obj/structure/prop/tyrargo/boards/boards_1 + icon_state = "boards_2" +/obj/structure/prop/tyrargo/boards/boards_2 + icon_state = "boards_3" + +/obj/structure/prop/tyrargo/boards/bullet_act(obj/projectile/P) + health -= P.damage + playsound(src, 'sound/effects/woodhit.ogg', 35, 1) + ..() + healthcheck() + return TRUE + +/obj/structure/prop/tyrargo/boards/proc/explode() + visible_message(SPAN_DANGER("[src] crumbles!"), max_distance = 1) + playsound(loc, 'sound/effects/woodhit.ogg', 25) + + deconstruct(FALSE) + +/obj/structure/prop/tyrargo/boards/proc/healthcheck() + if(health <= 0) + explode() + +/obj/structure/prop/tyrargo/boards/ex_act(severity) + switch(severity) + if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) + if(prob(50)) + deconstruct(FALSE) + if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) + deconstruct(FALSE) + +/obj/structure/prop/tyrargo/boards/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) + if(unslashable) + return XENO_NO_DELAY_ACTION + current_xenomorph.animation_attack_on(src) + playsound(src, 'sound/effects/woodhit.ogg', 25, 1) + current_xenomorph.visible_message(SPAN_DANGER("[current_xenomorph] slashes at [src]!"), + SPAN_DANGER("You slash at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(current_xenomorph.melee_damage_lower, current_xenomorph.melee_damage_upper)) + return XENO_ATTACK_ACTION + +// tents + +/obj/structure/prop/tyrargo/large_tents + name = "Tent" + icon = 'icons/obj/structures/props/large_tent_props.dmi' + icon_state = "medical_tent" + health = 300 + layer = ABOVE_FLY_LAYER + bound_height = 96 + bound_width = 96 + density = TRUE + +/obj/structure/prop/tyrargo/large_tents/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) + if(unslashable) + return XENO_NO_DELAY_ACTION + current_xenomorph.animation_attack_on(src) + playsound(src, 'sound/items/paper_ripped.ogg', 25, 1) + current_xenomorph.visible_message(SPAN_DANGER("[current_xenomorph] slashes at [src]!"), + SPAN_DANGER("You slash at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(current_xenomorph.melee_damage_lower, current_xenomorph.melee_damage_upper)) + return XENO_ATTACK_ACTION + +/obj/structure/prop/tyrargo/large_tents/medical + name = "Medical Tent" + icon_state = "medical_tent" + +/obj/structure/prop/tyrargo/large_tents/command + name = "Command Tent" + icon_state = "command_tent" + +/obj/structure/prop/tyrargo/large_tents/supply + name = "Supply Tent" + icon_state = "supply_tent" + +/obj/structure/prop/tyrargo/large_tents/small + name = "Tent" + icon_state = "small_tent" + +/obj/structure/prop/tyrargo/large_tents/small_closed + name = "Tent" + icon_state = "small_closed_tent" + +/obj/structure/prop/tyrargo/large_tents/small_closed/back + name = "Tent" + icon_state = "small_closed_tent_back" + +// Military Light Source + +/obj/structure/prop/tyrargo/illuminator + name = "\improper UE-92/B Area Illuminator" + desc = "Varient of the UE-92, a large deployable floodlight. This version is less powerful but it houses an internal power source that allows it to operate for several hours without being linked to a power generator." + icon = 'icons/obj/structures/props/industrial/illuminator.dmi' + icon_state = "floodlight-off" + health = 300 + density = TRUE + layer = ABOVE_FLY_LAYER + bound_height = 32 + +/obj/structure/prop/tyrargo/illuminator/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) + if(unslashable) + return XENO_NO_DELAY_ACTION + current_xenomorph.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + current_xenomorph.visible_message(SPAN_DANGER("[current_xenomorph] slashes at [src]!"), + SPAN_DANGER("You slash at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(current_xenomorph.melee_damage_lower, current_xenomorph.melee_damage_upper)) + return XENO_ATTACK_ACTION + +// Watchtower + +/obj/structure/prop/tyrargo/watchtower + name = "Watchtower" + desc = "UA military watchtower. Who watches the watchers?" + icon = 'icons/obj/structures/props/industrial/watchtower.dmi' + icon_state = "watchtower" + health = 500 + density = TRUE + layer = ABOVE_FLY_LAYER + bound_height = 64 + bound_width = 64 + +/obj/structure/prop/tyrargo/watchtower/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) + if(unslashable) + return XENO_NO_DELAY_ACTION + current_xenomorph.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + current_xenomorph.visible_message(SPAN_DANGER("[current_xenomorph] slashes at [src]!"), + SPAN_DANGER("You slash at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(current_xenomorph.melee_damage_lower, current_xenomorph.melee_damage_upper)) + return XENO_ATTACK_ACTION + +// Signs + +/obj/structure/prop/tyrargo/military_alert_sign + name = "ICC quarantine notice" + desc = "A quarantine poster, bearing the ICC's logo, it reads: This area is designated a secure transit zone by the ICC and US Military. Non-compliance with military directives is punishable under the interplanetary biohazard preparedness act." + icon = 'icons/obj/structures/props/wall_decorations/decals.dmi' + icon_state = "military_sign" + layer = WALL_OBJ_LAYER + +/obj/structure/prop/tyrargo/military_alert_sign/alt + icon_state = "military_sign_alt" + +/obj/structure/prop/tyrargo/military_evac_sign + name = "US military evacuation notice" + desc = "A evacuation poster, it reads: All residents of Tyrargo Rift and outlying areas are required to evacuate by 5:45pm/2182. All evacuees will be asked to provide identification and may be subject to medical testing. Evacuees resisting offical direction will be detained. Evacuation is mandatory." + icon = 'icons/obj/structures/props/wall_decorations/tyrargo32x64_signs.dmi' + icon_state = "evac_sign" + layer = WALL_OBJ_LAYER + +/obj/structure/prop/tyrargo/military_checkpoint_sign + name = "US military checkpoint notice" + desc = "A military notice poster, it reads: Halt. US army checkpoint ahead. Comply or be shot." + icon = 'icons/obj/structures/props/wall_decorations/tyrargo64x64_signs.dmi' + icon_state = "tyrargo_checkpoint_sign" + layer = WALL_OBJ_LAYER + density = TRUE + bound_width = 64 + +/obj/structure/prop/tyrargo/military_checkpoint_sign/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) + if(unslashable) + return XENO_NO_DELAY_ACTION + current_xenomorph.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + current_xenomorph.visible_message(SPAN_DANGER("[current_xenomorph] slashes at [src]!"), + SPAN_DANGER("You slash at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(current_xenomorph.melee_damage_lower, current_xenomorph.melee_damage_upper)) + return XENO_ATTACK_ACTION + +/obj/structure/prop/tyrargo/military_checkpoint_sign/bullet_act(obj/projectile/P) + health -= P.damage + ..() + healthcheck() + return TRUE + +/obj/structure/prop/tyrargo/military_checkpoint_sign/proc/explode() + visible_message(SPAN_DANGER("[src] breaks apart!"), max_distance = 1) + deconstruct(FALSE) + +/obj/structure/prop/tyrargo/military_checkpoint_sign/proc/healthcheck() + if(health <= 0) + explode() + +/obj/structure/prop/tyrargo/military_checkpoint_sign/ex_act(severity) + switch(severity) + if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) + if(prob(50)) + deconstruct(FALSE) + if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) + deconstruct(FALSE) + +// TRR Truck + +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr + name = "Throop Rescue and Recovery truck" + desc = "Emergency response vehicle used by the Throop Rescue and Recovery organization. A private group that assists in rapid response, search and rescue operations." + icon = 'icons/obj/structures/props/vehicles/armored_truck_trr.dmi' + icon_state = "armored_truck_trr" + bound_height = 32 + layer = 4.2 + +// Traffic Sign +/obj/structure/prop/tyrargo/traffic_signal + name = "Portable Changeable Message Sign" + desc = "A PCMS, it displays offical instructions by the local authorities." + icon = 'icons/obj/structures/props/industrial/traffic_signal.dmi' + icon_state = "traffic_1" + layer = BILLBOARD_LAYER + density = TRUE + health = 500 + light_on = TRUE + light_color ="#FA9632" + light_power = 2 + light_range = 2 + +/obj/structure/prop/tyrargo/traffic_signal/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) + if(unslashable) + return XENO_NO_DELAY_ACTION + current_xenomorph.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + current_xenomorph.visible_message(SPAN_DANGER("[current_xenomorph] slashes at [src]!"), + SPAN_DANGER("You slash at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(current_xenomorph.melee_damage_lower, current_xenomorph.melee_damage_upper)) + return XENO_ATTACK_ACTION + +/obj/structure/prop/tyrargo/traffic_signal/bullet_act(obj/projectile/P) + health -= P.damage + ..() + healthcheck() + return TRUE + +/obj/structure/prop/tyrargo/traffic_signal/proc/explode() + visible_message(SPAN_DANGER("[src] breaks apart!"), max_distance = 1) + deconstruct(FALSE) + +/obj/structure/prop/tyrargo/traffic_signal/proc/healthcheck() + if(health <= 0) + explode() + +/obj/structure/prop/tyrargo/traffic_signal/ex_act(severity) + switch(severity) + if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) + if(prob(50)) + deconstruct(FALSE) + if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) + deconstruct(FALSE) + +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1 + icon_state = "traffic_2" + +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2 + icon_state = "traffic_3" + +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3 + icon_state = "traffic_4" + +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4 + icon_state = "traffic_5" + +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_5 + icon_state = "traffic_6" + +// Prop Generator + +/obj/structure/prop/tyrargo/gen + name = "\improper expended UE-11 Generator Unit" + desc = "Special power module designed to be a backup generator in the event of a transformer malfunction. This generator has already been expended." + icon = 'icons/obj/structures/props/tyrargo_props.dmi' + icon_state = "gen" + density = TRUE + explo_proof = TRUE + unslashable = TRUE + unacidable = TRUE + anchored = TRUE + +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr + name = "Throop Rescue and Recovery truck" + desc = "Emergency response vehicle used by the Throop Rescue and Recovery organization. A private group that assists in rapid response, search and rescue operations." + icon = 'icons/obj/structures/props/vehicles/armored_truck_trr.dmi' + icon_state = "armored_truck_trr" + bound_height = 32 + layer = 4.2 diff --git a/code/game/turfs/auto_turf.dm b/code/game/turfs/auto_turf.dm index 1c5af7fe312f..570eb4dbeef3 100644 --- a/code/game/turfs/auto_turf.dm +++ b/code/game/turfs/auto_turf.dm @@ -171,7 +171,6 @@ . = ..() is_weedable = bleed_layer ? NOT_WEEDABLE : FULLY_WEEDABLE - /turf/open/auto_turf/snow/insert_self_into_baseturfs() baseturfs += /turf/open/auto_turf/snow/layer0 @@ -329,6 +328,38 @@ icon_state = "grass_1" bleed_layer = 1 +/turf/open/auto_turf/tyrargo_grass + name = "matted grass" + icon = 'icons/turf/floors/auto_tyrargo_turf.dmi' + icon_state = "grass_0" + icon_prefix = "grass" + layer_name = list("ground","lush thick grass") + desc = "grass, dirt, mud, and other assorted high moisture cave flooring." + +/turf/open/auto_turf/tyrargo_grass/insert_self_into_baseturfs() + baseturfs += /turf/open/auto_turf/tyrargo_grass/layer0 + +/turf/open/auto_turf/tyrargo_grass/layer0 + icon_state = "grass_0" + bleed_layer = 0 + variant_prefix_name = "matted grass" + +/turf/open/auto_turf/tyrargo_grass/layer0_mud + icon_state = "grass_0_mud" + bleed_layer = 0 + variant = "mud" + variant_prefix_name = "muddy" + +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt + icon_state = "grass_0_mud_alt" + bleed_layer = 0 + variant = "mud_alt" + variant_prefix_name = "muddy" + +/turf/open/auto_turf/tyrargo_grass/layer1 + icon_state = "grass_1" + bleed_layer = 1 + //Chance's Claim / Hadley Shale dirt /turf/open/auto_turf/shale diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index 620b982a8713..50733968d6e3 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -2038,6 +2038,9 @@ icon_state = "logo_c" name = "\improper USCM Logo" +/turf/open/floor/almayer/uscm/southface + dir = NORTH + /turf/open/floor/almayer/uscm/directional icon_state = "logo_directional" @@ -2068,6 +2071,33 @@ /turf/open/floor/almayer/uscm/directional/northwest dir = NORTHWEST +/turf/open/floor/almayer/uscm/south_face + icon_state = "logo_directional1" + +/turf/open/floor/almayer/uscm/south_face/north + dir = WEST + +/turf/open/floor/almayer/uscm/south_face/south + dir = EAST + +/turf/open/floor/almayer/uscm/south_face/east + dir = NORTH + +/turf/open/floor/almayer/uscm/south_face/west + dir = SOUTH + +/turf/open/floor/almayer/uscm/south_face/northwest + dir = SOUTHWEST + +/turf/open/floor/almayer/uscm/south_face/northeast + dir = NORTHWEST + +/turf/open/floor/almayer/uscm/south_face/southeast + dir = NORTHEAST + +/turf/open/floor/almayer/uscm/south_face/southwest + dir = SOUTHEAST + /turf/open/floor/almayer/no_build allow_construction = FALSE turf_flags = parent_type::turf_flags|TURF_HULL @@ -2250,7 +2280,29 @@ /turf/open/floor/almayer_hull/outerhull_dir/northwest dir = NORTHWEST +/turf/open/floor/almayer_hull/outerhull_dir_alt + icon_state = "outerhull_dir_alt" + +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer_hull/outerhull_dir_alt/north + dir = NORTH + +/turf/open/floor/almayer_hull/outerhull_dir_alt/east + dir = EAST + +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast + dir = NORTHEAST + +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer_hull/outerhull_dir_alt/west + dir = WEST +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest + dir = NORTHWEST ////////////////////////////////////////////////////////////////////// diff --git a/code/game/turfs/floors/desert.dm b/code/game/turfs/floors/desert.dm index 893079fc9a0e..f45f83f0ff36 100644 --- a/code/game/turfs/floors/desert.dm +++ b/code/game/turfs/floors/desert.dm @@ -620,3 +620,28 @@ /turf/open/desert/excavation/component9/west dir = WEST + +// Tyrargo + +//shallow water +/turf/open/gm/river/desert/tyrargo + icon_state = "seashallow" + icon_overlay = "_seashallow" + +/turf/open/gm/river/desert/tyrargo/no_slowdown + base_river_slowdown = 1 + +/turf/open/gm/river/desert/tyrargo/covered + covered = TRUE + icon = 'icons/turf/floors/desert_water_covered.dmi' + +/turf/open/gm/river/desert/tyrargo/deep + icon_state = "seadeep" + icon_overlay = "_seadeep" + +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown + base_river_slowdown = 1 + +/turf/open/gm/river/desert/tyrargo/deep/covered + covered = TRUE + icon = 'icons/turf/floors/desert_water_covered.dmi' diff --git a/code/game/turfs/open_space.dm b/code/game/turfs/open_space.dm index 0cfe895c7d69..859bcdc27d2b 100644 --- a/code/game/turfs/open_space.dm +++ b/code/game/turfs/open_space.dm @@ -9,6 +9,7 @@ GLOBAL_DATUM_INIT(openspace_backdrop_one_for_all, /atom/movable/openspace_backdr mouse_opacity = MOUSE_OPACITY_TRANSPARENT /turf/open_space + is_weedable = NOT_WEEDABLE name = "open space" icon_state = "transparent" baseturfs = /turf/open_space diff --git a/code/game/turfs/snow.dm b/code/game/turfs/snow.dm index f068a7bc6349..a3f17eb76866 100644 --- a/code/game/turfs/snow.dm +++ b/code/game/turfs/snow.dm @@ -118,10 +118,10 @@ I.layer = layer + 0.001 + bleed_layer * 0.0001 overlays += I + //a bit odd to have it here but weedability should be linked to visual show of snow is_weedable = bleed_layer ? NOT_WEEDABLE : FULLY_WEEDABLE - //Explosion act /turf/open/snow/ex_act(severity) switch(severity) diff --git a/code/game/turfs/soro.dm b/code/game/turfs/soro.dm index 810a93615bc7..6db3721df229 100644 --- a/code/game/turfs/soro.dm +++ b/code/game/turfs/soro.dm @@ -31,6 +31,37 @@ /turf/open/gm/dirt/brown/variant_6 icon_state = "desert_dug" +/turf/open/gm/dirt/dark_brown + name = "dark dirt" + icon = 'icons/turf/floors/tyrargo_map_dirt.dmi' + icon_state = "desert" + baseturfs = /turf/open/gm/dirt/dark_brown + minimap_color = MINIMAP_DIRT + +/turf/open/gm/dirt/dark_brown/variant_1 + icon_state = "desert0" + +/turf/open/gm/dirt/dark_brown/variant_2 + icon_state = "desert1" + +/turf/open/gm/dirt/dark_brown/variant_3 + icon_state = "desert2" + +/turf/open/gm/dirt/dark_brown/variant_5 + icon_state = "desert3" + +/turf/open/gm/dirt/dark_brown/variant_5/east + dir = EAST + +/turf/open/gm/dirt/dark_brown/variant_5/south + dir = SOUTH + +/turf/open/gm/dirt/dark_brown/variant_5/west + dir = WEST + +/turf/open/gm/dirt/dark_brown/variant_6 + icon_state = "desert_dug" + /turf/open/gm/road name = "dirt road" icon = 'icons/turf/floors/ground_map_dirt.dmi' @@ -122,6 +153,50 @@ /turf/open/gm/coast/dirt/beachcorner2/south_east dir = 8 +/turf/open/gm/coast/dirt/forestdir + icon = 'icons/turf/floors/tyrargo_map_dirt.dmi' + icon_state = "forestbeach" + baseturfs = /turf/open/gm/coast + +/turf/open/gm/coast/dirt/forestdir/south + dir = 1 + +/turf/open/gm/coast/dirt/forestdir/west + dir = 4 + +/turf/open/gm/coast/dirt/forestdir/east + dir = 8 + +/turf/open/gm/coast/dirt/forestbeachcorner + icon = 'icons/turf/floors/tyrargo_map_dirt.dmi' + icon_state = "forestbeachcorner" + +/turf/open/gm/coast/dirt/forestbeachcorner/north_west + +/turf/open/gm/coast/dirt/forestbeachcorner/north_east + dir = 1 + +/turf/open/gm/coast/dirt/forestbeachcorner/south_east + dir = 4 + +/turf/open/gm/coast/dirt/forestbeachcorner/south_west + dir = 8 + +/turf/open/gm/coast/dirt/forestbeachcorner2 + icon = 'icons/turf/floors/tyrargo_map_dirt.dmi' + icon_state = "forestbeachcorner2" + +/turf/open/gm/coast/dirt/forestbeachcorner2/north_west + +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east + dir = 1 + +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west + dir = 4 + +/turf/open/gm/coast/dirt/forestbeachcorner2/south_east + dir = 8 + /turf/open/asphalt/brown name = "asphalt" icon = 'icons/turf/floors/ground_map_dirt.dmi' @@ -146,3 +221,8 @@ /turf/open/gm/river/soro icon = 'icons/turf/floors/ground_map_dirt.dmi' + +/turf/open/gm/river/tyrargo + icon = 'icons/turf/floors/tyrargo_map_dirt.dmi' + icon_state = "forestseashallow" + icon_overlay = "forestriverwater" diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index c2d25d5ccf92..bf4fe6fd2823 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -123,7 +123,6 @@ if(density) is_weedable = NOT_WEEDABLE - if(istransparentturf(src)) return INITIALIZE_HINT_LATELOAD else diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm index 415c73310a27..9591a3efc231 100644 --- a/code/game/turfs/walls/wall_types.dm +++ b/code/game/turfs/walls/wall_types.dm @@ -501,7 +501,6 @@ walltype = WALL_BONE_RESIN turf_flags = TURF_HULL - /turf/closed/wall/mineral/bone is_weedable = NOT_WEEDABLE @@ -644,6 +643,29 @@ if(!isnull(turf_to_check) && !turf_to_check.density && !(istype(turf_to_check, /turf/open/space))) minimap_color = MINIMAP_SOLID +/turf/closed/wall/strata_ice/forest + name = "forest vegetation" + icon = 'icons/turf/walls/forest_veg.dmi' + icon_state = "forest_veg" + desc = "Exceptionally dense vegetation that you can't see through." + walltype = WALL_FOREST //Thick forest, not metal. + turf_flags = TURF_HULL + +/turf/closed/wall/strata_ice/forest/rock + name = "rock columns" + icon_state = "rock_forest" + desc = "Exceptionally dense rock formations." + walltype = WALL_FOREST_ROCK //Rock but near a forest not jungle. + turf_flags = TURF_HULL + +/turf/closed/wall/strata_ice/forest/rock/dirty + name = "rock columns" + icon_state = "rock_forest_dirty" + desc = "Exceptionally dense rock formations." + walltype = WALL_FOREST_ROCK_DIRTY //Dirty rock but near a forest not jungle. + turf_flags = TURF_HULL + + /turf/closed/wall/strata_outpost_ribbed //this guy is our reinforced replacement name = "ribbed outpost walls" icon = 'icons/turf/walls/strata_outpost.dmi' diff --git a/code/game/turfs/walls/walls.dm b/code/game/turfs/walls/walls.dm index dd9eda6d3b7a..ecbf7179e49c 100644 --- a/code/game/turfs/walls/walls.dm +++ b/code/game/turfs/walls/walls.dm @@ -55,7 +55,6 @@ /turf/closed/wall/Initialize(mapload, ...) . = ..() is_weedable = initial(is_weedable) //so we can spawn weeds on the wall - // Defer updating based on neighbors while we're still loading map if(mapload && . != INITIALIZE_HINT_QDEL) return INITIALIZE_HINT_LATELOAD @@ -64,7 +63,6 @@ if(. != INITIALIZE_HINT_LATELOAD) update_icon() - /turf/closed/wall/LateInitialize() . = ..() // By default this assumes being used for map late init diff --git a/code/modules/admin/STUI.dm b/code/modules/admin/STUI.dm index 0d143f63c8af..7275cdad5e7f 100644 --- a/code/modules/admin/STUI.dm +++ b/code/modules/admin/STUI.dm @@ -68,49 +68,51 @@ GLOBAL_DATUM_INIT(STUI, /datum/STUI, new) /datum/STUI/ui_static_data(mob/user) . = list() .["tabs"] = list() - if(user.client.admin_holder.rights & R_MOD) - .["tabs"] += STUI_TEXT_ATTACK - .["tabs"] += STUI_TEXT_STAFF - .["tabs"] += STUI_TEXT_STAFF_CHAT - .["tabs"] += STUI_TEXT_OOC - if((user.client.admin_holder.rights & R_MOD) || (user.client.admin_holder.rights & R_DEBUG)) - .["tabs"] += STUI_TEXT_GAME - if(user.client.admin_holder.rights & R_DEBUG) - .["tabs"] += STUI_TEXT_DEBUG - .["tabs"] += STUI_TEXT_RUNTIME - .["tabs"] += STUI_TEXT_TGUI + + if(!check_other_rights(user.client, R_MOD|R_DEBUG, FALSE)) + return . + + .["tabs"] += STUI_TEXT_ATTACK + .["tabs"] += STUI_TEXT_STAFF + .["tabs"] += STUI_TEXT_STAFF_CHAT + .["tabs"] += STUI_TEXT_OOC + .["tabs"] += STUI_TEXT_GAME + .["tabs"] += STUI_TEXT_DEBUG + .["tabs"] += STUI_TEXT_RUNTIME + .["tabs"] += STUI_TEXT_TGUI /datum/STUI/ui_data(mob/user) var/stui_length = CONFIG_GET(number/STUI_length) . = list() .["logs"] = list() - if(user.client.admin_holder.rights & R_MOD) - if(length(attack) > stui_length+1) - attack.Cut(,length(attack)-stui_length) - .["logs"][STUI_TEXT_ATTACK] = attack - if(length(admin) > stui_length+1) - admin.Cut(,length(admin)-stui_length) - .["logs"][STUI_TEXT_STAFF] = admin - if(length(staff) > stui_length+1) - staff.Cut(,length(staff)-stui_length) - .["logs"][STUI_TEXT_STAFF_CHAT] = staff - if(length(ooc) > stui_length+1) - ooc.Cut(,length(ooc)-stui_length) - .["logs"][STUI_TEXT_OOC] = ooc - if((user.client.admin_holder.rights & R_MOD) || (user.client.admin_holder.rights & R_DEBUG)) - if(length(game) > stui_length+1) - game.Cut(,length(game)-stui_length) - .["logs"][STUI_TEXT_GAME] = game - if(user.client.admin_holder.rights & R_DEBUG) - if(length(debug) > stui_length+1) - debug.Cut(,length(debug)-stui_length) - .["logs"][STUI_TEXT_DEBUG] = debug - if(length(runtime) > stui_length+1) - runtime.Cut(,length(runtime)-stui_length) - .["logs"][STUI_TEXT_RUNTIME] = runtime - if(length(tgui) > stui_length+1) - tgui.Cut(,length(tgui)-stui_length) - .["logs"][STUI_TEXT_TGUI] = tgui + + if(!check_other_rights(user.client, R_MOD|R_DEBUG, FALSE)) + return . + + if(length(attack) > stui_length+1) + attack.Cut(,length(attack)-stui_length) + .["logs"][STUI_TEXT_ATTACK] = attack + if(length(admin) > stui_length+1) + admin.Cut(,length(admin)-stui_length) + .["logs"][STUI_TEXT_STAFF] = admin + if(length(staff) > stui_length+1) + staff.Cut(,length(staff)-stui_length) + .["logs"][STUI_TEXT_STAFF_CHAT] = staff + if(length(ooc) > stui_length+1) + ooc.Cut(,length(ooc)-stui_length) + .["logs"][STUI_TEXT_OOC] = ooc + if(length(game) > stui_length+1) + game.Cut(,length(game)-stui_length) + .["logs"][STUI_TEXT_GAME] = game + if(length(debug) > stui_length+1) + debug.Cut(,length(debug)-stui_length) + .["logs"][STUI_TEXT_DEBUG] = debug + if(length(runtime) > stui_length+1) + runtime.Cut(,length(runtime)-stui_length) + .["logs"][STUI_TEXT_RUNTIME] = runtime + if(length(tgui) > stui_length+1) + tgui.Cut(,length(tgui)-stui_length) + .["logs"][STUI_TEXT_TGUI] = tgui /client/proc/open_STUI() set name = "S: Open STUI" diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm index 35391b177792..ed59ea2fad01 100644 --- a/code/modules/admin/admin_ranks.dm +++ b/code/modules/admin/admin_ranks.dm @@ -38,7 +38,7 @@ GLOBAL_LIST_EMPTY(admin_ranks) //list of all ranks with associated rights var/rights = NONE for(var/right in input_list) - right = lowertext(right) + right = ckey(right) // lower text + trim switch(right) if("buildmode","build") diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 1e097afbcea7..cc0c2689f9e1 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -4,7 +4,6 @@ GLOBAL_LIST_INIT(admin_verbs_default, list( /client/proc/toggleadminhelpsound, /*toggles whether we hear a sound when adminhelps/PMs are used*/ /client/proc/becomelarva, /*lets you forgo your larva protection as staff member. */ /client/proc/deadmin_self, /*destroys our own admin datum so we can play as a regular player*/ - /client/proc/open_STUI, // This proc can be used by all admins but depending on your rank you see diffrent stuff. /client/proc/debug_variables, /*allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify*/ /client/proc/debug_global_variables, /client/proc/xooc, // Xeno OOC @@ -81,12 +80,6 @@ GLOBAL_LIST_INIT(admin_verbs_default, list( GLOBAL_LIST_INIT(admin_verbs_admin, list( /datum/admins/proc/togglejoin, /*toggles whether people can join the current game*/ /datum/admins/proc/announce, /*priority announce something to all clients.*/ - /datum/admins/proc/getserverlog, /*allows us to fetch any server logs (diary) for other days*/ - /datum/admins/proc/view_game_log, /*shows the server game log (diary) for this round*/ - /datum/admins/proc/view_attack_log, /*shows the server attack log for this round*/ - /datum/admins/proc/view_runtime_log, /*shows the server runtime log for this round*/ - /datum/admins/proc/view_href_log, /*shows the server HREF log for this round*/ - /datum/admins/proc/view_tgui_log, /*shows the server TGUI log for this round*/ /client/proc/cmd_admin_delete, /*delete an instance/object/mob/etc*/ /client/proc/toggleprayers, /*toggles prayers on/off*/ /client/proc/toggle_hear_radio, /*toggles whether we hear the radio*/ @@ -110,6 +103,16 @@ GLOBAL_LIST_INIT(admin_verbs_ban, list( // /client/proc/jobbans // Disabled temporarily due to 15-30 second lag spikes. )) +GLOBAL_LIST_INIT(admin_verbs_logs, list( + /client/proc/open_STUI, + /datum/admins/proc/getserverlog, /*allows us to fetch any server logs (diary) for other days*/ + /datum/admins/proc/view_game_log, /*shows the server game log (diary) for this round*/ + /datum/admins/proc/view_attack_log, /*shows the server attack log for this round*/ + /datum/admins/proc/view_runtime_log, /*shows the server runtime log for this round*/ + /datum/admins/proc/view_href_log, /*shows the server HREF log for this round*/ + /datum/admins/proc/view_tgui_log, /*shows the server TGUI log for this round*/ +)) + GLOBAL_LIST_INIT(admin_verbs_sounds, list( /client/proc/play_admin_sound, /client/proc/stop_admin_sound, @@ -214,12 +217,6 @@ GLOBAL_LIST_INIT(admin_verbs_debug, list( /client/proc/enter_tree, /client/proc/set_tree_points, /client/proc/purge_data_tab, - /datum/admins/proc/getserverlog, /*allows us to fetch any server logs (diary) for other days*/ - /datum/admins/proc/view_game_log, /*shows the server game log (diary) for this round*/ - /datum/admins/proc/view_attack_log, /*shows the server attack log for this round*/ - /datum/admins/proc/view_runtime_log, /*shows the server runtime log for this round*/ - /datum/admins/proc/view_href_log, /*shows the server HREF log for this round*/ - /datum/admins/proc/view_tgui_log, /*shows the server TGUI log for this round*/ /client/proc/admin_blurb, /datum/admins/proc/open_shuttlepanel, /client/proc/allow_browser_inspect, @@ -330,6 +327,7 @@ GLOBAL_LIST_INIT(mentor_verbs, list( if(CLIENT_HAS_RIGHTS(src, R_MOD)) add_verb(src, GLOB.admin_verbs_ban) add_verb(src, GLOB.admin_verbs_teleport) + add_verb(src, GLOB.admin_verbs_logs) if(CLIENT_HAS_RIGHTS(src, R_EVENT)) add_verb(src, GLOB.admin_verbs_minor_event) if(CLIENT_HAS_RIGHTS(src, R_ADMIN)) @@ -343,6 +341,7 @@ GLOBAL_LIST_INIT(mentor_verbs, list( add_verb(src, GLOB.admin_verbs_server) if(CLIENT_HAS_RIGHTS(src, R_DEBUG)) add_verb(src, GLOB.admin_verbs_debug) + add_verb(src, GLOB.admin_verbs_logs) if(!CONFIG_GET(flag/debugparanoid) || CLIENT_HAS_RIGHTS(src, R_ADMIN)) add_verb(src, GLOB.admin_verbs_debug_advanced) // Right now it's just callproc but we can easily add others later on. if(CLIENT_HAS_RIGHTS(src, R_POSSESS)) diff --git a/code/modules/admin/topic/topic_events.dm b/code/modules/admin/topic/topic_events.dm index 882fe2bd55d5..27356fd028d9 100644 --- a/code/modules/admin/topic/topic_events.dm +++ b/code/modules/admin/topic/topic_events.dm @@ -323,6 +323,8 @@ spawned_human.ckey = owner.ckey if (offer_as_ert) + var/time_to_decide = 15 SECONDS + var/datum/emergency_call/custom/em_call = new() var/name = input(usr, "Please name your ERT", "ERT Name", "Admin spawned humans") em_call.name = name @@ -331,16 +333,21 @@ em_call.owner = owner var/quiet_launch = TRUE - var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), time_to_decide) if(ql_prompt == "Yes") quiet_launch = FALSE var/announce_receipt = FALSE - var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), time_to_decide) if(ar_prompt == "Yes") announce_receipt = TRUE - em_call.activate(quiet_launch, announce_receipt) + var/delete_midless_mobs = FALSE + var/del_prompt = tgui_alert(usr, "Would you like to delete mindless mobs? This will remove all mobs that did not get a mind upon spawn. If not, the mobs will be offered to ghosts.", "Delete mindless mobs?", list("Yes", "No"), time_to_decide) + if(del_prompt == "Yes") + delete_midless_mobs = TRUE + + em_call.activate(quiet_launch, announce_receipt, delete_midless_mobs) message_admins("[key_name_admin(usr)] created [humans_to_spawn] humans as [job_name] at [get_area(initial_spot)]") @@ -419,6 +426,8 @@ X.ckey = owner.ckey if(offer_as_ert) + var/time_to_decide = 15 SECONDS + var/datum/emergency_call/custom/em_call = new() var/name = input(usr, "Please name your ERT", "ERT Name", "Admin spawned xenos") em_call.name = name @@ -427,15 +436,20 @@ em_call.owner = owner var/quiet_launch = TRUE - var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), time_to_decide) if(ql_prompt == "Yes") quiet_launch = FALSE var/announce_receipt = FALSE - var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), time_to_decide) if(ar_prompt == "Yes") announce_receipt = TRUE - em_call.activate(quiet_launch, announce_receipt) + var/delete_midless_mobs = FALSE + var/del_prompt = tgui_alert(usr, "Would you like to delete mindless mobs? This will remove all mobs that did not get a mind upon spawn. If not, the mobs will be offered to ghosts.", "Delete mindless mobs?", list("Yes", "No"), time_to_decide) + if(del_prompt == "Yes") + delete_midless_mobs = TRUE + + em_call.activate(quiet_launch, announce_receipt, delete_midless_mobs) message_admins("[key_name_admin(usr)] created [xenos_to_spawn] xenos as [xeno_caste] at [get_area(initial_spot)]") diff --git a/code/modules/clothing/gloves/marine_gloves.dm b/code/modules/clothing/gloves/marine_gloves.dm index d06feb7fb506..ac502dfb7f49 100644 --- a/code/modules/clothing/gloves/marine_gloves.dm +++ b/code/modules/clothing/gloves/marine_gloves.dm @@ -54,6 +54,11 @@ name = "marine black combat gloves" adopts_squad_color = FALSE +/obj/item/clothing/gloves/marine/army + name = "army combat gloves" + desc = "Standard issue army tactical gloves. It reads: 'knit by Army Widows Association'." + adopts_squad_color = FALSE + /obj/item/clothing/gloves/marine/brown name = "marine brown combat gloves" desc = "Standard issue marine tactical gloves. It reads: 'knit by Marine Widows Association'. These are brown instead of the classic black." diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm index 6b240133c003..7bbde989b24e 100644 --- a/code/modules/clothing/head/head.dm +++ b/code/modules/clothing/head/head.dm @@ -146,6 +146,10 @@ icon_state = "beret_black" flags_atom = NO_GAMEMODE_SKIN +/obj/item/clothing/head/beret/cm/black/army + name = "US Army beret" + desc = "The proud tradition of the US Army 1st Air Cav using black berets for their troopers is maintained since the 20th century." + /obj/item/clothing/head/beret/cm/green icon_state = "beret_green" flags_atom = NO_GAMEMODE_SKIN @@ -772,6 +776,9 @@ GLOBAL_LIST_INIT(allowed_hat_items, list( ) flags_atom = NO_GAMEMODE_SKIN +/obj/item/clothing/head/beret/marine/commander/black/army + name = "army major black beret" + /obj/item/clothing/head/beret/marine/commander/council name = "marine colonel beret" desc = "A blue beret with the Lieutenant Colonel's insignia emblazoned on it. Its blue color symbolizes loyalty, confidence, and politics - the core components of a true Colonel." @@ -1116,6 +1123,15 @@ GLOBAL_LIST_INIT(allowed_hat_items, list( WEAR_HEAD = 'icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi' ) +/obj/item/clothing/head/cavalry + name = "\improper US cavalry hat" + desc = "Also known as Cavalry Stetson, this hat is a symbol of tradition and remembrence of heroism that is ongoing from as far as 19th century. Even though cavalry divison had cashed in its horses for choppers, choppers for dropships, and gone tear-assing around space, looking for the shit." + icon_state = "cavalry" + icon = 'icons/obj/items/clothing/hats/hats_by_faction/UA.dmi' + item_icons = list( + WEAR_HEAD = 'icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi' + ) + //==========================//DRESS BLUES\\===============================\\ //=======================================================================\\ diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 10c3fe033823..67a43834190e 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -1062,6 +1062,24 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( WEAR_R_HAND = "helmet" ) +/obj/item/clothing/head/helmet/marine/rto/army + name = "\improper Personal body armor system helmet" + desc = "The personal body armor system helmet is the standard issue combat helmet for the US Army. Selected over the M12 pattern helmet during combat trials, it offers allegedly superior protection compared to the M12 series, at over four times the cost. Though its far more uncomfortable to wear." + icon = 'icons/obj/items/clothing/hats/hats_by_faction/UA.dmi' + item_icons = list( + WEAR_HEAD = 'icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi', + ) + icon_state = "army_helmet" + item_state = "army_helmet" + specialty = "Personal body armor system" + flags_atom = NO_GAMEMODE_SKIN + +/obj/item/clothing/head/helmet/marine/rto/army/engi + built_in_visors = list(new /obj/item/device/helmet_visor, new /obj/item/device/helmet_visor/welding_visor) + +/obj/item/clothing/head/helmet/marine/rto/army/medic + built_in_visors = list(new /obj/item/device/helmet_visor, new /obj/item/device/helmet_visor/medical/advanced) + /obj/item/clothing/head/helmet/marine/rto/intel name = "\improper XM12 pattern intelligence helmet" desc = "An experimental brain-bucket. A dust ruffle hangs from back. Moderately better at deflecting blunt objects at the cost of humiliation, can also hold a second visor optic. But who will be laughing at the memorial? Not you, you'll be busy getting medals for your intel work." diff --git a/code/modules/clothing/masks/breath.dm b/code/modules/clothing/masks/breath.dm index 05f40fee7835..1da5cfa96fe0 100644 --- a/code/modules/clothing/masks/breath.dm +++ b/code/modules/clothing/masks/breath.dm @@ -451,6 +451,11 @@ item_state = "neckerchief_brown" original_state = "neckerchief_brown" +/obj/item/clothing/mask/neckerchief/yellow + icon_state = "neckerchief_bravo" + item_state = "neckerchief_bravo" + original_state = "neckerchief_bravo" + /obj/item/clothing/mask/owlf_mask name = "\improper OWLF gas mask" desc = "A close-fitting mask that can be connected to an air supply." diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index 9fb56e887369..54b172d71517 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -38,6 +38,14 @@ /obj/item/clothing/shoes/marine/knife spawn_item_type = /obj/item/attachable/bayonet +/obj/item/clothing/shoes/marine/army + name = "army combat boots" + desc = "Standard issue combat boots for combat scenarios or combat situations. All combat, all the time." + +/obj/item/clothing/shoes/marine/army/knife + icon_state = "marine_jungle" + spawn_item_type = /obj/item/attachable/bayonet + /obj/item/clothing/shoes/marine/jungle icon_state = "marine_jungle" desc = "Don't go walkin' slow, the devil's on the loose." diff --git a/code/modules/clothing/suits/marine_armor/_marine_armor.dm b/code/modules/clothing/suits/marine_armor/_marine_armor.dm index 80b2423863b8..771472483143 100644 --- a/code/modules/clothing/suits/marine_armor/_marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor/_marine_armor.dm @@ -283,6 +283,18 @@ light_range = 5 //slightly higher specialty = "M4 pattern marine" +/obj/item/clothing/suit/storage/marine/medium/rto/army + name = "\improper Personal Body Armor System" + desc = "The Personnel Body Armor System is the standard issue armor of the US Army, adopted over the M4 series pattern armor during field trials. Surprisingly uncomfortable, but offering far superior protection to the M3 or M4 series armor. At four times the price." + icon_state = "army_armor" + icon = 'icons/obj/items/clothing/suits/suits_by_faction/UA.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi' + ) + specialty = "Personal Body Armor System" + storage_slots = 3 + flags_atom = NO_GAMEMODE_SKIN + /obj/item/clothing/suit/storage/marine/MP name = "\improper M2 pattern MP armor" desc = "A standard Colonial Marines M2 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." @@ -606,6 +618,23 @@ ) flags_atom = NO_GAMEMODE_SKIN|NO_NAME_OVERRIDE +/obj/item/clothing/suit/storage/marine/light/synvest/army + name = "\improper Synthetic Body Armor System" + desc = "This is a variant of the Personnel Body Armor System, it has been modified extensively to be used by US Army Synthetics. It offers light protection, maximum mobility and more internal storage than its USCM counterpart. The cost of this item could outfit an entire squad of USCM Marines, but you are worth this cost." + icon_state = "VL_syn_army" + icon = 'icons/obj/items/clothing/suits/suits_by_faction/UA.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi' + ) + flags_atom = NO_GAMEMODE_SKIN|NO_NAME_OVERRIDE + armor_melee = CLOTHING_ARMOR_VERYLOW + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_laser = CLOTHING_ARMOR_VERYLOW + armor_bomb = CLOTHING_ARMOR_VERYLOW + armor_bio = CLOTHING_ARMOR_VERYLOW + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 4 + /obj/item/clothing/suit/storage/marine/light/recon name = "M3-R pattern light armor" desc = "Special issue light armor for forward reconnaissance Marines. Offers similar protection as M3 armor but none of the slowdown." diff --git a/code/modules/clothing/suits/marine_coat.dm b/code/modules/clothing/suits/marine_coat.dm index 8243486d9f82..7aa6d244f06b 100644 --- a/code/modules/clothing/suits/marine_coat.dm +++ b/code/modules/clothing/suits/marine_coat.dm @@ -100,6 +100,14 @@ has_buttons = TRUE icon_state = "coat_officer" +/obj/item/clothing/suit/storage/jacket/marine/service/green + icon = 'icons/obj/items/clothing/suits/suits_by_map/desert.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_map/desert.dmi' + ) + flags_atom = NO_GAMEMODE_SKIN + initial_icon_state = "coat_officer" + /obj/item/clothing/suit/storage/jacket/marine/pilot/armor name = "\improper M70 flak jacket" desc = "A flak jacket used by dropship pilots to protect themselves while flying in the cockpit. Excels in protecting the wearer against high-velocity solid projectiles." diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index 60c232f84f70..4c9a8e50175f 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -406,6 +406,18 @@ WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/items_by_map/urban_righthand.dmi' ) +/obj/item/clothing/under/marine/army + name = "US Army uniform" + desc = "Standard-issue Army uniform. They have shards of light Kevlar to help protect against stabbing weapons and bullets." + specialty = "US Army" + icon_state = "army_uniform" + worn_state = "army_uniform" + icon = 'icons/obj/items/clothing/uniforms/uniforms_by_faction/UA.dmi' + flags_atom = NO_GAMEMODE_SKIN|NO_NAME_OVERRIDE + item_icons = list( + WEAR_BODY = 'icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/UA.dmi', + ) + /obj/item/clothing/under/marine/officer name = "marine officer uniform" desc = "Softer than silk. Lighter than feather. More protective than Kevlar. Fancier than a regular jumpsuit, too. It has shards of light Kevlar to help protect against stabbing weapons and bullets." diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm index b41266b23808..ecfd25ef09de 100644 --- a/code/modules/clothing/under/ties.dm +++ b/code/modules/clothing/under/ties.dm @@ -631,6 +631,21 @@ desc = "A fire-resistant chest patch, worn by the men and women of the Falling Falcons, the 2nd battalion of the 4th brigade of the USCM." icon_state = "fallingfalconsbigpatch" +/obj/item/clothing/accessory/patch/army + name = "US Army patch" + desc = "A fire-resistant shoulder patch, worn by the men and women of the United States Army." + icon_state = "armypatch" + +/obj/item/clothing/accessory/patch/army/infantry + name = "Army Infantry patch" + desc = "A fire-resistant shoulder patch, worn by the men and women of the 1st Cavalry Division." + icon_state = "infantrypatch" + +/obj/item/clothing/accessory/patch/army/armor + name = "Army Armor patch" + desc = "A fire-resistant shoulder patch, worn by the men and women of the 32nd Armor Brigade." + icon_state = "armorpatch" + /obj/item/clothing/accessory/patch/wy name = "Weyland-Yutani patch" desc = "A fire-resistant black shoulder patch featuring the Weyland-Yutani logo. A symbol of loyalty to the corporation, or perhaps ironic mockery, depending on your viewpoint." diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index 31866d7c3942..fd56a07ab6c7 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -142,6 +142,11 @@ html_link = "images/9/94/New_Varadero.png" color = "red" +/obj/item/map/tyrargo_rift + name = "\improper Tyrargo Rift map" + desc = "A labeled blueprint of the UA city Tyrargo Rift" + html_link = "images/7/79/Tyrargo_Rift.png" + GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /proc/setup_all_maps() @@ -159,7 +164,8 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) MAP_KUTJEVO = new /obj/item/map/kutjevo_map(), MAP_LV522_CHANCES_CLAIM = new /obj/item/map/lv522_map(), MAP_LV759_HYBRISA_PROSPERA = new /obj/item/map/lv759_map(), - MAP_NEW_VARADERO = new /obj/item/map/new_varadero() + MAP_NEW_VARADERO = new /obj/item/map/new_varadero(), + MAP_TYRARGO_RIFT = new /obj/item/map/tyrargo_rift(), ) //used by marine equipment machines to spawn the correct map. diff --git a/code/modules/cm_marines/marines_consoles.dm b/code/modules/cm_marines/marines_consoles.dm index 91ed38b6dd1e..494d2ae32c74 100644 --- a/code/modules/cm_marines/marines_consoles.dm +++ b/code/modules/cm_marines/marines_consoles.dm @@ -1025,6 +1025,10 @@ GLOBAL_LIST_EMPTY_TYPED(crew_monitor, /datum/crewmonitor) JOB_MESS_SERGEANT = 62, // 70-149: SQUADS (look below) JOB_SYNTH_K9 = 71, + JOB_ARMY_TROOPER = 72, + JOB_ARMY_ENGI = 73, + JOB_ARMY_MEDIC = 74, + JOB_ARMY_SYN = 75, // 150+: Civilian/other JOB_CORPORATE_LIAISON = 150, JOB_CORPORATE_BODYGUARD = 151, diff --git a/code/modules/cm_preds/hunting_grounds.dm b/code/modules/cm_preds/hunting_grounds.dm index 7b2817abef78..d7d9a50c626a 100644 --- a/code/modules/cm_preds/hunting_grounds.dm +++ b/code/modules/cm_preds/hunting_grounds.dm @@ -8,3 +8,7 @@ /datum/lazy_template/pred/jungle_moon map_name = "jungle_moon" hunting_ground_name = "Jungle Moon" + +/datum/lazy_template/pred/desert_moon + map_name = "desert_moon" + hunting_ground_name = "Desert Moon" diff --git a/code/modules/cm_preds/yaut_items.dm b/code/modules/cm_preds/yaut_items.dm index 56030a348123..62c9987751e7 100644 --- a/code/modules/cm_preds/yaut_items.dm +++ b/code/modules/cm_preds/yaut_items.dm @@ -666,7 +666,7 @@ GLOBAL_VAR_INIT(youngblood_timer_yautja, 0) to_chat(user, SPAN_DANGER("The console refuses [attacking_item].")) return to_chat(user, SPAN_DANGER("You hold [attacking_item] up to the console, and it begins to scan...")) - message_all_yautja("Prey is trying to escape the hunting grounds.") + message_all_yautja("Prey is trying to escape the hunting grounds at [get_area(user)] console.") if(!do_after(user, 15 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) to_chat(user, SPAN_DANGER("The strange console stops scanning abruptly.")) diff --git a/code/modules/desert_dam/filtration/filtration.dm b/code/modules/desert_dam/filtration/filtration.dm index 72921196cee0..189ba3ae3107 100644 --- a/code/modules/desert_dam/filtration/filtration.dm +++ b/code/modules/desert_dam/filtration/filtration.dm @@ -51,51 +51,68 @@ Each var depends on others if(east_filtration) */ - -/obj/effect/blocker/toxic_water +/obj/effect/blocker/water anchored = TRUE density = FALSE opacity = FALSE unacidable = TRUE - layer = ABOVE_FLY_LAYER //to make it visible in the map editor + + icon = 'icons/turf/floors/desert_water.dmi' + icon_state = "seadeep" + + + alpha = 0 + layer = TURF_LAYER mouse_opacity = MOUSE_OPACITY_TRANSPARENT - icon = 'icons/old_stuff/mark.dmi' - var/dispersing = 0 - var/toxic = 1 - var/disperse_group + var/flooded_alpha = 180 + var/dispersing = FALSE + var/toxic = FALSE + var/disperse_group = 1 var/spread_delay = 5 + var/list/water_sounds = list('sound/effects/slosh.ogg') + + + + +/obj/effect/blocker/water/toxic + icon = 'icons/old_stuff/mark.dmi' + toxic = TRUE + disperse_group + spread_delay = 5 + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + layer = ABOVE_FLY_LAYER //to make it visible in the map editor icon_state = "spawn_shuttle" -/obj/effect/blocker/toxic_water/Group_1 +/obj/effect/blocker/water/toxic/Group_1 disperse_group = 1 icon_state = "spawn_event" -/obj/effect/blocker/toxic_water/Group_1/delay +/obj/effect/blocker/water/toxic/Group_1/delay spread_delay = 100 icon_state = "spawn_shuttle_dock" -/obj/effect/blocker/toxic_water/Group_2 +/obj/effect/blocker/water/toxic/Group_2 disperse_group = 2 icon_state = "spawn_goal" -/obj/effect/blocker/toxic_water/Group_2/delay +/obj/effect/blocker/water/toxic/Group_2/delay spread_delay = 100 icon_state = "spawn_shuttle_dock" -/obj/effect/blocker/toxic_water/Initialize(mapload, ...) +/obj/effect/blocker/water/Initialize(mapload, ...) . = ..() return INITIALIZE_HINT_LATELOAD -/obj/effect/blocker/toxic_water/LateInitialize() +/obj/effect/blocker/water/toxic/LateInitialize() . = ..() update_turf() icon_state = null -/obj/effect/blocker/toxic_water/proc/update_turf() +/obj/effect/blocker/water/proc/update_turf() if(istype(src.loc, /turf/open/gm/river/desert)) var/turf/open/gm/river/desert/R = src.loc R.toxic = src.toxic @@ -113,7 +130,7 @@ Each var depends on others -/obj/effect/blocker/toxic_water/Crossed(atom/A) +/obj/effect/blocker/water/Crossed(atom/A) if(toxic == 0) return @@ -138,7 +155,6 @@ Each var depends on others if(HAS_TRAIT(M, TRAIT_HAULED)) return - cause_damage(M) START_PROCESSING(SSobj, src) return else if(isVehicleMultitile(A)) @@ -151,7 +167,7 @@ Each var depends on others return -/obj/effect/blocker/toxic_water/process() +/obj/effect/blocker/water/process() if(!toxic) STOP_PROCESSING(SSobj, src) @@ -167,7 +183,6 @@ Each var depends on others var/targets_present = 0 for(var/mob/living/carbon/M in range(0, src)) targets_present++ - cause_damage(M) for(var/obj/vehicle/multitile/V in range(0, src)) if(V.vehicle_flags & VEHICLE_CLASS_WEAK) targets_present++ @@ -206,8 +221,8 @@ Each var depends on others playsound(target, 'sound/bullets/acid_impact1.ogg', 10, 1) -/obj/effect/blocker/toxic_water/proc/disperse_spread(from_dir = 0) - if(dispersing || !toxic) +/obj/effect/blocker/water/proc/disperse_spread(from_dir = 0, drain = FALSE) + if((dispersing && !drain) || (!dispersing && drain)) return for(var/direction in GLOB.alldirs) @@ -221,22 +236,57 @@ Each var depends on others else effective_spread_delay = spread_delay * 1.414 //diagonal spreading takes longer - for(var/obj/effect/blocker/toxic_water/W in get_step(src,direction) ) + for(var/obj/effect/blocker/water/W in get_step(src,direction) ) if(W.disperse_group == src.disperse_group) spawn(effective_spread_delay) - W.disperse_spread(turn(direction,180)) + W.disperse_spread(turn(direction,180), drain) + if(drain) + drain() + else + disperse(from_dir) + +/obj/effect/blocker/water/proc/drain() + dispersing = 0 + animate(src, alpha = initial(alpha), time = 60) + var/turf/location = loc + location.is_weedable = initial(location.is_weedable) - disperse() -/obj/effect/blocker/toxic_water/proc/disperse() +/obj/effect/blocker/water/proc/disperse(from_dir) dispersing = 1 + if(prob(30)) + var/sound = pick(water_sounds) + playsound(loc, sound, 10, 1) + for(var/obj/effect/alien/weeds/weeds_to_clean in loc) + qdel(weeds_to_clean) + + for(var/obj/effect/alien/resin/resin in loc) + qdel(resin) + + for(var/obj/flamer_fire/fire in loc) + qdel(fire) + + for(var/obj/item/item in loc) + if(item.anchored) + continue + if(prob(70)) + item.throw_atom((get_step(loc,turn(from_dir,180))),1) + + animate(src, alpha= flooded_alpha, easing = BACK_EASING | EASE_OUT , time= 40) + update_icon() + var/turf/location = loc + location.is_weedable = NOT_WEEDABLE + + +/obj/effect/blocker/water/toxic/disperse() + .=..() toxic = -1 update_turf() addtimer(CALLBACK(src, PROC_REF(do_disperse)), 1 SECONDS) -/obj/effect/blocker/toxic_water/proc/do_disperse() +/obj/effect/blocker/water/toxic/proc/do_disperse() toxic = 0 update_turf() dispersing = 0 @@ -249,17 +299,20 @@ Each var depends on others mouse_opacity = MOUSE_OPACITY_TRANSPARENT var/id = null +/obj/structure/machinery/dispersal_initiator/floodgate + id = "floodgate" + /obj/structure/machinery/dispersal_initiator/New() ..() icon_state = null -/obj/structure/machinery/dispersal_initiator/proc/initiate() +/obj/structure/machinery/dispersal_initiator/proc/initiate(drain = FALSE) // Ported over ambience->ambience_exterior, was broken. Enable if you actually want it //var/area/A = get_area(src) //A.ambience_exterior = 'sound/ambience/ambiatm1.ogg' sleep(30) - for(var/obj/effect/blocker/toxic_water/W in get_turf(src)) - W.disperse_spread() + for(var/obj/effect/blocker/water/W in get_turf(src)) + W.disperse_spread(drain = drain) /obj/structure/machinery/dispersal_initiator/ex_act() return @@ -268,7 +321,7 @@ Each var depends on others /obj/structure/machinery/filtration_button name = "\improper Filtration Activation" icon = 'icons/obj/structures/props/stationobjs.dmi' - icon_state = "launcherbtt" + icon_state = "big_red_button_wallv" desc = "Activates the filtration mechanism." var/id = null var/active = 0 @@ -279,6 +332,21 @@ Each var depends on others unslashable = TRUE unacidable = TRUE +/obj/structure/machinery/filtration_button/floodgate + id = "floodgate" + +/obj/structure/machinery/filtration_button/floodgate/power_change(area/master_area) + . = ..() + if(!inoperable()) + return + + drain() + +/obj/structure/machinery/filtration_button/floodgate/proc/drain() + for(var/obj/structure/machinery/dispersal_initiator/M in GLOB.machines) + if (M.id == src.id) + M.initiate(drain = TRUE) + /obj/structure/machinery/filtration_button/attack_hand(mob/user as mob) if(inoperable()) @@ -289,7 +357,7 @@ Each var depends on others use_power(5) active = 1 - icon_state = "launcheract" + icon_state = "big_red_button_wallv1" // Ported over ambience->ambience_exterior, was broken. Enable if you actually want it //var/area/A = get_area(src) @@ -299,9 +367,12 @@ Each var depends on others if (M.id == src.id) M.initiate() + marine_announcement("Alert: Tyrargo sewer release valve triggered: Imminent flooding of sewer lines.") + xeno_announcement("The hosts have triggered the release of a flood of water in to the sewers underneath this battleground. Be wary of the loss our ability to weed the sewer tunnels.") + sleep(50) - icon_state = "launcherbtt" + icon_state = "big_red_button_wallv-p" active = 0 return @@ -310,11 +381,11 @@ Each var depends on others return /* -/obj/effect/blocker/toxic_water/connector +/obj/effect/blocker/water/toxic/connector icon_state = null //something to stop this stuff from killing people -/obj/effect/blocker/toxic_water/connector/disperse() +/obj/effect/blocker/water/toxic/connector/disperse() return */ diff --git a/code/modules/desert_dam/filtration/floodgates.dm b/code/modules/desert_dam/filtration/floodgates.dm index ada49821833e..d385b605588d 100644 --- a/code/modules/desert_dam/filtration/floodgates.dm +++ b/code/modules/desert_dam/filtration/floodgates.dm @@ -1,6 +1,7 @@ /turf/closed/wall/r_wall/bunker/floodgate name = "flood gate" desc = "A gate, designed to help prevent flooding. It can only be closed for a certain period of time, but would allow parts of the river to flow through filtered." + icon_state = "hull" density = TRUE turf_flags = TURF_HULL diff --git a/code/modules/gear_presets/corpses.dm b/code/modules/gear_presets/corpses.dm index 5fbbf0a959ce..a83fa9a3cf4d 100644 --- a/code/modules/gear_presets/corpses.dm +++ b/code/modules/gear_presets/corpses.dm @@ -1769,3 +1769,160 @@ xenovictim = TRUE //*****************************************************************************************************/ + +//********* TYRARGO RIFT **************/ + +// US Army - Trooper + +/datum/equipment_preset/corpse/tyrargo + flags = EQUIPMENT_PRESET_STUB + +/datum/equipment_preset/corpse/tyrargo/us_army_trooper + name = "Corpse - US Army - Trooper" + assignment = JOB_ARMY_TROOPER + faction = FACTION_MARINE + job_title = JOB_ARMY_TROOPER + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/military/survivor/army_standard + flags = EQUIPMENT_PRESET_START_OF_ROUND + idtype = /obj/item/card/id/dogtag + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_RESEARCH,ACCESS_CIVILIAN_ENGINEERING,ACCESS_CIVILIAN_LOGISTICS,ACCESS_CIVILIAN_BRIG,ACCESS_CIVILIAN_MEDBAY,ACCESS_CIVILIAN_COMMAND,) + +/datum/equipment_preset/corpse/tyrargo/us_army_trooper/proc/spawn_pouch(mob/living/carbon/human/new_human) + var/i = rand(1,6) + switch(i) + if (1) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_L_STORE) + if (2) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount(new_human), WEAR_IN_L_STORE) + if (3) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount(new_human), WEAR_IN_L_STORE) + if (4) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/emergency(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_L_STORE) + if (5) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount(new_human), WEAR_IN_L_STORE) + if (6) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint/random_amount(new_human), WEAR_IN_L_STORE) + +/datum/equipment_preset/corpse/tyrargo/us_army_trooper/proc/spawn_fluff_item(mob/living/carbon/human/new_human) + var/i = rand(1,5) + switch(i) + if (1) + new_human.equip_to_slot_or_del(new /obj/item/storage/fancy/cigarettes/spirit(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/matches(new_human), WEAR_IN_BACK) + if (2) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/cans/souto/classic(new_human), WEAR_IN_BACK) + if (3) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/cans/space_mountain_wind(new_human), WEAR_IN_BACK) + if (4) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/chocolatebar(new_human), WEAR_IN_BACK) + +/datum/equipment_preset/corpse/tyrargo/us_army_trooper/load_gear(mob/living/carbon/human/new_human) + var/choice = rand(1,12) + var/obj/item/clothing/under/marine/army/uniform = new() + var/obj/item/clothing/accessory/ranks/marine/e2/pin = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/infantry/patch_infantry = new() + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_infantry) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + spawn_pouch(new_human) + spawn_fluff_item(new_human) + + switch(choice) + if(1 to 5) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + if(6 to 7) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster(new_human), WEAR_ACCESSORY) + if(8 to 10) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/army, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle, WEAR_IN_BACK) + if(10 to 12) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra/army, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap/empty, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap/empty, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra, WEAR_IN_BACK) + ..() + +/datum/equipment_preset/corpse/tyrargo/us_army_trooper/burst + name = "Corpse - Burst - US Army - Trooper" + xenovictim = TRUE + +/datum/equipment_preset/corpse/tyrargo/us_army_medic + name = "Corpse - US Army - Medic" + assignment = JOB_ARMY_MEDIC + faction = FACTION_MARINE + job_title = JOB_ARMY_MEDIC + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/military/survivor/army_medic + flags = EQUIPMENT_PRESET_START_OF_ROUND + idtype = /obj/item/card/id/dogtag + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_RESEARCH,ACCESS_CIVILIAN_ENGINEERING,ACCESS_CIVILIAN_LOGISTICS,ACCESS_CIVILIAN_BRIG,ACCESS_CIVILIAN_MEDBAY,ACCESS_CIVILIAN_COMMAND,) + +/datum/equipment_preset/corpse/tyrargo/us_army_medic/load_gear(mob/living/carbon/human/new_human) + var/choice = rand(1,12) + var/obj/item/clothing/under/marine/army/uniform = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/infantry/patch_infantry = new() + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_infantry) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/backpack/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/medic(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + + + switch(choice) + if(1 to 3) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical(new_human), WEAR_WAIST) + if(4 to 7) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_BELT) + if(8 to 11) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/ointment/random_amount(new_human), WEAR_IN_BELT) + if(12) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_defib_and_analyzer(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty, WEAR_IN_R_STORE) + ..() + +/datum/equipment_preset/corpse/tyrargo/us_army_medic/burst + name = "Corpse - Burst - US Army - Medic" + xenovictim = TRUE diff --git a/code/modules/gear_presets/survivors/tyrargo_rift/us_army_survivors.dm b/code/modules/gear_presets/survivors/tyrargo_rift/us_army_survivors.dm new file mode 100644 index 000000000000..a39e8ceaeb08 --- /dev/null +++ b/code/modules/gear_presets/survivors/tyrargo_rift/us_army_survivors.dm @@ -0,0 +1,409 @@ +///*****************************US Army Survivors************************************************/ +/datum/equipment_preset/survivor/army + name = "Survivor - US Army" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/dogtag + role_comm_title = "ARMY" + minimap_background = "background_ua" + job_title = JOB_ARMY_TROOPER + faction = FACTION_MARINE + faction_group = list(FACTION_MARINE, FACTION_SURVIVOR) + flags = EQUIPMENT_PRESET_EXTRA + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ) + + dress_shoes = list(/obj/item/clothing/shoes/dress) + dress_gloves = list(/obj/item/clothing/gloves/marine/dress) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + +/datum/equipment_preset/survivor/army/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/army/uniform = new() + var/random_number = rand(1,3) + switch(random_number) + if(1) + uniform.roll_suit_sleeves(new_human) + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/infantry/patch_infantry = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_infantry) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine/army(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + +/datum/equipment_preset/survivor/army/proc/spawn_pouch(mob/living/carbon/human/new_human) + var/i = rand(1,10) + switch(i) + if (1) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/ointment/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/emergency(new_human), WEAR_IN_L_STORE) + if (2 , 3) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount(new_human), WEAR_IN_L_STORE) + if (4) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/ointment/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/emergency(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount(new_human), WEAR_IN_L_STORE) + if (5 , 6) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount(new_human), WEAR_IN_L_STORE) + if (7 , 8) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/ointment/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/emergency(new_human), WEAR_IN_L_STORE) + if (9 , 10) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack/random_amount(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount(new_human), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount(new_human), WEAR_IN_L_STORE) + + +/datum/equipment_preset/survivor/army/add_survivor_weapon_security(mob/living/carbon/human/new_human) + return + +/datum/equipment_preset/survivor/army/proc/add_army_weapon(mob/living/carbon/human/new_human) + var/random_gun = rand(1,10) + switch(random_gun) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_JACKET) + if(3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_JACKET) + if(5 , 6) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_JACKET) + if(7 , 8) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap/empty(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle(new_human), WEAR_IN_JACKET) + if(9) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap/empty(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra(new_human), WEAR_IN_JACKET) + if(10) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap/empty(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra(new_human), WEAR_IN_JACKET) + +/datum/equipment_preset/survivor/army/add_survivor_weapon_pistol(mob/living/carbon/human/new_human) + return + +/datum/equipment_preset/survivor/army/proc/add_army_weapon_pistol(mob/living/carbon/human/new_human) + var/random_pistol = rand(1,6) + switch(random_pistol) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp78/army(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + if(3) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp78/army(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78(new_human), WEAR_IN_BELT) + if(4) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m39, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39/army(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39(new_human), WEAR_IN_BELT) + if(5) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m39, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39/army(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39(new_human), WEAR_IN_BELT) + if(6) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human),WEAR_WAIST) + +/datum/equipment_preset/survivor/army/add_random_survivor_equipment(mob/living/carbon/human/new_human) + return + +/datum/equipment_preset/survivor/army/proc/spawn_random_headgear(mob/living/carbon/human/new_human) + var/i = rand(1,5) + switch(i) + if (1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + if (2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/cm/black/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + if (3 , 4 , 5) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + +/datum/equipment_preset/survivor/army/proc/spawn_fluff_item(mob/living/carbon/human/new_human) + var/i = rand(1,5) + switch(i) + if (1) + new_human.equip_to_slot_or_del(new /obj/item/storage/fancy/cigarettes/spirit(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/matches(new_human), WEAR_IN_BACK) + if (2) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/cans/souto/classic(new_human), WEAR_IN_BACK) + if (3) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/cans/space_mountain_wind(new_human), WEAR_IN_BACK) + if (4) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/chocolatebar(new_human), WEAR_IN_BACK) + + + +/datum/equipment_preset/survivor/army/standard + name = "Survivor - US Army Trooper" + assignment = JOB_ARMY_TROOPER + job_title = JOB_ARMY_TROOPER + skills = /datum/skills/military/survivor/army_standard + minimap_icon = "hudsquad_trpr" + +/datum/equipment_preset/survivor/army/standard/load_gear(mob/living/carbon/human/new_human) + ..() + spawn_random_headgear(new_human) + add_army_weapon_pistol(new_human) + add_army_weapon(new_human) + spawn_fluff_item(new_human) + spawn_pouch(new_human) + +///*****************************// + +/datum/equipment_preset/survivor/army/engineer + name = "Survivor - US Army Combat Engineering Technician" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_ENGI + job_title = JOB_ARMY_ENGI + skills = /datum/skills/military/survivor/army_engineer + minimap_icon = "hudsquad_cet" + +/datum/equipment_preset/survivor/army/engineer/load_gear(mob/living/carbon/human/new_human) + ..() + 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/clothing/gloves/marine/insulated(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto/army/engi(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/medium_stack(new_human), WEAR_IN_BACK) + add_army_weapon(new_human) + spawn_fluff_item(new_human) + spawn_pouch(new_human) + +/datum/equipment_preset/survivor/army/medic + name = "Survivor - US Army Combat Medical Technician" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_MEDIC + job_title = JOB_ARMY_MEDIC + skills = /datum/skills/military/survivor/army_medic + minimap_icon = "hudsquad_cet" + +/datum/equipment_preset/survivor/army/medic/load_gear(mob/living/carbon/human/new_human) + ..() + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_suture_and_graft(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto/army/medic(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/backpack/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/upgraded(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BACK) + spawn_fluff_item(new_human) + add_army_weapon(new_human) + spawn_pouch(new_human) + +/datum/equipment_preset/survivor/army/marksman + name = "Survivor - US Army Marksman" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_MARKSMAN + job_title = JOB_ARMY_MARKSMAN + skills = /datum/skills/military/survivor/army_marksman + minimap_icon = "hudsquad_snpr" + +/datum/equipment_preset/survivor/army/marksman/load_gear(mob/living/carbon/human/new_human) + ..() + add_army_weapon_pistol(new_human) + spawn_fluff_item(new_human) + spawn_pouch(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/cm/black/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra_custom(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/extended(new_human), WEAR_IN_BACK) + +/datum/equipment_preset/survivor/army/gunner + name = "Survivor - US Army Heavy Gunner" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_SMARTGUNNER + job_title = JOB_ARMY_SMARTGUNNER + skills = /datum/skills/military/survivor/army_gunner + minimap_icon = "hudsquad_mmg" + +/datum/equipment_preset/survivor/army/gunner/load_gear(mob/living/carbon/human/new_human) + ..() + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/mod88(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/mod88(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun/empty(new_human), WEAR_IN_BELT) + new_human.equip_to_slot(new /obj/item/smartgun_battery(new_human), WEAR_IN_BACK) + spawn_random_headgear(new_human) + add_army_weapon(new_human) + spawn_pouch(new_human) + spawn_fluff_item(new_human) + +/datum/equipment_preset/survivor/army/sl + name = "Survivor - US Army Squad Leader" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_SNCO + job_title = JOB_ARMY_SNCO + skills = /datum/skills/military/survivor/army_sl + minimap_icon = "hudsquad_sl_army" + +/datum/equipment_preset/survivor/army/sl/load_gear(mob/living/carbon/human/new_human) + ..() + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_IN_BACK) + spawn_random_headgear(new_human) + add_army_weapon_pistol(new_human) + add_army_weapon(new_human) + spawn_pouch(new_human) + spawn_fluff_item(new_human) + +///*****************************// +/// Army Commander /// + +/datum/equipment_preset/survivor/army/co + name = "Survivor - US Army Commander" + paygrades = list(PAY_SHORT_MO4 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_CO + job_title = JOB_ARMY_CO + idtype = /obj/item/card/id/gold + skills = /datum/skills/commander + minimap_icon = "hudsquad_co_army" + +/datum/equipment_preset/survivor/army/co/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/army/uniform = new() + uniform.roll_suit_sleeves(new_human) + var/obj/item/clothing/suit/storage/jacket/marine/service/green/jacket = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/infantry/patch_infantry = new() + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/army, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/army/infantry, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(jacket, WEAR_JACKET) + jacket.toggle(new_human) + jacket.attach_accessory(new_human,patch_army) + jacket.attach_accessory(new_human,patch_infantry) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/black(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine/army(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/cmateba/black(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/mateba/cmateba(new_human), WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/mateba(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/mateba(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/mateba(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar/classic(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/lighter/zippo/gold(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/neckerchief/yellow(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/bottle/tequila(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cavalry(new_human), WEAR_HEAD) + spawn_pouch(new_human) + spawn_fluff_item(new_human) + +///*****************************// +/// Army Synthetic /// + +/datum/equipment_preset/synth/survivor/army + name = "Survivor - US Army Synthetic" + paygrades = list(PAY_SHORT_ME8E = JOB_PLAYTIME_TIER_0) + faction_group = list(FACTION_MARINE, FACTION_SURVIVOR) + assignment = JOB_ARMY_SYN + job_title = "Synthetic" + idtype = /obj/item/card/id/gold + +/datum/equipment_preset/synth/survivor/army/load_gear(mob/living/carbon/human/preset_human) + var/obj/item/clothing/under/marine/army/uniform = new() + var/random_number = rand(1,2) + switch(random_number) + if(1) + uniform.roll_suit_jacket(preset_human) + if(2) + uniform.roll_suit_sleeves(preset_human) + preset_human.equip_to_slot_or_del(uniform, WEAR_BODY) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch(preset_human), WEAR_ACCESSORY) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/army(preset_human), WEAR_ACCESSORY) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/army/infantry(preset_human), WEAR_ACCESSORY) + preset_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/backpack/army(preset_human), WEAR_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/synvest/army(preset_human), WEAR_JACKET) + preset_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(preset_human), WEAR_IN_JACKET) + preset_human.equip_to_slot_or_del(new /obj/item/storage/large_holster/machete/full(preset_human), WEAR_J_STORE) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/bronze(preset_human), WEAR_EYES) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(preset_human), WEAR_HANDS) + preset_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(preset_human), WEAR_IN_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/synthetic, WEAR_IN_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/upgraded(preset_human), WEAR_IN_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/device/radio(preset_human), WEAR_IN_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool(preset_human), WEAR_IN_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil(preset_human), WEAR_IN_BACK) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(preset_human), WEAR_FEET) + preset_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_suture_and_graft(preset_human), WEAR_WAIST) + preset_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular(preset_human), WEAR_R_HAND) + preset_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(preset_human), WEAR_R_STORE) + preset_human.equip_to_slot_or_del(new /obj/item/storage/pouch/sling(preset_human), WEAR_L_STORE) + preset_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(preset_human), WEAR_L_EAR) + preset_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(preset_human), WEAR_HEAD) + + + diff --git a/code/modules/gear_presets/us_army.dm b/code/modules/gear_presets/us_army.dm new file mode 100644 index 000000000000..0601cda03816 --- /dev/null +++ b/code/modules/gear_presets/us_army.dm @@ -0,0 +1,256 @@ +/datum/equipment_preset/us_army + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/dogtag + role_comm_title = "ARMY" + job_title = JOB_ARMY_TROOPER + faction = FACTION_MARINE + faction_group = FACTION_LIST_MARINE + flags = EQUIPMENT_PRESET_START_OF_ROUND + +/datum/equipment_preset/us_army/New() + . = ..() + access = get_access(ACCESS_LIST_UA) + +/datum/equipment_preset/us_army/load_status(mob/living/carbon/human/new_human) + . = ..() + new_human.nutrition = rand(NUTRITION_MAX, NUTRITION_NORMAL) + +/datum/equipment_preset/us_army/proc/add_army_weapon(mob/living/carbon/human/new_human) + var/random_gun = rand(1,3) + switch(random_gun) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/army/full(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/heap(new_human), WEAR_IN_BACK) + + if(3) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra/army/full(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/heap(new_human), WEAR_IN_BACK) + +/datum/equipment_preset/us_army/proc/add_army_weapon_pistol(mob/living/carbon/human/new_human) + var/random_pistol = rand(1,5) + switch(random_pistol) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/vp78/army/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/vp78/heap(new_human), WEAR_IN_BELT) + if(3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m39(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39/army/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/heap(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/heap(new_human), WEAR_IN_BELT) + if(5) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human),WEAR_WAIST) + +/datum/equipment_preset/us_army/proc/spawn_random_headgear(mob/living/carbon/human/new_human) + var/i = rand(1,4) + switch(i) + if (1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + if (2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/cm/black/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big/new_bimex/black(new_human), WEAR_EYES) + + if (3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto/army(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + + +/datum/equipment_preset/us_army/standard + name = "US Army Trooper" + assignment = JOB_ARMY_TROOPER + job_title = JOB_ARMY_TROOPER + skills = /datum/skills/military/survivor/army_standard + minimap_icon = "hudsquad_trpr" + +/datum/equipment_preset/us_army/standard/load_gear(mob/living/carbon/human/new_human) + + var/obj/item/clothing/under/marine/army/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/armor/patch_armor = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_armor) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine/army(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + + spawn_random_headgear(new_human) + add_army_weapon_pistol(new_human) + add_army_weapon(new_human) + +/datum/equipment_preset/us_army/gunner + name = "US Army Heavy Gunner" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_SMARTGUNNER + job_title = JOB_ARMY_SMARTGUNNER + skills = /datum/skills/military/survivor/army_gunner + minimap_icon = "hudsquad_mmg" + +/datum/equipment_preset/us_army/gunner/load_gear(mob/living/carbon/human/new_human) + + var/obj/item/clothing/under/marine/army/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/armor/patch_armor = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_armor) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lmg/army(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + + add_army_weapon_pistol(new_human) + spawn_random_headgear(new_human) + +/datum/equipment_preset/us_army/medic + name = "US Army Combat Medical Technician" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_MEDIC + job_title = JOB_ARMY_MEDIC + skills = /datum/skills/military/survivor/army_medic + minimap_icon = "hudsquad_cet" + +/datum/equipment_preset/us_army/medic/load_gear(mob/living/carbon/human/new_human) + + var/obj/item/clothing/under/marine/army/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/armor/patch_armor = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_armor) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/big/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_suture_and_graft(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/medic(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/upgraded(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BACK) + + add_army_weapon(new_human) + +/datum/equipment_preset/us_army/sl + name = "US Army Squad Leader" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) + assignment = JOB_ARMY_SNCO + job_title = JOB_ARMY_SNCO + skills = /datum/skills/military/survivor/army_sl + minimap_icon = "hudsquad_sl_army" + +/datum/equipment_preset/us_army/sl/load_gear(mob/living/carbon/human/new_human) + + var/obj/item/clothing/under/marine/army/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/armor/patch_armor = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_armor) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto/army(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/molle/army(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/army(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_IN_BACK) + + spawn_random_headgear(new_human) + add_army_weapon_pistol(new_human) + add_army_weapon(new_human) + +/datum/equipment_preset/us_army/tank + name = "US Army Vehicle Crewman (CRMN)" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) + assignment = JOB_TANK_CREW + job_title = JOB_TANK_CREW + skills = /datum/skills/tank_crew + minimap_icon = "vc" + minimap_background = "background_intel" + +/datum/equipment_preset/us_army/tank/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/officer/tanker/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/patch/army/patch_army = new() + var/obj/item/clothing/accessory/patch/army/armor/patch_armor = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_army) + uniform.attach_accessory(new_human,patch_armor) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/tanker(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldpack(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tank(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/mre(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/army/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles/v2/blue(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/keffiyeh/black(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/sof/survivor_army(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/tech/tanker(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/heap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/heap(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/heap(new_human), WEAR_J_STORE) diff --git a/code/modules/hydroponics/hydro_tray.dm b/code/modules/hydroponics/hydro_tray.dm index a6b5c6ae6aee..536220d67fcc 100644 --- a/code/modules/hydroponics/hydro_tray.dm +++ b/code/modules/hydroponics/hydro_tray.dm @@ -99,8 +99,20 @@ if(seed && seed.immutable > 0) return 0 + bullet_ping(Proj) + if(Proj.damage) + take_damage(Proj.damage) + return TRUE + ..() +/obj/structure/machinery/portable_atmospherics/hydroponics/proc/take_damage(damage) + health -= damage + if(health <= 0) + visible_message(SPAN_WARNING("[src] crumbles into pieces!")) + playsound(src, 'sound/effects/meteorimpact.ogg', 25, 1) + qdel(src) + /obj/structure/machinery/portable_atmospherics/hydroponics/process() //Do this even if we're not ready for a plant cycle. diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 8d8e536b7bbd..5d83f27c7080 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1619,7 +1619,7 @@ visible_message(SPAN_DANGER("[src] rolls on the floor, trying to put themselves out!"), SPAN_NOTICE("You stop, drop, and roll!"), null, 5) - if(istype(get_turf(src), /turf/open/gm/river)) + if(istype(get_turf(src), /turf/open/gm/river) || (/obj/effect/blocker/water in loc)) ExtinguishMob() if(fire_stacks > 0) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index 5695e2bd9d65..e012e302d601 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -190,9 +190,9 @@ /mob/living/carbon/human/proc/afterattack(atom/target as mob|obj|turf|area, mob/living/user as mob|obj, inrange, params) return -/mob/living/carbon/human/help_shake_act(mob/living/carbon/M) +/mob/living/carbon/human/help_shake_act(mob/living/carbon/mob) //Target is us - if(src == M) + if(src == mob) check_for_injuries() return @@ -206,28 +206,28 @@ if(PLURAL) t_him = "them" - if (w_uniform) - w_uniform.add_fingerprint(M) + if(w_uniform) + w_uniform.add_fingerprint(mob) if(HAS_TRAIT(src, TRAIT_FLOORED) || HAS_TRAIT(src, TRAIT_KNOCKEDOUT) || body_position == LYING_DOWN || sleeping) if(client) sleeping = max(0,src.sleeping-5) if(!sleeping) if(is_dizzy) - to_chat(M, SPAN_WARNING("[src] looks dizzy. Maybe you should let [t_him] rest a bit longer.")) + to_chat(mob, SPAN_WARNING("[src] looks dizzy. Maybe you should let [t_him] rest a bit longer.")) else set_resting(FALSE) - M.visible_message(SPAN_NOTICE("[M] shakes [src] trying to wake [t_him] up!"), - SPAN_NOTICE("You shake [src] trying to wake [t_him] up!"), null, 4) + mob.visible_message(SPAN_NOTICE("[mob] shakes [src] trying to wake [t_him] up!"), + SPAN_NOTICE("You shake [src], trying to wake [t_him] up!"), null, 4) else if(HAS_TRAIT(src, TRAIT_INCAPACITATED)) - M.visible_message(SPAN_NOTICE("[M] shakes [src], trying to shake [t_him] out of his stupor!"), + mob.visible_message(SPAN_NOTICE("[mob] shakes [src], trying to shake [t_him] out of his stupor!"), SPAN_NOTICE("You shake [src], trying to shake [t_him] out of his stupor!"), null, 4) else - var/mob/living/carbon/human/H = M - if(istype(H)) - H.species.hug(H, src, H.zone_selected) + var/mob/living/carbon/human/human = mob + if(istype(human)) + human.species.hug(human, src, human.zone_selected) else - M.visible_message(SPAN_NOTICE("[M] pats [src] on the back to make [t_him] feel better!"), + mob.visible_message(SPAN_NOTICE("[mob] pats [src] on the back to make [t_him] feel better!"), SPAN_NOTICE("You pat [src] on the back to make [t_him] feel better!"), null, 4) playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 5) return @@ -239,7 +239,16 @@ playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) /mob/living/carbon/human/proc/check_for_injuries() - visible_message(SPAN_NOTICE("[src] examines [gender==MALE?"himself":"herself"]."), + var/t_him = "it" + switch(gender) + if(MALE) + t_him = "him" + if(FEMALE) + t_him = "her" + if(PLURAL) + t_him = "them" + + visible_message(SPAN_NOTICE("[src] examines [t_him]self."), SPAN_NOTICE("You check yourself for injuries."), null, 3) var/list/limb_message = list() @@ -303,21 +312,20 @@ var/postscript if(org.status & LIMB_UNCALIBRATED_PROSTHETIC) - postscript += " (NONFUNCTIONAL)" + postscript += " (NONFUNCTIONAL)" if(org.status & LIMB_BROKEN) - postscript += " (BROKEN)" + postscript += " (BROKEN)" if(org.status & LIMB_SPLINTED_INDESTRUCTIBLE) - postscript += " (NANOSPLINTED)" + postscript += " (NANOSPLINTED)" else if(org.status & LIMB_SPLINTED) - postscript += " (SPLINTED)" + postscript += " (SPLINTED)" if(org.status & LIMB_THIRD_DEGREE_BURNS) - postscript += "(SEVERE BURN)" + postscript += " (SEVERE BURN)" if(org.status & LIMB_ESCHAR) - postscript += " (ESCHAR)" - + postscript += " (ESCHAR)" if(postscript) - limb_message += "\t My [org.display_name] is [SPAN_WARNING("[english_list(status, final_comma_text = ",")].[postscript]")]" + limb_message += "\t My [org.display_name] is [SPAN_WARNING("[english_list(status, final_comma_text = ",")].[SPAN_BOLD(postscript)]")]" else limb_message += "\t My [org.display_name] is [status[1] == "OK" ? SPAN_NOTICE("OK.") : SPAN_WARNING("[english_list(status, final_comma_text = ",")].")]" to_chat(src, boxed_message(limb_message.Join("\n"))) diff --git a/code/modules/mob/living/carbon/xenomorph/Evolution.dm b/code/modules/mob/living/carbon/xenomorph/Evolution.dm index 9597df4ecc30..c6225f6b1028 100644 --- a/code/modules/mob/living/carbon/xenomorph/Evolution.dm +++ b/code/modules/mob/living/carbon/xenomorph/Evolution.dm @@ -516,8 +516,5 @@ GLOBAL_LIST_EMPTY(deevolved_ckeys) else if(tier == 2 && ((used_tier_3_slots / totalXenos) * hive.tier_slot_multiplier) >= 0.20 && castepick != XENO_CASTE_QUEEN) to_chat(src, SPAN_WARNING("The hive cannot support another Tier 3, wait for either more aliens to be born or someone to die.")) return FALSE - else if(hive.allow_queen_evolve && !hive.living_xeno_queen && potential_queens == 1 && islarva(src) && castepick != XENO_CASTE_DRONE) - to_chat(src, SPAN_XENONOTICE("The hive currently has no sister able to become Queen! The survival of the hive requires you to be a Drone!")) - return FALSE return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm index 15db5b7ab6df..0553963fbd7f 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm @@ -385,6 +385,11 @@ bubble_icon = "alienroyal" +/mob/living/carbon/xenomorph/queen/set_resting(new_resting, silent, instant) + if(ovipositor && new_resting) + return + return ..() + /mob/living/carbon/xenomorph/queen/get_organ_icon() return "heart_t3" diff --git a/code/modules/mob/living/simple_animal/hostile/alien.dm b/code/modules/mob/living/simple_animal/hostile/alien.dm index b2078e8a7d3b..bcc1b5f7df3b 100644 --- a/code/modules/mob/living/simple_animal/hostile/alien.dm +++ b/code/modules/mob/living/simple_animal/hostile/alien.dm @@ -81,6 +81,10 @@ . = ..() if(!. || !hivenumber) return + if(ismonkey(target)) // So they don't kill Monkeys that Xenos need + return FALSE + if(ismouse(target)) // Mice and rats are beneath the Xenomorphs notice + return FALSE if(istype(target, /mob/living/simple_animal/hostile/alien)) var/mob/living/simple_animal/hostile/alien/alien_target = target if(alien_target.hivenumber == hivenumber) @@ -177,3 +181,6 @@ pixel_x = -12 old_x = -12 + +/mob/living/simple_animal/hostile/alien/no_harm_animal + faction_group = list(FACTION_XENOMORPH, FACTION_MONKEY, FACTION_NEUTRAL) diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm index 41873961ffd9..7620e8d94e02 100644 --- a/code/modules/power/power.dm +++ b/code/modules/power/power.dm @@ -85,7 +85,7 @@ return var/has_power - if (master_area) + if(master_area) has_power = master_area.powered(power_channel) else has_power = powered(power_channel) diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index d8727e4a716d..f1b97a03ab0c 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -151,11 +151,11 @@ They're all essentially identical when it comes to getting the job done. //Generic proc to transfer ammo between ammo mags. Can work for anything, mags, handfuls, etc. /obj/item/ammo_magazine/proc/transfer_ammo(obj/item/ammo_magazine/source, mob/user, transfer_amount = 1) if(current_rounds == max_rounds) //Does the mag actually need reloading? - to_chat(user, "[src] is already full.") + to_chat(user, SPAN_WARNING("[src] is already full.")) return if(source.caliber != caliber) //Are they the same caliber? - to_chat(user, "The rounds don't match up. Better not mix them up.") + to_chat(user, SPAN_WARNING("The calibers don't match up. Better not mix them up.")) return var/S = min(transfer_amount, max_rounds - current_rounds) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 92141e841d31..8ccee9094dfb 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -975,21 +975,23 @@ User can be passed as null, (a gun reloading itself for instance), so we need to /obj/item/weapon/gun/proc/unload_chamber(mob/user) if(!in_chamber) return - var/found_handful + var/ammo_type = get_ammo_type_chambered(user) - for(var/obj/item/ammo_magazine/handful/H in user.loc) - if(H.default_ammo == ammo_type && H.caliber == caliber && H.current_rounds < H.max_rounds) - found_handful = TRUE - H.current_rounds++ - H.update_icon() + var/obj/item/ammo_magazine/handful/new_handful = new() + new_handful.generate_handful(ammo_type, caliber, 8, 1, type) + + for(var/obj/item/ammo_magazine/handful/hand in user.get_hands()) + if(hand.default_ammo == new_handful.default_ammo && hand.current_rounds < hand.max_rounds) // fetching the caliber was somewhat redundant, and honestly seemed safer to just fetch default_ammo overall + hand.transfer_ammo(new_handful, user, 1) + qdel(new_handful) + new_handful = null break - if(!found_handful) - var/obj/item/ammo_magazine/handful/new_handful = new() + + if(new_handful) if(user.client?.prefs?.toggle_prefs & TOGGLE_COCKING_TO_HAND) user.put_in_hands(new_handful) else new_handful.forceMove(get_turf(src)) // just drop it - new_handful.generate_handful(ammo_type, caliber, 8, 1, type) QDEL_NULL(in_chamber) @@ -1382,84 +1384,12 @@ and you're good to go. return ..() if(attacked_mob == user && user.zone_selected == "mouth" && ishuman(user)) - var/mob/living/carbon/human/HM = user - if(!able_to_fire(user)) - return (ATTACKBY_HINT_NO_AFTERATTACK|ATTACKBY_HINT_UPDATE_NEXT_MOVE) - - - var/ffl = " [ADMIN_JMP(user)] [ADMIN_PM(user)]" - - var/obj/item/weapon/gun/revolver/current_revolver = src - if(istype(current_revolver) && current_revolver.russian_roulette) - attacked_mob.visible_message(SPAN_WARNING("[user] puts their revolver to their head, ready to pull the trigger.")) - else - attacked_mob.visible_message(SPAN_WARNING("[user] sticks their gun in their mouth, ready to pull the trigger.")) - - flags_gun_features ^= GUN_CAN_POINTBLANK //If they try to click again, they're going to hit themselves. - if(!do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE) || !able_to_fire(user)) - attacked_mob.visible_message(SPAN_NOTICE("[user] decided life was worth living.")) - flags_gun_features ^= GUN_CAN_POINTBLANK //Reset this. + if(user.action_busy) + to_chat(user, SPAN_WARNING("You are a bit preoccupied to commit suicide at the moment.")) return (ATTACKBY_HINT_NO_AFTERATTACK|ATTACKBY_HINT_UPDATE_NEXT_MOVE) - - if(active_attachable && !(active_attachable.flags_attach_features & ATTACH_PROJECTILE)) - active_attachable.activate_attachment(src, null, TRUE)//We're not firing off a nade into our mouth. - var/obj/projectile/projectile_to_fire = load_into_chamber(user) - if(projectile_to_fire) //We actually have a projectile, let's move on. - user.visible_message(SPAN_WARNING("[user] pulls the trigger!")) - var/actual_sound - if(active_attachable && active_attachable.fire_sound) - actual_sound = active_attachable.fire_sound - else if(!isnull(fire_sound)) - actual_sound = fire_sound - else actual_sound = pick(fire_sounds) - var/sound_volume = (flags_gun_features & GUN_SILENCED && !active_attachable) ? 25 : 60 - playsound(user, actual_sound, sound_volume, 1) - simulate_recoil(2, user) - var/t - var/datum/cause_data/cause_data - if(projectile_to_fire.ammo.damage == 0) - t += "\[[time_stamp()]\] [key_name(user)] tried to commit suicide with a [name]" - cause_data = create_cause_data("failed suicide by [initial(name)]") - to_chat(user, SPAN_DANGER("Ow...")) - msg_admin_ff("[key_name(user)] tried to commit suicide with a [name] in [get_area(user)] [ffl]") - user.apply_damage(200, HALLOSS) - else - t += "\[[time_stamp()]\] [key_name(user)] committed suicide with [src]" //Log it. - cause_data = create_cause_data("suicide by [initial(name)]") - if(istype(current_revolver) && current_revolver.russian_roulette) //If it's a revolver set to Russian Roulette. - t += " after playing Russian Roulette" - HM.apply_damage(projectile_to_fire.damage * 3, projectile_to_fire.ammo.damage_type, "head", used_weapon = "An unlucky pull of the trigger during Russian Roulette!", no_limb_loss = TRUE, permanent_kill = TRUE) - HM.apply_damage(200, OXY) //Fill out the rest of their healthbar. - HM.death(create_cause_data("russian roulette with \a [name]", user)) //Make sure they're dead. permanent_kill above will make them unrevivable. - HM.update_headshot_overlay(projectile_to_fire.ammo.headshot_state) //Add headshot overlay. - msg_admin_ff("[key_name(user)] lost at Russian Roulette with \a [name] in [get_area(user)] [ffl]") - to_chat(user, SPAN_HIGHDANGER("Your life flashes before you as your spirit is torn from your body!")) - user.ghostize(0) //No return. - else - HM.apply_damage(projectile_to_fire.damage * 2.5, projectile_to_fire.ammo.damage_type, "head", used_weapon = "Point blank shot in the mouth with \a [projectile_to_fire]", no_limb_loss = TRUE, permanent_kill = TRUE) - HM.apply_damage(200, OXY) //Fill out the rest of their healthbar. - HM.death(cause_data) //Make sure they're dead. permanent_kill above will make them unrevivable. - HM.update_headshot_overlay(projectile_to_fire.ammo.headshot_state) //Add headshot overlay. - msg_admin_ff("[key_name(user)] committed suicide with \a [name] in [get_area(user)] [ffl]") - attacked_mob.last_damage_data = cause_data - user.attack_log += t //Apply the attack log. - last_fired = world.time //This is incorrect if firing an attached undershotgun, but the user is too dead to care. - SEND_SIGNAL(user, COMSIG_MOB_FIRED_GUN, src) - - projectile_to_fire.play_hit_effect(user) - // No projectile code to handhold us, we do the cleaning ourselves: - QDEL_NULL(projectile_to_fire) - in_chamber = null - reload_into_chamber(user) //Reload the sucker. - else - click_empty(user)//If there's no projectile, we can't do much. - if(istype(current_revolver) && current_revolver.russian_roulette && current_revolver.current_mag && current_revolver.current_mag.current_rounds) - msg_admin_niche("[key_name(user)] played live Russian Roulette with \a [name] in [get_area(user)] [ffl]") //someone might want to know anyway... - - flags_gun_features ^= GUN_CAN_POINTBLANK //Reset this. - return (ATTACKBY_HINT_NO_AFTERATTACK|ATTACKBY_HINT_UPDATE_NEXT_MOVE) - + handle_suicide(user) + return if(EXECUTION_CHECK) //Execution if(!able_to_fire(user)) //Can they actually use guns in the first place? @@ -1651,6 +1581,88 @@ and you're good to go. #undef EXECUTION_CHECK + +/obj/item/weapon/gun/proc/handle_suicide(mob/living/carbon/human/user) + if(!able_to_fire(user)) + return (ATTACKBY_HINT_NO_AFTERATTACK|ATTACKBY_HINT_UPDATE_NEXT_MOVE) + + var/ffl = " [ADMIN_JMP(user)] [ADMIN_PM(user)]" + + var/obj/item/weapon/gun/revolver/current_revolver = src + if(istype(current_revolver) && current_revolver.russian_roulette) + user.visible_message(SPAN_WARNING("[user] puts their [name] to their head, ready to pull the trigger.")) + else + user.visible_message(SPAN_WARNING("[user] sticks their [name] in their mouth, ready to pull the trigger.")) + + if(!do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE) || !able_to_fire(user)) + user.visible_message(SPAN_NOTICE("[user] decided life was worth living.")) + return (ATTACKBY_HINT_NO_AFTERATTACK|ATTACKBY_HINT_UPDATE_NEXT_MOVE) + + // suicide code block + if(active_attachable && !(active_attachable.flags_attach_features & ATTACH_PROJECTILE)) + active_attachable.activate_attachment(src, null, TRUE)//We're not firing off a nade into our mouth. + var/obj/projectile/projectile_to_fire = load_into_chamber(user) + if(projectile_to_fire) //We actually have a projectile, let's move on. + user.visible_message(SPAN_WARNING("[user] pulls the trigger!")) + var/actual_sound + if(active_attachable && active_attachable.fire_sound) + actual_sound = active_attachable.fire_sound + else if(!isnull(fire_sound)) + actual_sound = fire_sound + else actual_sound = pick(fire_sounds) + var/sound_volume = (flags_gun_features & GUN_SILENCED && !active_attachable) ? 25 : 60 + playsound(user, actual_sound, sound_volume, 1) + simulate_recoil(2, user) + var/time + var/datum/cause_data/cause_data + if(projectile_to_fire.ammo.damage <= 0) + time += "\[[time_stamp()]\] [key_name(user)] tried to commit suicide with a [name]" + cause_data = create_cause_data("failed suicide by [initial(name)]") + to_chat(user, SPAN_HIGHDANGER("Ow...")) + msg_admin_ff("[key_name(user)] tried to commit suicide with a [name] in [get_area(user)] [ffl]") + user.apply_damage(200, HALLOSS) + else + time += "\[[time_stamp()]\] [key_name(user)] committed suicide with [src]" //Log it. + cause_data = create_cause_data("suicide by [initial(name)]") + var/used_weapon_text = "Point blank shot in the mouth with \a [projectile_to_fire]" + var/admin_msg = "[key_name(user)] committed suicide with \a [name] in [get_area(user)] [ffl]" + + if(istype(current_revolver) && current_revolver.russian_roulette) //If it's a revolver set to Russian Roulette. + time += " after playing Russian Roulette" + used_weapon_text = "An unlucky pull of the trigger during Russian Roulette!" + cause_data = create_cause_data("russian roulette with \a [name]", user) + admin_msg = "[key_name(user)] lost at Russian Roulette with \a [name] in [get_area(user)] [ffl]" + + var/obj/limb/head = user.get_limb("head") // carnage + if(projectile_to_fire.ammo.bonus_projectiles_type || projectile_to_fire.ammo.flags_ammo_behavior == AMMO_EXPLOSIVE || projectile_to_fire.ammo.damage >= 80) + user.visible_message(SPAN_HIGHDANGER(uppertext("[user]'s head explodes into a cloud of blood and bone by their [name], oh God."))) + head.droplimb(FALSE, TRUE) + user.spawn_gibs() + else + user.update_headshot_overlay(projectile_to_fire.ammo.headshot_state) //Add headshot overlay. + playsound(user, 'sound/effects/crackandbleed.ogg', 50, 1) // replace this with another eventually + user.apply_damage(projectile_to_fire.damage * 3, projectile_to_fire.ammo.damage_type, "head", used_weapon = used_weapon_text, no_limb_loss = TRUE, permanent_kill = TRUE) + user.apply_damage(200, OXY) //Fill out the rest of their healthbar. + user.death(cause_data) //Make sure they're dead. permanent_kill above will make them unrevivable. + msg_admin_ff(admin_msg) + to_chat(user, SPAN_HIGHDANGER("Your life flashes before you as your spirit is torn from your body!")) + + user.last_damage_data = cause_data + user.attack_log += time //Apply the attack log. + last_fired = world.time //This is incorrect if firing an attached undershotgun, but the user is too dead to care. + SEND_SIGNAL(user, COMSIG_MOB_FIRED_GUN, src) + + projectile_to_fire.play_hit_effect(user) + // No projectile code to handhold us, we do the cleaning ourselves: + QDEL_NULL(projectile_to_fire) + in_chamber = null + reload_into_chamber(user) //Reload the sucker. + else + click_empty(user)//If there's no projectile, we can't do much. + if(istype(current_revolver) && current_revolver.russian_roulette && current_revolver.current_mag && current_revolver.current_mag.current_rounds) + msg_admin_niche("[key_name(user)] played live Russian Roulette with \a [name] in [get_area(user)] [ffl]") //someone might want to know anyway... + + return (ATTACKBY_HINT_NO_AFTERATTACK|ATTACKBY_HINT_UPDATE_NEXT_MOVE) //---------------------------------------------------------- // \\ // FIRE CYCLE RELATED PROCS \\ @@ -2189,7 +2201,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed return gun_user /obj/item/weapon/gun/proc/fire_into_air(mob/user) - if(!user || !isturf(user.loc) || !current_mag || !current_mag.current_rounds) + if(!user || !isturf(user.loc)) return var/turf/gun_turf = user.loc @@ -2201,16 +2213,48 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed if(!skillcheck(user, SKILL_LEADERSHIP, SKILL_LEAD_MASTER)) // XO and CO return TRUE + user.visible_message(SPAN_DANGER(uppertext("[user] AIMS THEIR [name] INTO THE AIR...")), + SPAN_DANGER(uppertext("YOU AIM YOUR [name] INTO THE AIR..."))) + if(user.action_busy) return - if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + if(!do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) return - if(!current_mag || !current_mag.current_rounds) + // this code block handles when the gun is actually 'fired' + if(flags_gun_features & GUN_TRIGGER_SAFETY) // i mean it HAS to be a deliberate action to be on safety like this right + user.visible_message(SPAN_HIGHDANGER(uppertext("...but [user] just leaves the [name] raised in the air...")), + SPAN_HIGHDANGER(uppertext("...but you leave the [name] raised in the air as a warning, not like you can fire it when it's on safety anyway..."))) return - current_mag.current_rounds-- + if(flags_gun_features & GUN_INTERNAL_MAG) + if(!current_mag.chamber_closed) + user.visible_message(SPAN_HIGHDANGER(uppertext("...but the [name] refuses to fire due to the cylinder being open, embarassing...")), + SPAN_HIGHDANGER(uppertext("...but your [name] refuses to fire due to the cylinder being open, embarassing..."))) + return + + if(!current_mag || !current_mag.current_rounds || (current_mag.chamber_contents[current_mag.chamber_position] in list("empty", "blank"))) // pain in my ass + click_empty(user) + user.visible_message(SPAN_HIGHDANGER(uppertext("...but the [name] dry fires with a resolute click! Embarassing...")), + SPAN_HIGHDANGER(uppertext("...but your [name] dry fires with quite the authoratitively embarassing click..."))) + balloon_alert_to_viewers("*click*") + var/obj/item/weapon/gun/revolver/revolver = src // snowflake check but whatever, revolvers are pretty snowflakey for most implementations anyway + if(revolver) + revolver.rotate_cylinder(user) + return + + reload_into_chamber(user) + else + if(!has_ammunition()) + click_empty(user) + user.visible_message(SPAN_HIGHDANGER(uppertext("...but the [name] dry fires with a resolute click! Embarassing...")), + SPAN_HIGHDANGER(uppertext("...but your [name] dry fires with quite the authoratitively embarassing click..."))) + balloon_alert_to_viewers("*click*") + return + + in_chamber = null + ready_in_chamber() // obviously want to load the next round if any if(gun_area.ceiling <= CEILING_GLASS) gun_turf.ceiling_debris() diff --git a/code/modules/projectiles/gun_helpers.dm b/code/modules/projectiles/gun_helpers.dm index 1481f3e0d80a..b338f71cf4ca 100644 --- a/code/modules/projectiles/gun_helpers.dm +++ b/code/modules/projectiles/gun_helpers.dm @@ -262,7 +262,7 @@ DEFINES in setup.dm, referenced here. if(istype(attack_item, /obj/item/prop/helmetgarb/gunoil)) var/oil_verb = pick("lubes", "oils", "cleans", "tends to", "gently strokes") - if(do_after(user, 30, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY, user, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) + if(do_after(user, 3 SECONDS, (INTERRUPT_ALL & (~INTERRUPT_MOVED)), BUSY_ICON_FRIENDLY, status_effect = SLOW)) user.visible_message("[user] [oil_verb] [src]. It shines like new.", "You oil up and immaculately clean [src]. It shines like new.") src.clean_blood() else @@ -316,7 +316,7 @@ DEFINES in setup.dm, referenced here. return // actual tactical reloads - var/tac_reload_time = 15 + var/tac_reload_time = 1.5 SECONDS if(istype(src, magazine.gun_type) || (magazine.type in accepted_ammo)) if(istype(bullet, /obj/item/ammo_magazine/handful) && in_chamber) @@ -329,8 +329,20 @@ DEFINES in setup.dm, referenced here. var/old_mag_loc = magazine.loc if(user.skills) - tac_reload_time = max(15 - 5*user.skills.get_skill_level(SKILL_FIREARMS), 5) - if(!do_after(user, tac_reload_time, (INTERRUPT_ALL & (~INTERRUPT_MOVED)) , BUSY_ICON_FRIENDLY)) + tac_reload_time = max(1.5 SECONDS - 5*user.skills.get_skill_level(SKILL_FIREARMS), 5) + + var/obj/limb/opposite_hand + var/effect + if(user.l_hand == src) // cant find the helper proc for this so + opposite_hand = user.get_limb("r_arm") + else + opposite_hand = user.get_limb("l_arm") + if(opposite_hand.status & LIMB_DESTROYED) + tac_reload_time *= 3 DECISECONDS + effect = SLOW + to_chat(user, SPAN_WARNING("...but you'll have a harder time reloading with one arm!")) + + if(!do_after(user, tac_reload_time, (INTERRUPT_ALL & (~INTERRUPT_MOVED)) , BUSY_ICON_FRIENDLY, status_effect = effect)) return if(magazine.loc != old_mag_loc || current_mag) return @@ -354,7 +366,7 @@ DEFINES in setup.dm, referenced here. to_chat(user, SPAN_WARNING("[src] is already at its maximum capacity!")) return - var/tac_reload_time = 2 + var/tac_reload_time = 2 DECISECONDS to_chat(user, SPAN_NOTICE("You get on one knee and start an unconventional reload.")) var/interrupted = FALSE @@ -436,7 +448,7 @@ DEFINES in setup.dm, referenced here. var/attach_delay = 1.5 SECONDS if(istype(attachment, /obj/item/attachable/bayonet)) attach_delay = 0.3 SECONDS - if(do_after(user, attach_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, numticks = 2)) + if(do_after(user, attach_delay, (INTERRUPT_ALL & (~INTERRUPT_MOVED)), BUSY_ICON_FRIENDLY, numticks = 2, status_effect = SLOW)) if(attachment && attachment.loc) user.visible_message(SPAN_NOTICE("[user] attaches [attachment] to [src]."), SPAN_NOTICE("You attach [attachment] to [src]."), null, 4) @@ -723,7 +735,7 @@ DEFINES in setup.dm, referenced here. var/detach_delay = 1.5 SECONDS if(istype(attachment, /obj/item/attachable/bayonet)) detach_delay = 0.3 SECONDS - if(!do_after(usr, detach_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) + if(!do_after(usr, detach_delay, (INTERRUPT_ALL & (~INTERRUPT_MOVED)), BUSY_ICON_FRIENDLY, status_effect = SLOW)) return if(!(attachment == attachments[attachment.slot])) diff --git a/code/modules/projectiles/guns/lever_action.dm b/code/modules/projectiles/guns/lever_action.dm index 45046a424a62..ba23f657c9cf 100644 --- a/code/modules/projectiles/guns/lever_action.dm +++ b/code/modules/projectiles/guns/lever_action.dm @@ -164,8 +164,17 @@ their unique feature is that a direct hit will buff your damage and firerate if(in_chamber) in_chamber = null var/obj/item/ammo_magazine/handful/new_handful = retrieve_bullet(ammo.type) - playsound(user, reload_sound, 25, TRUE) - new_handful.forceMove(get_turf(src)) + if(user) + for(var/obj/item/ammo_magazine/handful/hand in user.get_hands()) + if(hand && hand.default_ammo == new_handful.default_ammo && hand.current_rounds < hand.max_rounds) + hand.transfer_ammo(new_handful, user, 1) + qdel(new_handful) + new_handful = null + break + if(new_handful) + user.put_in_hands(new_handful) + playsound(user, reload_sound, 25, TRUE) + to_chat(user, SPAN_WARNING("You eject a round from the [src]'s chamber.")) else if(user) to_chat(user, SPAN_WARNING("\The [src] is already empty.")) @@ -181,7 +190,14 @@ their unique feature is that a direct hit will buff your damage and firerate var/obj/item/ammo_magazine/handful/new_handful = retrieve_bullet(current_mag.chamber_contents[current_mag.chamber_position]) if(user) - user.put_in_hands(new_handful) + for(var/obj/item/ammo_magazine/handful/hand in user.get_hands()) + if(hand && hand.default_ammo == new_handful.default_ammo && hand.current_rounds < hand.max_rounds) + hand.transfer_ammo(new_handful, user, 1) + qdel(new_handful) + new_handful = null + break + if(new_handful) + user.put_in_hands(new_handful) playsound(user, reload_sound, 25, TRUE) else new_handful.forceMove(get_turf(src)) diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm index 56e2e0dcf79f..c9068a7c88e9 100644 --- a/code/modules/projectiles/guns/pistols.dm +++ b/code/modules/projectiles/guns/pistols.dm @@ -890,6 +890,12 @@ /obj/item/weapon/gun/pistol/vp78/whiteout starting_attachment_types = list(/obj/item/attachable/heavy_barrel, /obj/item/attachable/reflex) +/obj/item/weapon/gun/pistol/vp78/army + starting_attachment_types = list(/obj/item/attachable/extended_barrel, /obj/item/attachable/reflex) + +/obj/item/weapon/gun/pistol/vp78/army/heap + current_mag = /obj/item/ammo_magazine/pistol/vp78/heap + //------------------------------------------------------- /* diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm index 42034d07006d..1d7335927774 100644 --- a/code/modules/projectiles/guns/revolvers.dm +++ b/code/modules/projectiles/guns/revolvers.dm @@ -90,27 +90,28 @@ current_mag.chamber_contents = list() current_mag.chamber_contents.len = current_mag.max_rounds var/i - for(i = 1 to current_mag.max_rounds) //We want to make sure to populate the cylinder. - current_mag.chamber_contents[i] = i > number_to_replace ? "empty" : "bullet" + for(i = 1 to current_mag.max_rounds) + current_mag.chamber_contents[i] = i > number_to_replace ? "empty" : current_mag.default_ammo current_mag.chamber_position = max(1,number_to_replace) /obj/item/weapon/gun/revolver/proc/empty_cylinder() if(current_mag) for(var/i = 1 to current_mag.max_rounds) current_mag.chamber_contents[i] = "empty" + current_mag.current_rounds = 0 //The cylinder is always emptied out before a reload takes place. -/obj/item/weapon/gun/revolver/proc/add_to_cylinder(mob/user) //Bullets are added forward. +/obj/item/weapon/gun/revolver/proc/add_to_cylinder(mob/user, ammo_type) //Bullets are added forward. if(current_mag) //First we're going to try and replace the current bullet. if(!current_mag.current_rounds) - current_mag.chamber_contents[current_mag.chamber_position] = "bullet" + current_mag.chamber_contents[current_mag.chamber_position] = ammo_type else //Failing that, we'll try to replace the next bullet in line. if((current_mag.chamber_position + 1) > current_mag.max_rounds) - current_mag.chamber_contents[1] = "bullet" + current_mag.chamber_contents[1] = ammo_type current_mag.chamber_position = 1 else - current_mag.chamber_contents[current_mag.chamber_position + 1] = "bullet" + current_mag.chamber_contents[current_mag.chamber_position + 1] = ammo_type current_mag.chamber_position++ playsound(user, hand_reload_sound, 25, 1) return 1 @@ -127,7 +128,7 @@ to_chat(user, SPAN_WARNING("That [magazine.name] is empty!")) return - if(current_mag) + if(current_mag) // the notes are probably a bit misleading since i modified some of it for mixing bullet type logic - nihi if(istype(magazine, /obj/item/ammo_magazine/handful)) //Looks like we're loading via handful. if(current_mag.chamber_closed) to_chat(user, SPAN_WARNING("You can't load anything when the cylinder is closed!")) @@ -135,25 +136,29 @@ if(!current_mag.current_rounds && current_mag.caliber == magazine.caliber) //Make sure nothing's loaded and the calibers match. replace_ammo(user, magazine) //We are going to replace the ammo just in case. current_mag.match_ammo(magazine) - current_mag.transfer_ammo(magazine,user,1) //Handful can get deleted, so we can't check through it. - add_to_cylinder(user) + var/mag_caliber = magazine.default_ammo + if(current_mag.transfer_ammo(magazine,user,1)) //Handful can get deleted, so we can't check through it. + add_to_cylinder(user, mag_caliber) //If bullets still remain in the gun, we want to check if the actual ammo matches. - else if(magazine.default_ammo == current_mag.default_ammo) //Ammo datums match, let's see if they are compatible. + else if(magazine.caliber == current_mag.caliber) //Ammo calibers match, let's see if they are compatible. + var/mag_caliber = magazine.default_ammo if(current_mag.transfer_ammo(magazine,user,1)) - add_to_cylinder(user)//If the magazine is deleted, we're still fine. + add_to_cylinder(user, mag_caliber)//If the magazine is deleted, we're still fine. else - to_chat(user, "[current_mag] is [current_mag.current_rounds ? "already loaded with some other ammo. Better not mix them up." : "not compatible with that ammo."]") //Not the right kind of ammo. + to_chat(user, SPAN_WARNING("[src] is not compatible with that kind of caliber!")) //Not the right kind of ammo. else //So if it's not a handful, it's an actual speedloader. if(current_mag.gun_type == magazine.gun_type) //Has to be the same gun type. if(current_mag.chamber_closed) // If the chamber is closed unload it unload(user) - if(current_mag.transfer_ammo(magazine,user,magazine.current_rounds))//Make sure we're successful. - replace_ammo(user, magazine) //We want to replace the ammo ahead of time, but not necessary here. - current_mag.match_ammo(magazine) - replace_cylinder(current_mag.current_rounds) - playsound(user, reload_sound, 25, 1) // Reloading via speedloader. - if(!current_mag.chamber_closed) // If the chamber is open, we close it - unload(user) + var/rounds_to_load = current_mag.max_rounds - current_mag.current_rounds + if(rounds_to_load > 0 && magazine.current_rounds > 0) + var/transferred = current_mag.transfer_ammo(magazine, user, min(rounds_to_load, magazine.current_rounds)) + if(transferred > 0) + for(var/i = 1 to transferred) + add_to_cylinder(user, magazine.default_ammo) + playsound(user, reload_sound, 25, 1) // Reloading via speedloader. + if(!current_mag.chamber_closed) // If the chamber is open, we close it + unload(user) else to_chat(user, SPAN_WARNING("\The [magazine] doesn't fit!")) @@ -164,8 +169,8 @@ if(current_mag) if(current_mag.chamber_closed) //If it's actually closed. to_chat(user, SPAN_NOTICE("You clear the cylinder of [src].")) - empty_cylinder() current_mag.create_handful(user) + empty_cylinder() current_mag.chamber_closed = !current_mag.chamber_closed russian_roulette = FALSE //Resets the RR variable. playsound(src, chamber_close_sound, 25, 1) @@ -185,8 +190,9 @@ /obj/item/weapon/gun/revolver/ready_in_chamber() if(current_mag) if(current_mag.current_rounds > 0) - if(current_mag.chamber_contents[current_mag.chamber_position] == "bullet") - in_chamber = create_bullet(ammo, initial(name)) + var/ammo_path = current_mag.chamber_contents[current_mag.chamber_position] + if(ammo_path != "empty" && ammo_path != "blank") + in_chamber = create_bullet(GLOB.ammo_list[ammo_path], initial(name)) apply_traits(in_chamber) return in_chamber else if(current_mag.chamber_closed) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index debe0e0e78a4..b83593107012 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -133,6 +133,13 @@ /obj/item/weapon/gun/rifle/m41a/tactical current_mag = /obj/item/ammo_magazine/rifle/ap starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip, /obj/item/attachable/stock/rifle/collapsible) + +/obj/item/weapon/gun/rifle/m41a/army + starting_attachment_types = list(/obj/item/attachable/reddot, /obj/item/attachable/attached_gun/grenade, /obj/item/attachable/stock/rifle/collapsible) + +/obj/item/weapon/gun/rifle/m41a/army/full + current_mag = /obj/item/ammo_magazine/rifle/heap + //------------------------------------------------------- //NSG 23 ASSAULT RIFLE - PMC PRIMARY RIFLE @@ -1490,6 +1497,11 @@ /obj/item/weapon/gun/rifle/lmg/tactical/set_gun_config_values() ..() damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2//equal to m41a dmg + +/obj/item/weapon/gun/rifle/lmg/army + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/angledgrip) + current_mag = /obj/item/ammo_magazine/rifle/lmg/heap + //------------------------------------------------------- @@ -1965,6 +1977,11 @@ current_mag = /obj/item/ammo_magazine/rifle/m4ra/extended starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip) +/obj/item/weapon/gun/rifle/m4ra/army + starting_attachment_types = list(/obj/item/attachable/reddot, /obj/item/attachable/extended_barrel, /obj/item/attachable/angledgrip) + +/obj/item/weapon/gun/rifle/m4ra/army/full + current_mag = /obj/item/ammo_magazine/rifle/m4ra/heap //------------------------------------------------------- diff --git a/code/modules/projectiles/guns/shotguns.dm b/code/modules/projectiles/guns/shotguns.dm index d79effd11615..81ec3ae2621c 100644 --- a/code/modules/projectiles/guns/shotguns.dm +++ b/code/modules/projectiles/guns/shotguns.dm @@ -88,8 +88,17 @@ can cause issues with ammo types getting mixed up during the burst. if(in_chamber) in_chamber = null var/obj/item/ammo_magazine/handful/new_handful = retrieve_shell(ammo.type) - playsound(user, reload_sound, 25, TRUE) - new_handful.forceMove(get_turf(src)) + if(user) + for(var/obj/item/ammo_magazine/handful/hand in user.get_hands()) + if(hand && hand.default_ammo == new_handful.default_ammo && hand.current_rounds < hand.max_rounds) + hand.transfer_ammo(new_handful, user, 1) + qdel(new_handful) + new_handful = null + break + if(new_handful) + user.put_in_hands(new_handful) + playsound(user, reload_sound, 25, TRUE) + to_chat(user, SPAN_WARNING("You eject a shell from the [src]'s chamber.")) if(flags_gun_features & GUN_AMMO_COUNTER && user) var/chambered = in_chamber ? TRUE : FALSE //useless, but for consistency if(!silent) @@ -109,18 +118,26 @@ can cause issues with ammo types getting mixed up during the burst. var/obj/item/ammo_magazine/handful/new_handful = retrieve_shell(current_mag.chamber_contents[current_mag.chamber_position]) if(user) - user.put_in_hands(new_handful) - playsound(user, reload_sound, 25, 1) + for(var/obj/item/ammo_magazine/handful/hand in user.get_hands()) + if(hand && hand.default_ammo == new_handful.default_ammo && hand.current_rounds < hand.max_rounds) + hand.transfer_ammo(new_handful, user, 1) + qdel(new_handful) + new_handful = null + break + if(new_handful) + user.put_in_hands(new_handful) + playsound(user, reload_sound, 25, TRUE) else new_handful.forceMove(get_turf(src)) current_mag.current_rounds-- current_mag.chamber_contents[current_mag.chamber_position] = "empty" current_mag.chamber_position-- - return 1 + return TRUE //While there is a much smaller way to do this, //this is the most resource efficient way to do it. + // what the hell are you talking about cm dev /obj/item/weapon/gun/shotgun/proc/retrieve_shell(selection) var/datum/ammo/A = GLOB.ammo_list[selection] var/obj/item/ammo_magazine/handful/new_handful = new A.handful_type() @@ -1300,9 +1317,7 @@ can cause issues with ammo types getting mixed up during the burst. if(world.time < (recent_pump + pump_delay) ) return //Don't spam it. if(pumped) - if (world.time > (message + pump_delay)) - to_chat(usr, SPAN_WARNING("[src] already has a shell in the chamber!")) - message = world.time + to_chat(user, SPAN_WARNING("[src] already has a shell in the chamber!")) return if(in_chamber) //eject the chambered round in_chamber = null @@ -1312,6 +1327,7 @@ can cause issues with ammo types getting mixed up during the burst. ready_shotgun_tube() playsound(user, pump_sound, 10, 1) + to_chat(user, SPAN_WARNING("You pump [src], loading a shell into the chamber!")) recent_pump = world.time if (in_chamber) pumped = TRUE diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm index 780f7256309f..487466584a9e 100644 --- a/code/modules/projectiles/guns/smgs.dm +++ b/code/modules/projectiles/guns/smgs.dm @@ -129,6 +129,12 @@ /obj/item/weapon/gun/smg/m39/training current_mag = /obj/item/ammo_magazine/smg/m39/rubber +/obj/item/weapon/gun/smg/m39/army + starting_attachment_types = list(/obj/item/attachable/stock/smg, /obj/item/attachable/reflex, /obj/item/attachable/extended_barrel, /obj/item/attachable/lasersight) + +/obj/item/weapon/gun/smg/m39/army/heap + current_mag = /obj/item/ammo_magazine/smg/m39/heap + //------------------------------------------------------- /obj/item/weapon/gun/smg/m39/elite diff --git a/code/modules/projectiles/magazines/pistols.dm b/code/modules/projectiles/magazines/pistols.dm index f8aa083216fb..a7b3f4428a34 100644 --- a/code/modules/projectiles/magazines/pistols.dm +++ b/code/modules/projectiles/magazines/pistols.dm @@ -174,6 +174,11 @@ default_ammo = /datum/ammo/bullet/pistol/squash/incendiary ammo_band_color = AMMO_BAND_COLOR_INCENDIARY +/obj/item/ammo_magazine/pistol/vp78/heap + name = "\improper VP78 high explosive armor piercing magazine (9mm)" + default_ammo = /datum/ammo/bullet/pistol/squash/heap + ammo_band_color = AMMO_BAND_COLOR_HEAP + /obj/item/ammo_magazine/pistol/vp78/rubber name = "\improper VP78 rubber magazine (9mm)" desc = "A 9mm pistol magazine for the VP78. This one is loaded with rubber bullets." diff --git a/code/modules/projectiles/magazines/revolvers.dm b/code/modules/projectiles/magazines/revolvers.dm index c33f58a88bbe..cd5b4fc38689 100644 --- a/code/modules/projectiles/magazines/revolvers.dm +++ b/code/modules/projectiles/magazines/revolvers.dm @@ -159,6 +159,29 @@ max_rounds = 6 gun_type = /obj/item/weapon/gun/revolver +/obj/item/ammo_magazine/internal/revolver/create_handful(mob/user, transfer_amount, obj_name = src) + if(current_rounds <= 0) + return FALSE + + var/list/rounds_in_cylinder = list() + for(var/ammo_path in chamber_contents) + if(ammo_path != "empty" && ammo_path != "blank") + rounds_in_cylinder[ammo_path]++ + + var/first_put = TRUE + for(var/ammo_path in rounds_in_cylinder) + var/obj/item/ammo_magazine/handful/new_handful = new() + var/amount = rounds_in_cylinder[ammo_path] + new_handful.generate_handful(ammo_path, caliber, max_rounds, amount, gun_type) + if(first_put && user) + user.put_in_hands(new_handful) // only put the first one in their hands + first_put = FALSE + else + new_handful.forceMove(get_turf(src)) + to_chat(user, SPAN_WARNING("...but you drop the rest of the mixed ammunition in the process.")) + + return TRUE + //------------------------------------------------------- //M44 MAGNUM REVOLVER //Not actually cannon, but close enough. diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index 57387e68ced4..0a03c799f7f8 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -48,6 +48,9 @@ default_ammo = /datum/ammo/bullet/rifle/heap ammo_band_color = AMMO_BAND_COLOR_HEAP +/obj/item/ammo_magazine/rifle/heap/empty + current_rounds = 0 + /obj/item/ammo_magazine/rifle/ap name = "\improper M41A AP magazine (10x24mm)" desc = "An armor-piercing 10x24mm assault rifle magazine." @@ -164,6 +167,9 @@ default_ammo = /datum/ammo/bullet/rifle/heap ammo_band_color = AMMO_BAND_COLOR_HEAP +/obj/item/ammo_magazine/rifle/m4ra/heap/empty + current_rounds = 0 + /obj/item/ammo_magazine/rifle/m4ra/penetrating name = "\improper M4RA wall-penetrating magazine (10x24mm)" desc = "A magazine of wall-penetrating 10x24mm rounds for use in the M4RA battle rifle." diff --git a/code/modules/projectiles/magazines/specialist.dm b/code/modules/projectiles/magazines/specialist.dm index 465013013c71..b17156f562a6 100644 --- a/code/modules/projectiles/magazines/specialist.dm +++ b/code/modules/projectiles/magazines/specialist.dm @@ -113,6 +113,9 @@ . = ..() current_rounds = rand(280, 500) //Scavenged surplus, so there is more suprise factors +/obj/item/ammo_magazine/smartgun/empty + current_rounds = 0 + /obj/item/ammo_magazine/smartgun/dirty name = "irradiated M56 smartgun drum" desc = "What at first glance appears to be a standard 500-round M56 Smartgun drum, is actually a drum loaded with irradiated rounds, providing an extra 'oomph' to to its bullets. The magazine itself is slightly modified to only fit in M56D or M56T smartguns, and is marked with a red X." diff --git a/code/modules/tents/deployed_tents.dm b/code/modules/tents/deployed_tents.dm index 0165e1dbf778..eb856c8b103d 100644 --- a/code/modules/tents/deployed_tents.dm +++ b/code/modules/tents/deployed_tents.dm @@ -66,7 +66,7 @@ var/mob/hologram/hologram_mob = subject_mob subject_mob = hologram_mob.linked_mob - var/atom/movable/screen/plane_master/roof/roof_plane = subject_mob.hud_used.plane_masters["[ROOF_PLANE]"] + var/atom/movable/screen/plane_master/roof/roof_plane = subject_mob.hud_used?.plane_masters["[ROOF_PLANE]"] roof_plane?.invisibility = INVISIBILITY_MAXIMUM if(ishuman(subject)) RegisterSignal(subject, COMSIG_HUMAN_COLD_PROTECTION_APPLY_MODIFIERS, PROC_REF(cold_protection), override = TRUE) @@ -89,7 +89,7 @@ var/mob/hologram/hologram_mob = subject subject = hologram_mob.linked_mob - var/atom/movable/screen/plane_master/roof/roof_plane = subject.hud_used.plane_masters["[ROOF_PLANE]"] + var/atom/movable/screen/plane_master/roof/roof_plane = subject.hud_used?.plane_masters["[ROOF_PLANE]"] roof_plane?.invisibility = 0 /mob/proc/tent_deletion_clean_up(obj/structure/tent/deleting_tent) diff --git a/code/modules/vehicles/hardpoints/wheels/locomotion.dm b/code/modules/vehicles/hardpoints/wheels/locomotion.dm index c6090c7641cb..e4aad7c10a00 100644 --- a/code/modules/vehicles/hardpoints/wheels/locomotion.dm +++ b/code/modules/vehicles/hardpoints/wheels/locomotion.dm @@ -64,7 +64,7 @@ if(acid.cause_data.cause_name == "resin acid trap") take_damage = floor(take_damage / 3) - else if(istype(A, /obj/effect/blocker/toxic_water)) + else if(istype(A, /obj/effect/blocker/water/toxic)) //multitile vehicles are, well, multitile and will be receiving damage for each tile, so damage is low per tile. take_damage = 10 diff --git a/code/modules/vehicles/interior/interactable/doors.dm b/code/modules/vehicles/interior/interactable/doors.dm index d38f9b729259..8fe877b68676 100644 --- a/code/modules/vehicles/interior/interactable/doors.dm +++ b/code/modules/vehicles/interior/interactable/doors.dm @@ -58,8 +58,32 @@ interior.exit(M) return XENO_NO_DELAY_ACTION -/obj/structure/interior_exit/vehicle/attackby(obj/item/O, mob/M) - attack_hand(M) +/obj/structure/interior_exit/vehicle/attackby(obj/item/object, mob/user) + if(istype(object, /obj/item/explosive/grenade)) + var/obj/item/explosive/grenade/nade = object + if(nade.antigrief_protection && user.faction == FACTION_MARINE && explosive_antigrief_check(nade, user)) + to_chat(user, SPAN_WARNING("\The [nade.name]'s safe-area accident inhibitor prevents you from priming the grenade!")) + // Let staff know, in case someone's actually about to try to grief + msg_admin_niche("[key_name(user)] attempted to prime \a [nade.name] in [get_area(src)] [ADMIN_JMP(src.loc)]") + return + + user.visible_message(SPAN_WARNING("[user] takes position to throw [nade] through the door."), + SPAN_WARNING("You take position to throw [nade] through the door.")) + if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + return + + user.visible_message(SPAN_WARNING("[user] throws [nade] through the door!"), + SPAN_WARNING("You throw [nade] through the door.")) + + var/turf/exit_turf = get_exit_turf() + user.drop_held_item() + interior.exit(nade, exit_turf) + if(!nade.active) + nade.activate(user) + return + + else + attack_hand(user) /obj/structure/interior_exit/attack_ghost(mob/dead/observer/user) if(!interior) diff --git a/code/modules/vehicles/interior/interior.dm b/code/modules/vehicles/interior/interior.dm index 15447028853c..a6abcc5547bc 100644 --- a/code/modules/vehicles/interior/interior.dm +++ b/code/modules/vehicles/interior/interior.dm @@ -46,6 +46,12 @@ //revivable corpses slots taken var/revivable_dead_taken_slots = 0 + //vehicles have special slots for perma corpses to prevent dead people from clogging the vehicle and making it un-enterable + //perma corpses slots + var/perma_dead_slots = 0 + //perma corpses slots taken + var/perma_dead_taken_slots = 0 + //list of stuff we do NOT want to be pulled inside. Taken from exterior's list var/list/forbidden_atoms @@ -133,6 +139,7 @@ passengers_slots = V.passengers_slots xenos_slots = V.xenos_slots revivable_dead_slots = V.revivable_dead_slots + perma_dead_slots = V.perma_dead_slots passengers_taken_slots = 0 xenos_taken_slots = 0 revivable_dead_taken_slots = 0 @@ -155,11 +162,14 @@ //whether we put human in some category var/role_slot_taken = FALSE var/mob/living/carbon/human/H = M - //some vehicles have separate count for non-perma dead corpses - if(H.stat == DEAD && H.is_revivable()) - if(revivable_dead_slots && revivable_dead_taken_slots < revivable_dead_slots) + //if a human dies in the vehicle, we don't want him to take up a passenger slot as that could prevent humans from entering it ever again + if(H.stat == DEAD) + if(H.is_revivable()) revivable_dead_taken_slots++ role_slot_taken = TRUE + else + perma_dead_taken_slots++ + role_slot_taken = TRUE //if we have any special roles slots, we check them first if(length(role_reserved_slots)) @@ -217,11 +227,16 @@ if(ishuman(M)) var/mob/living/carbon/human/H = M var/role_slot_taken = FALSE - if(H.stat == DEAD && H.is_revivable()) - //this is here to prevent accummulating people in vehicle by bringing in more and more revivable dead and reviving them inside - if(revivable_dead_slots && revivable_dead_taken_slots < revivable_dead_slots && passengers_taken_slots < passengers_slots + revivable_dead_slots) - revivable_dead_taken_slots++ - role_slot_taken = TRUE + if(H.stat == DEAD) + if(H.is_revivable()) + //this is here to prevent accummulating people in vehicle by bringing in more and more revivable dead and reviving them inside. + if(revivable_dead_slots && revivable_dead_taken_slots < revivable_dead_slots && passengers_taken_slots < passengers_slots + revivable_dead_slots) + revivable_dead_taken_slots++ + role_slot_taken = TRUE + else //you can always drag perma people in if there is space as they cannot be revived. + if(perma_dead_slots && perma_dead_taken_slots < perma_dead_slots) + perma_dead_taken_slots++ + role_slot_taken = TRUE if(!role_slot_taken && length(role_reserved_slots)) for(var/datum/role_reserved_slots/RRS in role_reserved_slots) diff --git a/code/modules/vehicles/multitile/multitile.dm b/code/modules/vehicles/multitile/multitile.dm index 59cf25cf84d8..d04e1e0e8f3e 100644 --- a/code/modules/vehicles/multitile/multitile.dm +++ b/code/modules/vehicles/multitile/multitile.dm @@ -97,6 +97,8 @@ //some vehicles have special slots for dead revivable corpses for various reasons //revivable corpses slots var/revivable_dead_slots = 0 + //To prevent the dead from taking up all passenger slots and making the vehicle un-enterable. + var/perma_dead_slots = 2 //Special roles categories slots. These allow to set specific roles in categories with their own slots. //For example, (list(JOB_CREWMAN, JOB_UPP_CREWMAN) = 2) means that USCM and UPP crewman will always have 2 slots reserved for them. //Only first encounter of job will be checked for slots, so don't put job in more than one category. diff --git a/code/modules/vehicles/multitile/multitile_bump.dm b/code/modules/vehicles/multitile/multitile_bump.dm index d24b9cb15f7e..3657eda74064 100644 --- a/code/modules/vehicles/multitile/multitile_bump.dm +++ b/code/modules/vehicles/multitile/multitile_bump.dm @@ -595,11 +595,15 @@ var/mob/living/driver = V.get_seat_mob(VEHICLE_DRIVER) var/dmg = FALSE + var/mob_moved = FALSE + var/mob_knocked_down = is_mob_incapacitated() + if(V.vehicle_flags & VEHICLE_CLASS_WEAK) - if(driver && get_target_lock(driver.faction)) - apply_effect(0.5, WEAKEN) - else - apply_effect(1, WEAKEN) + if(!mob_knocked_down) + var/direction_taken = pick(45, 0, -45) + mob_moved = step(src, turn(V.last_move_dir, direction_taken)) + if(!mob_moved) + mob_moved = step(src, turn(V.last_move_dir, -direction_taken)) else if(V.vehicle_flags & VEHICLE_CLASS_LIGHT) dmg = TRUE if(get_target_lock(driver.faction)) @@ -630,6 +634,11 @@ else log_attack("[key_name(src)] was friendly pushed by [key_name(driver)] with [V].") //to be able to determine whether vehicle was pushing friendlies + if(mob_knocked_down) + return TRUE + else if (mob_moved) + playsound(loc, "punch", 25, 1) + return TRUE //-------------------------XENOS------------------------ diff --git a/code/modules/vehicles/multitile/multitile_interaction.dm b/code/modules/vehicles/multitile/multitile_interaction.dm index 28fc90ea9ecb..d3106ea8183c 100644 --- a/code/modules/vehicles/multitile/multitile_interaction.dm +++ b/code/modules/vehicles/multitile/multitile_interaction.dm @@ -87,6 +87,42 @@ handle_player_entrance(user) return + if(istype(O, /obj/item/explosive/grenade)) + var/obj/item/explosive/grenade/nade = O + if(nade.antigrief_protection && user.faction == FACTION_MARINE && explosive_antigrief_check(nade, user)) + to_chat(user, SPAN_WARNING("\The [nade.name]'s safe-area accident inhibitor prevents you from priming the grenade!")) + // Let staff know, in case someone's actually about to try to grief + msg_admin_niche("[key_name(user)] attempted to prime \a [nade.name] in [get_area(src)] [ADMIN_JMP(src.loc)]") + return + if(door_locked && health > 0 && (!allowed(user) || !get_target_lock(user.faction_group))) + to_chat(user, SPAN_WARNING("\The [src] is locked!")) + return + + var/mob_x = user.x - x + var/mob_y = user.y - y + var/entrance_used = null + for(var/entrance in entrances) + var/entrance_coord = entrances[entrance] + if(mob_x == entrance_coord[1] && mob_y == entrance_coord[2]) + entrance_used = entrance + break + if(entrance_used) //if we are at a door, throw it in, else do nothing. + user.visible_message(SPAN_WARNING("[user] takes position to throw [nade] through the door of the [src]."), + SPAN_WARNING("You take position to throw [nade] through the door of the [src].")) + if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + return + if(mob_x != user.x - x || mob_y != user.y - y) + return + + user.visible_message(SPAN_WARNING("[user] throws [nade] through the door of the [src]!"), + SPAN_WARNING("You throw [nade] through the door of the [src].")) + + user.drop_held_item() + interior.enter(nade, entrance_used) + if(!nade.active) + nade.activate(user) + return + if(istype(O, /obj/item/device/motiondetector)) if(!interior) to_chat(user, SPAN_WARNING("It appears that [O] cannot establish borders of space inside \the [src]. (PLEASE, TELL A DEV, SOMETHING BROKE)")) diff --git a/colonialmarines.dme b/colonialmarines.dme index d90db21f9d4c..00137da426ef 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -587,6 +587,7 @@ #include "code\datums\emergency_calls\tank_crew.dm" #include "code\datums\emergency_calls\upp.dm" #include "code\datums\emergency_calls\upp_commando.dm" +#include "code\datums\emergency_calls\us_army.dm" #include "code\datums\emergency_calls\whiskey_outpost.dm" #include "code\datums\emergency_calls\wy_commando.dm" #include "code\datums\emergency_calls\xeno_cultists.dm" @@ -850,6 +851,7 @@ #include "code\game\area\strata.dm" #include "code\game\area\Sulaco.dm" #include "code\game\area\techtree.dm" +#include "code\game\area\tyrargo_rift.dm" #include "code\game\area\varadero.dm" #include "code\game\area\WhiskeyOutpost.dm" #include "code\game\camera_manager\camera_manager.dm" @@ -1442,6 +1444,7 @@ #include "code\game\objects\structures\surface.dm" #include "code\game\objects\structures\tables_racks.dm" #include "code\game\objects\structures\tank_dispenser.dm" +#include "code\game\objects\structures\tyrargo_props.dm" #include "code\game\objects\structures\urinal.dm" #include "code\game\objects\structures\vulture_spotter.dm" #include "code\game\objects\structures\watercloset.dm" @@ -1933,6 +1936,7 @@ #include "code\modules\gear_presets\synth_k9.dm" #include "code\modules\gear_presets\synths.dm" #include "code\modules\gear_presets\upp.dm" +#include "code\modules\gear_presets\us_army.dm" #include "code\modules\gear_presets\uscm.dm" #include "code\modules\gear_presets\uscm_co.dm" #include "code\modules\gear_presets\uscm_dress.dm" @@ -1969,6 +1973,7 @@ #include "code\modules\gear_presets\survivors\sorokyne_strata\preset_sorokyne_strata.dm" #include "code\modules\gear_presets\survivors\trijent\crashlanding_upp_bar_insert_trijent.dm" #include "code\modules\gear_presets\survivors\trijent\preset_trijent.dm" +#include "code\modules\gear_presets\survivors\tyrargo_rift\us_army_survivors.dm" #include "code\modules\holidays\holidays.dm" #include "code\modules\holidays\halloween\decorators.dm" #include "code\modules\holidays\halloween\pumpkins\patches.dm" diff --git a/dependencies.sh b/dependencies.sh index ed058f1d2c08..a216dfc03360 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -8,7 +8,7 @@ export BYOND_MAJOR=516 export BYOND_MINOR=1661 #rust_g git tag -export RUST_G_VERSION=4.2.0 +export RUST_G_VERSION=6.0.0 #node version export NODE_VERSION_LTS=22.14.0 diff --git a/html/changelogs/AutoChangeLog-pr-10935.yml b/html/changelogs/AutoChangeLog-pr-10935.yml new file mode 100644 index 000000000000..4b2722386411 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-10935.yml @@ -0,0 +1,5 @@ +author: "Unknownity" +delete-after: True +changes: + - rscadd: "The Hunting Grounds escape console will now provide its location included in the escape warning attempt." + - mapadd: "Adds a new hunting grounds reserve map called Desert Moon." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-11636.yml b/html/changelogs/AutoChangeLog-pr-11636.yml new file mode 100644 index 000000000000..8b077022c32e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11636.yml @@ -0,0 +1,4 @@ +author: "MistChristmas" +delete-after: True +changes: + - bugfix: "Cades can no longer sit on top of each other." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-11653.yml b/html/changelogs/AutoChangeLog-pr-11653.yml new file mode 100644 index 000000000000..3b1976ded5e6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11653.yml @@ -0,0 +1,4 @@ +author: "Drathek" +delete-after: True +changes: + - code_imp: "Bumped rust_g from 4.2.0 to 6.0.0" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-11673.yml b/html/changelogs/AutoChangeLog-pr-11673.yml deleted file mode 100644 index f27f9e13cfe5..000000000000 --- a/html/changelogs/AutoChangeLog-pr-11673.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "Puckaboo2" -delete-after: True -changes: - - bugfix: "Anchorpoint Station marines have their minimap faction icons." - - bugfix: "Missing minimap icons, minimap backgrounds, and role comm titles have been applied to all CMB personnel." - - bugfix: "CMB Riot Control synths should have the correct minimap icons vs the CMB Investigation synths." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-11681.yml b/html/changelogs/AutoChangeLog-pr-11681.yml deleted file mode 100644 index 18375f48c5ad..000000000000 --- a/html/changelogs/AutoChangeLog-pr-11681.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "BOBAMAx" -delete-after: True -changes: - - bugfix: "rescuing survivors now properly awards intel points instead of only pretending to" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-11714.yml b/html/changelogs/AutoChangeLog-pr-11714.yml new file mode 100644 index 000000000000..7d3a462cb6aa --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11714.yml @@ -0,0 +1,6 @@ +author: "Drathek" +delete-after: True +changes: + - admin: "Moderators (including trial) get access to more log verbs and STUI tabs" + - bugfix: "Trial moderators now appear in StaffWho" + - bugfix: "admins.txt fallback now grants rights correctly again" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-8846.yml b/html/changelogs/AutoChangeLog-pr-8846.yml new file mode 100644 index 000000000000..bfd6c37d8d20 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-8846.yml @@ -0,0 +1,16 @@ +author: "Steelpoint, Zenith, Cuberound, BonniePandora, po1ntm4n, feroxz, thwomper, kyogon, blundir, crowford" +delete-after: True +changes: + - mapadd: "Tyrargo Rift has been added to the game. Set in the midst of a large-scale armed conflict between the United American military and a Xenomorph hive on a temperate but highly populated world. Expect a blend of open arena combat and urban close quarter battle in a multiz-level environment." + - mapadd: "A large set of nightmare inserts for Tyrargo Rift have been added. These includes random structure changes and new combat environments." + - rscadd: "Elements of the US Army's 1st Air Cavalry can be found defending the city and outskirts of Tyrargo Rift. This includes a US Army Major and a US Army Synthetic." + - imageadd: "Addition of a large amount of new prop sprites, including military and civilian vehicles, static emplacements, aircraft, environmental flora such as trees, and urban props such as tents, illuminator lights or wooden boards." + - admin: "A US Army ERT has been added, however, this ERT is not intended to be deployed as part of a Distress Signal." + - rscadd: "US Army flavoured equipment has been added. Including armour, uniforms, helmets, patches and symbols, some of which are ported from the PvE CM-SS13 server, others are custom sprites." + - rscadd: "NPC Xenomorphs will no longer target monkeys, rats or mice." + - code_imp: "Framework to facilitate map specific ERTs to be called automatically once a round has ended, and for automatic USCM high command and queen mother messages to be sent, have been added. This is currently used for Tyrargo Rift, but the code can be used for any other map." + - bugfix: "Fixed several errors that occur if NPC Xenos attempt to cross z-levels or enter tents." + - rscadd: "A set of new atmospheric audio files have been added for Tyrargo Rift." + - rscadd: "A set of xeno NPC, and ammunition, spawner landmarks has been added for mappers. The spawn chance is set by a variable on the spawner, allowing mappers to set these items to have a random chance to appear on the map." + - rscadd: "New water flood system has been added for Tyrargo. This allows the Marines to flood the lower sewers, and for xenomorphs to undo this by breaking the appropriate APC which will cause the water to recede. The flooding and receding will display an animation and will push around loose objects that are caught in the flooding. This new system has been retrofired for Trijent Dam's flooding." + - rscadd: "Sticky resin and reinforced xeno wall/door spawners for the Distress Signal gamemode has been added for mapper use. This will spawn these objects only during the aforementioned gamemode." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-9120.yml b/html/changelogs/AutoChangeLog-pr-9120.yml new file mode 100644 index 000000000000..e2866bf6f953 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-9120.yml @@ -0,0 +1,5 @@ +author: "BOBAMAx" +delete-after: True +changes: + - qol: "you can now throw grenades through vehicle doors both ways" + - balance: "vans no longer stun humans. dead people no longer take up space in vehicles if they die inside of it." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-9402.yml b/html/changelogs/AutoChangeLog-pr-9402.yml new file mode 100644 index 000000000000..779cfdf1d870 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-9402.yml @@ -0,0 +1,5 @@ +author: "PhantornRU" +delete-after: True +changes: + - rscadd: "Option for the administration to remove mindless mobs when spawning ERT." + - refactor: "Refactored the code for waiting for a choice from the administrator during ERT spawn." \ No newline at end of file diff --git a/html/changelogs/archive/2026-02.yml b/html/changelogs/archive/2026-02.yml index 181d8c3767ba..080f2e3aa287 100644 --- a/html/changelogs/archive/2026-02.yml +++ b/html/changelogs/archive/2026-02.yml @@ -42,3 +42,55 @@ ori-disillusion-mirnov: - rscdel: removes playtime defines past tier 4, and removes the hybrisa CL survivor ranks past 175 hours of playtime +2026-02-11: + BOBAMAx: + - bugfix: rescuing survivors now properly awards intel points instead of only pretending + to + Puckaboo2: + - bugfix: Anchorpoint Station marines have their minimap faction icons. + - bugfix: Missing minimap icons, minimap backgrounds, and role comm titles have + been applied to all CMB personnel. + - bugfix: CMB Riot Control synths should have the correct minimap icons vs the CMB + Investigation synths. +2026-02-12: + Puckaboo2: + - bugfix: You can now apply Severe Burns or Eschar on a mob through the limb status + editor. + - spellcheck: Adds a space between your limb status and (Severe Burns) when you + check yourself. + - bugfix: Nonbinaries being 'himself' to other people while checking themselves + for injuries should no longer occur. + ori-disillusion-mirnov: + - bugfix: large xenos can no longer be buckled to office chairs + - code_imp: remove redundant line for the rollerbed +2026-02-13: + Nihisohel: + - rscadd: Revolvers can now mix n match ammo types in their cylinders. Play hardcore + Russian Roulette with a High-explosive round combined with Impact rounds. + - balance: Tactical reloading duration and speed is now reduced if your arm is missing + - balance: You can now move while attaching weapon mods to your gun with a movement + penalty + - rscadd: You can now move while oiling your gun. + - qol: Bullet/shell ejections now stack to your hand first, before littering the + ground + - refactor: Changes the backend for normal cock to hand to standardize the function + with the new leveractions and shotguns ejections + - refactor: Cleans up suicide code a bit + - rscadd: Your head can now explode through the right circumstances through suicide + - rscadd: Adds some more flavor text to CO pistols firing at the air. + - bugfix: Fixes some early returns on CO pistols relating to firing to air + - spellcheck: Adds text for when directly ejecting from the lever-actions or shotguns + chamber, and a few other texts missing some color + neeshacark: + - qol: the revolver rig can hold loose rounds now + - spellcheck: fixed a typo in the name of the revolver holster rig +2026-02-16: + AmazingDragon353: + - balance: Larva can evolve into any t1 when queen is dead + timothymtorres: + - bugfix: Fix hydrotrays ignoring bullet damage +2026-02-17: + Drathek: + - rscdel: Queen can no longer rest on ovi again + - rscadd: Added metatip to explain that resisting can interrupt most do_after actions + such as de-ovi diff --git a/icons/effects/strata_decals.dmi b/icons/effects/strata_decals.dmi index ff1d623625a5..f4c7a5021bfe 100644 Binary files a/icons/effects/strata_decals.dmi and b/icons/effects/strata_decals.dmi differ diff --git a/icons/landmarks.dmi b/icons/landmarks.dmi index 97c34f21b625..af3c4e3bcd33 100644 Binary files a/icons/landmarks.dmi and b/icons/landmarks.dmi differ diff --git a/icons/mob/hud/factions/marine.dmi b/icons/mob/hud/factions/marine.dmi index 6b28fea5db99..56e7668a1d58 100644 Binary files a/icons/mob/hud/factions/marine.dmi and b/icons/mob/hud/factions/marine.dmi differ diff --git a/icons/mob/humans/onmob/clothing/accessory/patches.dmi b/icons/mob/humans/onmob/clothing/accessory/patches.dmi index e88589cb573a..af36300a4206 100644 Binary files a/icons/mob/humans/onmob/clothing/accessory/patches.dmi and b/icons/mob/humans/onmob/clothing/accessory/patches.dmi differ diff --git a/icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi b/icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi index f875dd7a47e3..516dba5c900e 100644 Binary files a/icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi and b/icons/mob/humans/onmob/clothing/head/hats_by_faction/UA.dmi differ diff --git a/icons/mob/humans/onmob/clothing/head/hats_by_map/jungle.dmi b/icons/mob/humans/onmob/clothing/head/hats_by_map/jungle.dmi index 2db373cd697c..49b1e38b3ec5 100644 Binary files a/icons/mob/humans/onmob/clothing/head/hats_by_map/jungle.dmi and b/icons/mob/humans/onmob/clothing/head/hats_by_map/jungle.dmi differ diff --git a/icons/mob/humans/onmob/clothing/suits/armor.dmi b/icons/mob/humans/onmob/clothing/suits/armor.dmi index e64d3c7b3bb4..13fc52d66c81 100644 Binary files a/icons/mob/humans/onmob/clothing/suits/armor.dmi and b/icons/mob/humans/onmob/clothing/suits/armor.dmi differ diff --git a/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi b/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi index a0ef1b02df09..581d526c84e2 100644 Binary files a/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi and b/icons/mob/humans/onmob/clothing/suits/suits_by_faction/UA.dmi differ diff --git a/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi b/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi index 35c2598795fa..f510b6763090 100644 Binary files a/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi and b/icons/mob/humans/onmob/clothing/suits/suits_by_map/jungle.dmi differ diff --git a/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/UA.dmi b/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/UA.dmi index 0bab60ef5c9f..1b45cddb39d2 100644 Binary files a/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/UA.dmi and b/icons/mob/humans/onmob/clothing/uniforms/uniforms_by_faction/UA.dmi differ diff --git a/icons/mob/humans/onmob/inhands/items/bottles_lefthand.dmi b/icons/mob/humans/onmob/inhands/items/bottles_lefthand.dmi index 50011e06b5d6..24c2085ac1bf 100644 Binary files a/icons/mob/humans/onmob/inhands/items/bottles_lefthand.dmi and b/icons/mob/humans/onmob/inhands/items/bottles_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/items/bottles_righthand.dmi b/icons/mob/humans/onmob/inhands/items/bottles_righthand.dmi index 621e00d62bfd..913e488af33a 100644 Binary files a/icons/mob/humans/onmob/inhands/items/bottles_righthand.dmi and b/icons/mob/humans/onmob/inhands/items/bottles_righthand.dmi differ diff --git a/icons/obj/items/clothing/accessory/patches.dmi b/icons/obj/items/clothing/accessory/patches.dmi index 65344b0fd2bc..6ddf3c2dc32f 100644 Binary files a/icons/obj/items/clothing/accessory/patches.dmi and b/icons/obj/items/clothing/accessory/patches.dmi differ diff --git a/icons/obj/items/clothing/hats/hats_by_faction/UA.dmi b/icons/obj/items/clothing/hats/hats_by_faction/UA.dmi index 3d4d6dcb0db3..ce289a2d91f0 100644 Binary files a/icons/obj/items/clothing/hats/hats_by_faction/UA.dmi and b/icons/obj/items/clothing/hats/hats_by_faction/UA.dmi differ diff --git a/icons/obj/items/clothing/hats/hats_by_map/jungle.dmi b/icons/obj/items/clothing/hats/hats_by_map/jungle.dmi index e48f5a0521a6..8fab90e46fbe 100644 Binary files a/icons/obj/items/clothing/hats/hats_by_map/jungle.dmi and b/icons/obj/items/clothing/hats/hats_by_map/jungle.dmi differ diff --git a/icons/obj/items/clothing/suits/armor.dmi b/icons/obj/items/clothing/suits/armor.dmi index 9c42a9eb2a83..5d25e57dfa22 100644 Binary files a/icons/obj/items/clothing/suits/armor.dmi and b/icons/obj/items/clothing/suits/armor.dmi differ diff --git a/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi b/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi index 8373cc778d74..39a1629358d3 100644 Binary files a/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi and b/icons/obj/items/clothing/suits/suits_by_faction/UA.dmi differ diff --git a/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi b/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi index 0d77d84b8c57..7ee271553424 100644 Binary files a/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi and b/icons/obj/items/clothing/suits/suits_by_map/jungle.dmi differ diff --git a/icons/obj/items/clothing/uniforms/uniforms_by_faction/UA.dmi b/icons/obj/items/clothing/uniforms/uniforms_by_faction/UA.dmi index 99441a8344d0..e0019b79103d 100644 Binary files a/icons/obj/items/clothing/uniforms/uniforms_by_faction/UA.dmi and b/icons/obj/items/clothing/uniforms/uniforms_by_faction/UA.dmi differ diff --git a/icons/obj/items/food/drinks.dmi b/icons/obj/items/food/drinks.dmi index 8e4cf68f5616..b4dc27e2f92b 100644 Binary files a/icons/obj/items/food/drinks.dmi and b/icons/obj/items/food/drinks.dmi differ diff --git a/icons/obj/structures/barricades.dmi b/icons/obj/structures/barricades.dmi index 80a7e633bdb4..164dcba11f92 100644 Binary files a/icons/obj/structures/barricades.dmi and b/icons/obj/structures/barricades.dmi differ diff --git a/icons/obj/structures/props/64x64.dmi b/icons/obj/structures/props/64x64.dmi index e3750cc8cdae..1cce3ba004f6 100644 Binary files a/icons/obj/structures/props/64x64.dmi and b/icons/obj/structures/props/64x64.dmi differ diff --git a/icons/obj/structures/props/almayer/almayer_props64.dmi b/icons/obj/structures/props/almayer/almayer_props64.dmi index 7d4f7e7170fc..953fa9324462 100644 Binary files a/icons/obj/structures/props/almayer/almayer_props64.dmi and b/icons/obj/structures/props/almayer/almayer_props64.dmi differ diff --git a/icons/obj/structures/props/industrial/illuminator.dmi b/icons/obj/structures/props/industrial/illuminator.dmi new file mode 100644 index 000000000000..e0720943ac5a Binary files /dev/null and b/icons/obj/structures/props/industrial/illuminator.dmi differ diff --git a/icons/obj/structures/props/industrial/traffic_signal.dmi b/icons/obj/structures/props/industrial/traffic_signal.dmi new file mode 100644 index 000000000000..3f2e5d086758 Binary files /dev/null and b/icons/obj/structures/props/industrial/traffic_signal.dmi differ diff --git a/icons/obj/structures/props/industrial/watchtower.dmi b/icons/obj/structures/props/industrial/watchtower.dmi new file mode 100644 index 000000000000..b64426d14234 Binary files /dev/null and b/icons/obj/structures/props/industrial/watchtower.dmi differ diff --git a/icons/obj/structures/props/landing_signs.dmi b/icons/obj/structures/props/landing_signs.dmi index d87acbdccbc3..71bdd97cff04 100644 Binary files a/icons/obj/structures/props/landing_signs.dmi and b/icons/obj/structures/props/landing_signs.dmi differ diff --git a/icons/obj/structures/props/large_tent_props.dmi b/icons/obj/structures/props/large_tent_props.dmi new file mode 100644 index 000000000000..8e31057e614d Binary files /dev/null and b/icons/obj/structures/props/large_tent_props.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/temperate_flora.dmi b/icons/obj/structures/props/natural/vegetation/temperate_flora.dmi new file mode 100644 index 000000000000..3099a328b8f8 Binary files /dev/null and b/icons/obj/structures/props/natural/vegetation/temperate_flora.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/tyrargo_dead_trees.dmi b/icons/obj/structures/props/natural/vegetation/tyrargo_dead_trees.dmi new file mode 100644 index 000000000000..5686daac8ff5 Binary files /dev/null and b/icons/obj/structures/props/natural/vegetation/tyrargo_dead_trees.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/tyrargo_pine_tree.dmi b/icons/obj/structures/props/natural/vegetation/tyrargo_pine_tree.dmi new file mode 100644 index 000000000000..0ae8901b6771 Binary files /dev/null and b/icons/obj/structures/props/natural/vegetation/tyrargo_pine_tree.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi b/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi new file mode 100644 index 000000000000..95324f2acca6 Binary files /dev/null and b/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi differ diff --git a/icons/obj/structures/props/platforms.dmi b/icons/obj/structures/props/platforms.dmi index 3ae30cefee85..127c2b534c91 100644 Binary files a/icons/obj/structures/props/platforms.dmi and b/icons/obj/structures/props/platforms.dmi differ diff --git a/icons/obj/structures/props/static_defence_prop.dmi b/icons/obj/structures/props/static_defence_prop.dmi new file mode 100644 index 000000000000..8ba8a8091df1 Binary files /dev/null and b/icons/obj/structures/props/static_defence_prop.dmi differ diff --git a/icons/obj/structures/props/tyrargo_props.dmi b/icons/obj/structures/props/tyrargo_props.dmi new file mode 100644 index 000000000000..866f32fa7403 Binary files /dev/null and b/icons/obj/structures/props/tyrargo_props.dmi differ diff --git a/icons/obj/structures/props/vehicles/armored_truck_trr.dmi b/icons/obj/structures/props/vehicles/armored_truck_trr.dmi new file mode 100644 index 000000000000..bd2286b40009 Binary files /dev/null and b/icons/obj/structures/props/vehicles/armored_truck_trr.dmi differ diff --git a/icons/obj/structures/props/vehicles/armored_truck_wy_white.dmi b/icons/obj/structures/props/vehicles/armored_truck_wy_white.dmi index 8a17f9e1a634..325bbb9719e1 100644 Binary files a/icons/obj/structures/props/vehicles/armored_truck_wy_white.dmi and b/icons/obj/structures/props/vehicles/armored_truck_wy_white.dmi differ diff --git a/icons/obj/structures/props/wall_decorations/decals.dmi b/icons/obj/structures/props/wall_decorations/decals.dmi index 730321485feb..21b17df89ec9 100644 Binary files a/icons/obj/structures/props/wall_decorations/decals.dmi and b/icons/obj/structures/props/wall_decorations/decals.dmi differ diff --git a/icons/obj/structures/props/wall_decorations/tyrargo32x64_signs.dmi b/icons/obj/structures/props/wall_decorations/tyrargo32x64_signs.dmi new file mode 100644 index 000000000000..c956ddbeae3d Binary files /dev/null and b/icons/obj/structures/props/wall_decorations/tyrargo32x64_signs.dmi differ diff --git a/icons/obj/structures/props/wall_decorations/tyrargo64x64_signs.dmi b/icons/obj/structures/props/wall_decorations/tyrargo64x64_signs.dmi new file mode 100644 index 000000000000..9f5c0203a13b Binary files /dev/null and b/icons/obj/structures/props/wall_decorations/tyrargo64x64_signs.dmi differ diff --git a/icons/obj/vehicles/aircraft_prop.dmi b/icons/obj/vehicles/aircraft_prop.dmi new file mode 100644 index 000000000000..f2f3ba2f2a57 Binary files /dev/null and b/icons/obj/vehicles/aircraft_prop.dmi differ diff --git a/icons/obj/vehicles/apc_prop.dmi b/icons/obj/vehicles/apc_prop.dmi new file mode 100644 index 000000000000..b6821bf9a8cd Binary files /dev/null and b/icons/obj/vehicles/apc_prop.dmi differ diff --git a/icons/obj/vehicles/arc_prop.dmi b/icons/obj/vehicles/arc_prop.dmi new file mode 100644 index 000000000000..03ef47f2de88 Binary files /dev/null and b/icons/obj/vehicles/arc_prop.dmi differ diff --git a/icons/obj/vehicles/bison_prop.dmi b/icons/obj/vehicles/bison_prop.dmi new file mode 100644 index 000000000000..bee7c6aa89fa Binary files /dev/null and b/icons/obj/vehicles/bison_prop.dmi differ diff --git a/icons/obj/vehicles/humvee_prop.dmi b/icons/obj/vehicles/humvee_prop.dmi new file mode 100644 index 000000000000..cc4f3f3c9c9d Binary files /dev/null and b/icons/obj/vehicles/humvee_prop.dmi differ diff --git a/icons/obj/vehicles/ifv_prop.dmi b/icons/obj/vehicles/ifv_prop.dmi new file mode 100644 index 000000000000..8645b61f3d6d Binary files /dev/null and b/icons/obj/vehicles/ifv_prop.dmi differ diff --git a/icons/obj/vehicles/miltruck_prop.dmi b/icons/obj/vehicles/miltruck_prop.dmi new file mode 100644 index 000000000000..3540b2e5bcd3 Binary files /dev/null and b/icons/obj/vehicles/miltruck_prop.dmi differ diff --git a/icons/obj/vehicles/tank_prop.dmi b/icons/obj/vehicles/tank_prop.dmi new file mode 100644 index 000000000000..cf5577afa227 Binary files /dev/null and b/icons/obj/vehicles/tank_prop.dmi differ diff --git a/icons/obj/vehicles/van_prop.dmi b/icons/obj/vehicles/van_prop.dmi new file mode 100644 index 000000000000..85c9c85192c8 Binary files /dev/null and b/icons/obj/vehicles/van_prop.dmi differ diff --git a/icons/obj/vehicles/vtol_prop.dmi b/icons/obj/vehicles/vtol_prop.dmi new file mode 100644 index 000000000000..fd94e1ff9660 Binary files /dev/null and b/icons/obj/vehicles/vtol_prop.dmi differ diff --git a/icons/turf/almayer.dmi b/icons/turf/almayer.dmi index ab0f066ac664..b3518ef4e1d7 100644 Binary files a/icons/turf/almayer.dmi and b/icons/turf/almayer.dmi differ diff --git a/icons/turf/dropship2.dmi b/icons/turf/dropship2.dmi index 53a44fe75b71..ed8a2844588f 100644 Binary files a/icons/turf/dropship2.dmi and b/icons/turf/dropship2.dmi differ diff --git a/icons/turf/dropship3.dmi b/icons/turf/dropship3.dmi index 0d772c58a48e..bf771de78206 100644 Binary files a/icons/turf/dropship3.dmi and b/icons/turf/dropship3.dmi differ diff --git a/icons/turf/floors/auto_strata_grass.dmi b/icons/turf/floors/auto_strata_grass.dmi index 2745286c5efa..7cdbc47c88bb 100644 Binary files a/icons/turf/floors/auto_strata_grass.dmi and b/icons/turf/floors/auto_strata_grass.dmi differ diff --git a/icons/turf/floors/auto_tyrargo_turf.dmi b/icons/turf/floors/auto_tyrargo_turf.dmi new file mode 100644 index 000000000000..dcf31136fa62 Binary files /dev/null and b/icons/turf/floors/auto_tyrargo_turf.dmi differ diff --git a/icons/turf/floors/desert_water.dmi b/icons/turf/floors/desert_water.dmi index b41097166b3b..31b5e261323a 100644 Binary files a/icons/turf/floors/desert_water.dmi and b/icons/turf/floors/desert_water.dmi differ diff --git a/icons/turf/floors/desert_water_covered.dmi b/icons/turf/floors/desert_water_covered.dmi index d0c532e53d92..8d3fe13978a3 100644 Binary files a/icons/turf/floors/desert_water_covered.dmi and b/icons/turf/floors/desert_water_covered.dmi differ diff --git a/icons/turf/floors/ground_map_dirt.dmi b/icons/turf/floors/ground_map_dirt.dmi index 573c64908af8..7aaf366cadd8 100644 Binary files a/icons/turf/floors/ground_map_dirt.dmi and b/icons/turf/floors/ground_map_dirt.dmi differ diff --git a/icons/turf/floors/tyrargo_map_dirt.dmi b/icons/turf/floors/tyrargo_map_dirt.dmi new file mode 100644 index 000000000000..8110ad478951 Binary files /dev/null and b/icons/turf/floors/tyrargo_map_dirt.dmi differ diff --git a/icons/turf/walls/bunker.dmi b/icons/turf/walls/bunker.dmi index a4549000196a..ec922ba5c380 100644 Binary files a/icons/turf/walls/bunker.dmi and b/icons/turf/walls/bunker.dmi differ diff --git a/icons/turf/walls/forest_veg.dmi b/icons/turf/walls/forest_veg.dmi new file mode 100644 index 000000000000..d213991f38c5 Binary files /dev/null and b/icons/turf/walls/forest_veg.dmi differ diff --git a/map_config/maps.txt b/map_config/maps.txt index 3e687eb12b94..5931346e854b 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -63,5 +63,8 @@ endmap map new_varadero endmap +map tyrargo_rift +endmap + map whiskey_outpost_v2 endmap diff --git a/maps/Nightmare/maps/tyrargo_rift/nightmare.json b/maps/Nightmare/maps/tyrargo_rift/nightmare.json new file mode 100644 index 000000000000..5706749b2420 --- /dev/null +++ b/maps/Nightmare/maps/tyrargo_rift/nightmare.json @@ -0,0 +1,48 @@ +[ + { + "type": "map_sprinkle", + "path": "sprinkles/" + }, + { + "type": "map_insert", + "landmark": "crash_surface", + "chance": 1.0, + "path": "standalone/dropship_bunker_crash.dmm", + "when": { "lvevent": "dropshipcrash" } + }, + { + "type": "map_insert", + "landmark": "crash_underground", + "chance": 1.0, + "path": "standalone/dropship_bunker_crash_underground.dmm", + "when": { "lvevent": "dropshipcrash" } + }, + { + "type": "map_insert", + "landmark": "crash_aboveground", + "chance": 1.0, + "path": "standalone/dropship_bunker_crash_aboveground.dmm", + "when": { "lvevent": "dropshipcrash" } + }, + { + "type": "map_insert", + "landmark": "heyst_surface", + "chance": 1.0, + "path": "standalone/uss_heyst.dmm", + "when": { "lvevent": "heystcrash" } + }, + { + "type": "map_insert", + "landmark": "heyst_above", + "chance": 1.0, + "path": "standalone/uss_heyst_aboveground.dmm", + "when": { "lvevent": "heystcrash" } + }, + { + "type": "map_insert", + "landmark": "heyst_under", + "chance": 1.0, + "path": "standalone/uss_heyst_underground.dmm", + "when": { "lvevent": "heystcrash" } + } +] diff --git a/maps/Nightmare/maps/tyrargo_rift/scenario.json b/maps/Nightmare/maps/tyrargo_rift/scenario.json new file mode 100644 index 000000000000..025b154ff52e --- /dev/null +++ b/maps/Nightmare/maps/tyrargo_rift/scenario.json @@ -0,0 +1,10 @@ +[ + { + "type": "pick", "name": "Tyrargo Global Event", + "choices": [ + { "weight": 5, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 3, "type": "def", "values": { "lvevent": "dropshipcrash" } }, + { "weight": 2, "type": "def", "values": { "lvevent": "heystcrash" } } + ] + } +] diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 893d3febdf56..c33fd40e8b42 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -914,7 +914,7 @@ /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/tech_storage) "acN" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "acO" = ( @@ -3202,7 +3202,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_security) "ajN" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_north) "ajO" = ( @@ -4880,7 +4880,7 @@ /area/desert_dam/building/security/stairwell/upper) "apg" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "aph" = ( @@ -6880,7 +6880,7 @@ /area/desert_dam/exterior/roof) "awe" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "awf" = ( @@ -8447,7 +8447,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger/control) "aAM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "aAN" = ( @@ -9172,7 +9172,7 @@ /turf/open/asphalt, /area/desert_dam/building/water_treatment_one/garage) "aCM" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_south) "aCN" = ( @@ -9928,7 +9928,7 @@ /area/desert_dam/exterior/rock) "aFc" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_north) "aFd" = ( @@ -10098,7 +10098,7 @@ /turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/gate) "aFL" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "aFM" = ( @@ -10420,7 +10420,7 @@ /area/desert_dam/building/administration/breakroom) "aGS" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "aGT" = ( @@ -11050,7 +11050,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "aIJ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 1 }, @@ -11143,7 +11143,7 @@ /turf/open/floor/prison/bluefull, /area/desert_dam/building/administration/panic_room) "aIX" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_hydro) "aIY" = ( @@ -11351,7 +11351,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) "aJC" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "aJD" = ( @@ -11840,7 +11840,7 @@ /turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/upper_hallway) "aLj" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/coagulation/icon2_0, /area/desert_dam/building/water_treatment_two/purification) "aLk" = ( @@ -13928,7 +13928,7 @@ /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage/solar) "aRT" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/filtration/machine_96x96{ icon_state = "disinfection" }, @@ -14099,7 +14099,7 @@ /area/desert_dam/interior/dam_interior/upper_walkway) "aSz" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "aSA" = ( @@ -15106,7 +15106,7 @@ /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/stairwell/upper) "aWb" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aWc" = ( @@ -15212,7 +15212,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) "aWs" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/item/stack/sheet/wood/medium_stack, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) @@ -15443,7 +15443,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/effect/landmark/nightmare{ insert_tag = "nspa_cordon" }, @@ -16317,7 +16317,7 @@ /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "aZt" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "aZu" = ( @@ -16388,7 +16388,7 @@ /area/desert_dam/interior/caves/east_caves) "aZF" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aZG" = ( @@ -16400,7 +16400,7 @@ "aZH" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_south) "aZI" = ( @@ -17968,7 +17968,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "beH" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "beI" = ( @@ -18663,7 +18663,7 @@ /turf/open/shuttle/dropship/predship/mainfloor/direction_1/west, /area/desert_dam/interior/caves/pred_ship) "bgG" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow/covered, /area/desert_dam/exterior/river/riverside_central_south) "bgH" = ( @@ -21969,7 +21969,7 @@ "bqF" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "bqG" = ( @@ -22312,7 +22312,7 @@ /turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) "bvA" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_south) "bvH" = ( @@ -22380,7 +22380,7 @@ /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "bxM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_A_0" }, @@ -22394,7 +22394,7 @@ /turf/open/floor/wood, /area/desert_dam/building/administration/office) "bxT" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, @@ -22429,7 +22429,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_workshop) "byG" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "byN" = ( @@ -22607,7 +22607,7 @@ "bBN" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "bBS" = ( @@ -22691,7 +22691,7 @@ /area/desert_dam/interior/caves/temple) "bEc" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "bEd" = ( @@ -22791,7 +22791,7 @@ /area/desert_dam/building/medical/outgoing) "bGt" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "bGD" = ( @@ -22809,7 +22809,7 @@ /turf/open/floor/wood/wood_broken7, /area/desert_dam/building/administration/meetingrooom) "bGN" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_north) "bGV" = ( @@ -22902,7 +22902,7 @@ /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bIt" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) "bIw" = ( @@ -23034,7 +23034,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) "bJW" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "bKc" = ( @@ -23106,7 +23106,7 @@ /area/desert_dam/building/security/northern_hallway) "bLs" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) "bLV" = ( @@ -23471,7 +23471,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bTL" = ( @@ -23488,7 +23488,7 @@ "bTN" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "bTV" = ( @@ -23575,7 +23575,7 @@ /area/desert_dam/building/substation/west) "bWj" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bWt" = ( @@ -23957,7 +23957,7 @@ /turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "cfO" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, /turf/open/desert/desert_shore/desert_shore1/east, @@ -24258,7 +24258,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cml" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "cmm" = ( @@ -24882,7 +24882,7 @@ "cAk" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "cAq" = ( @@ -25101,7 +25101,7 @@ /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -25220,7 +25220,7 @@ "cHW" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "cHX" = ( @@ -25267,7 +25267,7 @@ /area/desert_dam/building/warehouse/breakroom) "cJc" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "cJg" = ( @@ -25461,7 +25461,7 @@ /turf/open/floor/prison/bluecorner, /area/desert_dam/building/administration/hallway) "cMb" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -25562,7 +25562,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "cNp" = ( @@ -25664,7 +25664,7 @@ /area/desert_dam/building/warehouse/breakroom) "cPF" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "cPN" = ( @@ -25777,7 +25777,7 @@ "cRK" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "cRS" = ( @@ -25946,7 +25946,7 @@ /area/desert_dam/building/dorms/pool) "cUS" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "cUU" = ( @@ -26087,7 +26087,7 @@ /turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "cXa" = ( -/obj/effect/blocker/toxic_water/Group_2/delay, +/obj/effect/blocker/water/toxic/Group_2/delay, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "cXd" = ( @@ -26498,7 +26498,7 @@ /area/desert_dam/building/warehouse/breakroom) "dfP" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "dfQ" = ( @@ -26611,7 +26611,7 @@ /area/desert_dam/exterior/river/riverside_east) "dif" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) "din" = ( @@ -26715,7 +26715,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "dkn" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "dko" = ( @@ -26826,7 +26826,7 @@ /turf/open/floor/plating, /area/desert_dam/building/medical/office1) "dmz" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "dmA" = ( @@ -26990,7 +26990,7 @@ "doW" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "dph" = ( @@ -27221,11 +27221,11 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/primary_storage) "dtW" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) "due" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/machinery/dispersal_initiator{ id = "filter 1" }, @@ -27407,7 +27407,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "dwy" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 8 }, @@ -27623,7 +27623,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "dAw" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) "dAz" = ( @@ -27932,7 +27932,7 @@ /turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_hydro) "dGc" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "dGp" = ( @@ -28006,7 +28006,7 @@ /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) "dHT" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/barricade/wooden{ dir = 4 }, @@ -28152,7 +28152,7 @@ /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/western_dam_cave) "dLP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -28214,7 +28214,7 @@ "dMM" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "dNc" = ( @@ -28670,7 +28670,7 @@ /turf/open/floor/prison/red/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "dWF" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) @@ -28698,7 +28698,7 @@ /area/desert_dam/building/medical/outgoing) "dXc" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "dXd" = ( @@ -28823,14 +28823,14 @@ /turf/open/asphalt/cement, /area/desert_dam/exterior/telecomm/lz1_south) "dZJ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "dZR" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "dZT" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -28872,7 +28872,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "eaF" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "eaG" = ( @@ -29018,7 +29018,7 @@ /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/office) "edB" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -29206,7 +29206,7 @@ /turf/open/floor/darkyellow2, /area/desert_dam/building/substation/northwest) "eim" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "eip" = ( @@ -29263,7 +29263,7 @@ /area/desert_dam/building/bar/bar) "eje" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "ejk" = ( @@ -29757,7 +29757,7 @@ /area/desert_dam/interior/dam_interior/north_tunnel) "euj" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "eun" = ( @@ -29799,7 +29799,7 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/stairwell) "evo" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "evs" = ( @@ -29891,7 +29891,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "exE" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "exL" = ( @@ -29921,7 +29921,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "eyh" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "eyl" = ( @@ -29966,7 +29966,7 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/hallway) "eyR" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "ezc" = ( @@ -30256,7 +30256,7 @@ /area/desert_dam/building/water_treatment_one/floodgate_control) "eEL" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "eEZ" = ( @@ -30441,7 +30441,7 @@ "eIu" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "eIN" = ( @@ -30740,7 +30740,7 @@ /turf/open/floor/prison/red/southwest, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "eOZ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "ePb" = ( @@ -30795,7 +30795,7 @@ /turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "ePY" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -31175,7 +31175,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "eWi" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "eWu" = ( @@ -31505,7 +31505,7 @@ /area/desert_dam/interior/dam_interior/break_room) "fcH" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "fcJ" = ( @@ -31665,7 +31665,7 @@ /area/desert_dam/building/warehouse/loading) "ffn" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "ffI" = ( @@ -31757,8 +31757,8 @@ /area/desert_dam/exterior/valley/valley_hydro) "fgI" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "fhc" = ( @@ -31877,7 +31877,7 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "fjV" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "fjW" = ( @@ -32051,7 +32051,7 @@ /area/desert_dam/building/bar/backroom) "fnr" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_south) "fnK" = ( @@ -32270,7 +32270,7 @@ /area/desert_dam/exterior/valley/valley_wilderness) "frG" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "frM" = ( @@ -32317,7 +32317,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "fsD" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_south) "fsF" = ( @@ -32371,7 +32371,7 @@ "ftR" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/south_valley_dam) "ftX" = ( @@ -32492,7 +32492,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "fwY" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_south) "fxg" = ( @@ -32540,7 +32540,7 @@ /area/desert_dam/building/security/warden) "fxC" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_central_south) "fxE" = ( @@ -32567,7 +32567,7 @@ /area/desert_dam/exterior/valley/valley_security) "fyg" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "fyr" = ( @@ -32587,7 +32587,7 @@ /area/desert_dam/building/security/staffroom) "fyE" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "fzf" = ( @@ -32689,7 +32689,7 @@ /turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/northwest) "fAS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_central_south) "fAU" = ( @@ -32933,7 +32933,7 @@ "fGB" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "fGD" = ( @@ -33007,7 +33007,7 @@ /area/desert_dam/building/medical/maint/south) "fHS" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "fHT" = ( @@ -33031,7 +33031,7 @@ /turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "fIw" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -33286,7 +33286,7 @@ "fNb" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "fNg" = ( @@ -33335,7 +33335,7 @@ /turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) "fNG" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) "fNP" = ( @@ -33406,7 +33406,7 @@ /area/desert_dam/interior/dam_interior/garage) "fOM" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) "fPg" = ( @@ -33534,7 +33534,7 @@ icon_state = "lower_2"; layer = 2 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_one/purification) "fRd" = ( @@ -33582,7 +33582,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "fRW" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "fRZ" = ( @@ -34259,7 +34259,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "gfr" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "gfs" = ( @@ -34347,7 +34347,7 @@ /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "ggR" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "ghd" = ( @@ -34554,7 +34554,7 @@ /area/desert_dam/exterior/telecomm/lz2_containers) "gly" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "glA" = ( @@ -34605,7 +34605,7 @@ "gma" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "gml" = ( @@ -34632,7 +34632,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "gmy" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) "gmA" = ( @@ -34772,7 +34772,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) "gpl" = ( @@ -34785,7 +34785,7 @@ /area/desert_dam/building/administration/overseer_office) "gpn" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "gps" = ( @@ -34871,7 +34871,7 @@ /turf/open/floor/darkred2/northeast, /area/desert_dam/building/administration/lobby) "grO" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow/covered, /area/desert_dam/exterior/river/riverside_central_south) "grP" = ( @@ -34913,13 +34913,13 @@ /turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "gsL" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/warning/north, /area/desert_dam/interior/dam_interior/engine_room) "gsM" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "gsS" = ( @@ -35029,12 +35029,12 @@ /area/desert_dam/building/bar/backroom) "guf" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "gug" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "gui" = ( @@ -35141,7 +35141,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "gvz" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "gvB" = ( @@ -35219,7 +35219,7 @@ /area/desert_dam/exterior/river/riverside_east) "gxF" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "gxM" = ( @@ -35580,7 +35580,7 @@ /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "gFp" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/disposalpipe/segment, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -35682,7 +35682,7 @@ /area/desert_dam/building/security/lobby) "gIk" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "gIo" = ( @@ -35817,7 +35817,7 @@ /turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "gKA" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_north) "gLa" = ( @@ -35856,7 +35856,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_security) "gLo" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_medical) "gLv" = ( @@ -35915,7 +35915,7 @@ /turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) "gMC" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_south) "gMD" = ( @@ -36010,7 +36010,7 @@ /area/desert_dam/interior/dam_interior/north_tunnel) "gNX" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "gNZ" = ( @@ -36087,7 +36087,7 @@ /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) "gPn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "gPo" = ( @@ -36156,7 +36156,7 @@ "gPR" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "gPX" = ( @@ -36179,7 +36179,7 @@ /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) "gQn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_north) "gQC" = ( @@ -36240,7 +36240,7 @@ /area/desert_dam/building/warehouse/loading) "gSm" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "gSt" = ( @@ -36327,7 +36327,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lower_stairwell) "gTy" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/purification) "gTB" = ( @@ -36373,7 +36373,7 @@ /area/desert_dam/building/warehouse/loading) "gTP" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "gTR" = ( @@ -36463,7 +36463,7 @@ /turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "gVt" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 8 }, @@ -36820,7 +36820,7 @@ /area/desert_dam/interior/dam_interior/smes_backup) "hdz" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "hdN" = ( @@ -36945,7 +36945,7 @@ "hgc" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "hgd" = ( @@ -37102,7 +37102,7 @@ /turf/open/floor/prison/darkbrown3/north, /area/desert_dam/interior/dam_interior/disposals) "hiz" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "hiC" = ( @@ -37185,7 +37185,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) "hkn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) "hkp" = ( @@ -37202,7 +37202,7 @@ /area/desert_dam/building/medical/stairwell/north) "hks" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "hku" = ( @@ -37630,7 +37630,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "huj" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_south) "huA" = ( @@ -38038,7 +38038,7 @@ /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "hCp" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "hCr" = ( @@ -38138,7 +38138,7 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) "hDE" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "hDO" = ( @@ -38263,7 +38263,7 @@ /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -38284,7 +38284,7 @@ /turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel) "hGy" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -38299,7 +38299,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "hGQ" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "hHl" = ( @@ -38404,7 +38404,7 @@ /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/disposals) "hJk" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/warning/north, /area/desert_dam/interior/dam_interior/engine_room) "hJl" = ( @@ -38413,7 +38413,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "hJm" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "hJp" = ( @@ -38438,7 +38438,7 @@ /area/desert_dam/building/administration/archives) "hJz" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "hJP" = ( @@ -38622,7 +38622,7 @@ "hNc" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/clothing/head/soft/ferret, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_south) @@ -38771,7 +38771,7 @@ /area/desert_dam/exterior/river_mouth/southern) "hRb" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "hRg" = ( @@ -38860,7 +38860,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "hSu" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "hSx" = ( @@ -38946,7 +38946,7 @@ /turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "hTD" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/coagulation/icon0_0, /area/desert_dam/building/water_treatment_two/purification) "hTE" = ( @@ -39246,7 +39246,7 @@ /area/desert_dam/building/warehouse/warehouse) "iaf" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "iam" = ( @@ -39292,7 +39292,7 @@ "iaL" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "iaO" = ( @@ -39481,7 +39481,7 @@ /turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/upper_hallway) "ieP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_north) @@ -39492,14 +39492,14 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "ifk" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) "ifn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) "ifv" = ( @@ -39573,7 +39573,7 @@ "ihg" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "ihh" = ( @@ -39634,12 +39634,12 @@ /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "ihX" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "iir" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "iis" = ( @@ -39673,7 +39673,7 @@ /area/desert_dam/interior/caves/temple) "iiO" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "iiS" = ( @@ -39694,7 +39694,7 @@ /area/desert_dam/exterior/landing_pad_one) "ijk" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "ijm" = ( @@ -39845,7 +39845,7 @@ /area/desert_dam/building/hydroponics/hydroponics_storage) "ilD" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "ilV" = ( @@ -39854,7 +39854,7 @@ "ilW" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "ilX" = ( @@ -39871,7 +39871,7 @@ /area/desert_dam/building/medical/virology_wing) "imb" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "imd" = ( @@ -39889,7 +39889,7 @@ /turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/west) "imn" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_south) "ims" = ( @@ -39906,11 +39906,11 @@ /area/desert_dam/building/medical/primary_storage) "imy" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "imK" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "imO" = ( @@ -40234,7 +40234,7 @@ /area/desert_dam/exterior/valley/north_valley_dam) "isq" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "isv" = ( @@ -40460,7 +40460,7 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/north_wing_hallway) "ixm" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "ixn" = ( @@ -40593,7 +40593,7 @@ /area/desert_dam/building/administration/control_room) "izG" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_central_south) "izJ" = ( @@ -40706,7 +40706,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "iCf" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) @@ -40923,7 +40923,7 @@ /area/desert_dam/building/cafeteria/loading) "iFP" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "iFU" = ( @@ -41067,7 +41067,7 @@ "iIo" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "iIp" = ( @@ -41075,7 +41075,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "iIs" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "iIB" = ( @@ -41090,7 +41090,7 @@ /area/desert_dam/building/security/holding) "iIE" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "iIF" = ( @@ -41195,7 +41195,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "iKn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_two/purification) "iKr" = ( @@ -41439,7 +41439,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_lobby) "iQN" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "iQP" = ( @@ -41836,7 +41836,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "iZP" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "iZT" = ( @@ -41877,7 +41877,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "jaT" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) @@ -41992,7 +41992,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "jdV" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_north) "jdW" = ( @@ -42187,7 +42187,7 @@ /area/desert_dam/building/dorms/pool) "jhd" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "jhe" = ( @@ -42692,7 +42692,7 @@ /turf/open/floor/almayer_hull, /area/desert_dam/interior/dam_interior/primary_tool_storage) "jpX" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "jqg" = ( @@ -42998,14 +42998,14 @@ /area/desert_dam/exterior/valley/south_valley_dam) "jvL" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "jvM" = ( /turf/open/floor/prison/sterile_white/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "jvQ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "jvT" = ( @@ -43215,7 +43215,7 @@ /area/desert_dam/exterior/river/riverside_east) "jBs" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_south) "jBt" = ( @@ -43232,7 +43232,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "jBG" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform_decoration/metal/almayer/north, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) @@ -43320,7 +43320,7 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/primary_storage) "jDI" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "jDU" = ( @@ -43406,7 +43406,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "jGe" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_south) "jGf" = ( @@ -43487,7 +43487,7 @@ /area/desert_dam/exterior/valley/valley_medical) "jHi" = ( /obj/structure/platform_decoration/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "jHv" = ( @@ -43542,7 +43542,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) "jIa" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/barricade/wooden{ dir = 1 }, @@ -43622,7 +43622,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_security) "jJE" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "jJG" = ( @@ -43713,7 +43713,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) "jLZ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "jMa" = ( @@ -43791,7 +43791,7 @@ "jNn" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "jNr" = ( @@ -43997,7 +43997,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/south_valley_dam) "jRb" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_south) "jRd" = ( @@ -44142,14 +44142,14 @@ /area/desert_dam/building/security/armory) "jUq" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "jUw" = ( /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/interior/caves/central_caves) "jUI" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/coagulation/icon8_0, /area/desert_dam/building/water_treatment_two/purification) "jUK" = ( @@ -44200,7 +44200,7 @@ /turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "jVu" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_north) "jVw" = ( @@ -44356,7 +44356,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "jYC" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_south) "jYN" = ( @@ -44430,7 +44430,7 @@ /turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/west_wing_hallway) "kax" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "kaD" = ( @@ -44498,7 +44498,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) "kbW" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "kcd" = ( @@ -44514,7 +44514,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) "kcx" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "kcL" = ( @@ -44635,7 +44635,7 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "keG" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_north) "keP" = ( @@ -44668,7 +44668,7 @@ /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_security) "kff" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_central_south) "kfi" = ( @@ -44779,7 +44779,7 @@ /area/desert_dam/building/medical/office3) "khE" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_north) "khI" = ( @@ -44853,7 +44853,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "kjv" = ( @@ -45116,7 +45116,7 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control/lobby) "kou" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "koy" = ( @@ -45190,7 +45190,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "kpT" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) "kqb" = ( @@ -45341,7 +45341,7 @@ /area/desert_dam/interior/dam_interior/central_tunnel) "ktE" = ( /obj/structure/floodgate, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "ktK" = ( @@ -45402,14 +45402,14 @@ /area/desert_dam/building/warehouse/loading) "kva" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "kvh" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) "kvi" = ( @@ -45662,7 +45662,7 @@ /area/desert_dam/interior/dam_interior/primary_tool_storage) "kAr" = ( /obj/structure/floodgate, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "kAB" = ( @@ -45812,7 +45812,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_security) "kDO" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_one/purification) "kDR" = ( @@ -45910,7 +45910,7 @@ /area/desert_dam/building/administration/meetingrooom) "kGU" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_central_south) "kGZ" = ( @@ -46141,7 +46141,7 @@ "kLJ" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "kLK" = ( @@ -46607,7 +46607,7 @@ /area/desert_dam/building/substation/southwest) "kVM" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_south) "kVP" = ( @@ -46868,7 +46868,7 @@ /turf/open/floor/prison/darkpurplecorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "lbK" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "lbN" = ( @@ -47540,7 +47540,7 @@ /area/desert_dam/interior/dam_interior/lobby) "lpr" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_north) @@ -47598,7 +47598,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "lpS" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "lpV" = ( @@ -47649,7 +47649,7 @@ /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "lqZ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_central_south) "lrf" = ( @@ -47986,7 +47986,7 @@ /area/desert_dam/exterior/landing_pad_one) "lym" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "lyu" = ( @@ -48033,7 +48033,7 @@ /area/desert_dam/exterior/river/riverside_central_south) "lyR" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "lza" = ( @@ -48108,7 +48108,7 @@ "lAF" = ( /obj/structure/platform/metal/almayer, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "lAQ" = ( @@ -48238,7 +48238,7 @@ /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/interior/caves/temple) "lDt" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_central_north) "lDw" = ( @@ -48261,7 +48261,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_biology) "lDH" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "lDI" = ( @@ -48288,7 +48288,7 @@ /area/desert_dam/building/bar/bar) "lDK" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "lDL" = ( @@ -48760,7 +48760,7 @@ /turf/open/shuttle/can_surgery/black, /area/desert_dam/interior/dam_interior/hanger) "lMI" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform_decoration/metal/almayer, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) @@ -48795,7 +48795,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "lNU" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_south) "lOj" = ( @@ -49000,7 +49000,7 @@ /area/desert_dam/building/security/prison) "lRY" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_south) "lSa" = ( @@ -49354,7 +49354,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "lZs" = ( @@ -49426,7 +49426,7 @@ /area/desert_dam/exterior/valley/valley_security) "maS" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_south) "maU" = ( @@ -49490,7 +49490,7 @@ /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "mcJ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "mcK" = ( @@ -49576,7 +49576,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "mfH" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "mfI" = ( @@ -49869,7 +49869,7 @@ "mmp" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "mmr" = ( @@ -49950,7 +49950,7 @@ /area/desert_dam/building/warehouse/breakroom) "mnM" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "mnO" = ( @@ -50017,7 +50017,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_biology) "moM" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "moQ" = ( @@ -50102,7 +50102,7 @@ /area/desert_dam/interior/dam_interior/western_dam_cave) "mqo" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "mqB" = ( @@ -50133,7 +50133,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_two) "mqR" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform_decoration/metal/almayer/east, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) @@ -50335,7 +50335,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_excavation) "muj" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_south) "mun" = ( @@ -51104,7 +51104,7 @@ "mJt" = ( /obj/structure/platform/metal/almayer, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "mJw" = ( @@ -51237,7 +51237,7 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "mLF" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "mLO" = ( @@ -51295,7 +51295,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "mNl" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "mNq" = ( @@ -51392,7 +51392,7 @@ /area/desert_dam/building/warehouse/warehouse) "mQj" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_east) "mQl" = ( @@ -51425,7 +51425,7 @@ /area/desert_dam/building/warehouse/loading) "mRd" = ( /obj/structure/window/framed/hangar, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) "mRe" = ( @@ -51486,7 +51486,7 @@ "mRU" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_east) "mRW" = ( @@ -51510,7 +51510,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "mSw" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/valley/valley_mining) @@ -51635,7 +51635,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) "mVF" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "mVI" = ( @@ -51746,7 +51746,7 @@ /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "mXf" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "mXg" = ( @@ -51833,7 +51833,7 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) "mZp" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_central_south) "mZA" = ( @@ -51911,7 +51911,7 @@ /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) "nbH" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_north) "nbM" = ( @@ -52190,7 +52190,7 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "nhm" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "nhp" = ( @@ -52453,7 +52453,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "nmL" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, @@ -52571,7 +52571,7 @@ /area/desert_dam/building/water_treatment_one/breakroom) "noV" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_central_north) "noW" = ( @@ -53087,7 +53087,7 @@ /area/desert_dam/exterior/valley/valley_cargo) "nyG" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "nyM" = ( @@ -53113,7 +53113,7 @@ /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "nzz" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) "nzD" = ( @@ -53125,7 +53125,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) "nzP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_mining) "nAc" = ( @@ -53224,7 +53224,7 @@ /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "nCm" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_south) "nCs" = ( @@ -53710,7 +53710,7 @@ /area/desert_dam/building/water_treatment_one/hallway) "nLS" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "nLT" = ( @@ -54088,7 +54088,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) "nSG" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "nSH" = ( @@ -54298,7 +54298,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "nVA" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_south) "nVD" = ( @@ -54522,7 +54522,7 @@ /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) "nZP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_south) "oab" = ( @@ -54614,7 +54614,7 @@ /area/desert_dam/building/security/lobby) "obt" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "oby" = ( @@ -54931,7 +54931,7 @@ "ohb" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "ohd" = ( @@ -54980,7 +54980,7 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "ohL" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "ohM" = ( @@ -55055,7 +55055,7 @@ /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ojk" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_central_north) "ojt" = ( @@ -55068,7 +55068,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "ojy" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "ojN" = ( @@ -55312,7 +55312,7 @@ /area/desert_dam/building/security/armory) "opP" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "opU" = ( @@ -55535,7 +55535,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "oul" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_north) "ouq" = ( @@ -55654,7 +55654,7 @@ }, /area/desert_dam/interior/dam_interior/disposals) "owL" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) "owP" = ( @@ -55930,7 +55930,7 @@ /area/desert_dam/building/dorms/restroom) "oBX" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "oBY" = ( @@ -56018,7 +56018,7 @@ /area/desert_dam/interior/dam_interior/central_tunnel) "oDO" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "oDW" = ( @@ -56152,7 +56152,7 @@ /area/desert_dam/building/water_treatment_two/hallway) "oGi" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_north) "oGG" = ( @@ -56321,7 +56321,7 @@ /area/desert_dam/exterior/valley/valley_wilderness) "oJB" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) "oJH" = ( @@ -56427,7 +56427,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) "oLO" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/closed/wall/hangar{ name = "reinforced metal wall" }, @@ -56655,7 +56655,7 @@ /area/desert_dam/exterior/valley/valley_security) "oQR" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "oQU" = ( @@ -56779,12 +56779,12 @@ /turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/lower_stairwell) "oSW" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_south) "oTb" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "oTf" = ( @@ -56926,7 +56926,7 @@ /area/desert_dam/building/warehouse/loading) "oWg" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "oWs" = ( @@ -57191,7 +57191,7 @@ /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_labs) "pbQ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_central_north) "pbT" = ( @@ -57278,7 +57278,7 @@ "pdK" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "pdU" = ( @@ -57314,7 +57314,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_security) "pev" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) @@ -57416,7 +57416,7 @@ /area/desert_dam/exterior/landing_pad_one) "pgV" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "pgX" = ( @@ -57628,7 +57628,7 @@ "plm" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "plp" = ( @@ -57701,7 +57701,7 @@ /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "pmu" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_south) "pmK" = ( @@ -57823,7 +57823,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "ppl" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "ppr" = ( @@ -57930,7 +57930,7 @@ /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) "psd" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, @@ -57948,7 +57948,7 @@ /turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "psh" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "psl" = ( @@ -58351,7 +58351,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_one) "pzZ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_A_1" }, @@ -58583,7 +58583,7 @@ /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "pEi" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "pEv" = ( @@ -58719,7 +58719,7 @@ /turf/open/floor/wood, /area/desert_dam/building/medical/break_room) "pGM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_north) @@ -58753,7 +58753,7 @@ /area/desert_dam/building/water_treatment_one/overlook) "pHx" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "pHy" = ( @@ -59232,7 +59232,7 @@ "pPM" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "pQk" = ( @@ -59265,7 +59265,7 @@ /area/desert_dam/building/water_treatment_one/floodgate_control) "pQQ" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "pQR" = ( @@ -59478,7 +59478,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "pUH" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "pUP" = ( @@ -59547,7 +59547,7 @@ /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/equipment) "pVU" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_south) "pVV" = ( @@ -59717,7 +59717,7 @@ }, /area/desert_dam/interior/dam_interior/garage) "pZO" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "pZZ" = ( @@ -60031,7 +60031,7 @@ }, /area/desert_dam/interior/dam_interior/south_tunnel_research) "qfQ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -60060,7 +60060,7 @@ /area/desert_dam/interior/dam_interior/hanger) "qgf" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "qgi" = ( @@ -60131,7 +60131,7 @@ /area/desert_dam/building/water_treatment_two/purification) "qia" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) "qic" = ( @@ -60144,7 +60144,7 @@ /area/shuttle/trijent_shuttle/omega) "qiy" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "qiz" = ( @@ -60223,7 +60223,7 @@ "qkz" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "qkD" = ( @@ -60354,7 +60354,7 @@ /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "qnu" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_north) "qnx" = ( @@ -60412,7 +60412,7 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "qoD" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_central_south) "qoG" = ( @@ -60458,7 +60458,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "qpd" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "qpg" = ( @@ -60701,7 +60701,7 @@ /turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "qug" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "quh" = ( @@ -60966,7 +60966,7 @@ /turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "qyz" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) "qyE" = ( @@ -61092,7 +61092,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "qAq" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "qAC" = ( @@ -61120,7 +61120,7 @@ /area/desert_dam/exterior/valley/valley_security) "qAR" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "qAS" = ( @@ -61167,7 +61167,7 @@ /turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/CE_office) "qBG" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) "qBT" = ( @@ -61304,7 +61304,7 @@ "qDM" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "qDP" = ( @@ -61591,7 +61591,7 @@ /area/desert_dam/building/medical/upper_hallway) "qJq" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "qJs" = ( @@ -61638,7 +61638,7 @@ /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/interior/caves/east_caves) "qKn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/west, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) @@ -61758,7 +61758,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "qMs" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_one/purification) "qMt" = ( @@ -61767,7 +61767,7 @@ /area/desert_dam/building/dorms/hallway_northwing) "qMx" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "qMy" = ( @@ -61805,7 +61805,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "qNg" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "qNo" = ( @@ -61949,7 +61949,7 @@ "qPY" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "qQk" = ( @@ -61976,7 +61976,7 @@ /turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "qQE" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "qQJ" = ( @@ -62094,7 +62094,7 @@ /area/desert_dam/building/administration/hallway) "qTn" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "qTq" = ( @@ -62179,7 +62179,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "qUL" = ( @@ -62590,7 +62590,7 @@ /area/desert_dam/interior/dam_interior/hangar_storage) "rco" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "rcq" = ( @@ -62686,7 +62686,7 @@ /area/desert_dam/building/administration/office) "ree" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "rek" = ( @@ -63373,7 +63373,7 @@ /turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "rtj" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_central_south) "rtp" = ( @@ -63479,7 +63479,7 @@ /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/central_tunnel) "rvN" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "rvP" = ( @@ -63513,7 +63513,7 @@ /turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "rwz" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) @@ -63706,7 +63706,7 @@ /turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/western_dam_cave) "rAw" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "rAy" = ( @@ -63827,7 +63827,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) "rCz" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "rCF" = ( @@ -63906,7 +63906,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "rEg" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_north) "rEh" = ( @@ -63943,7 +63943,7 @@ /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "rED" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "rEF" = ( @@ -64111,7 +64111,7 @@ /area/desert_dam/building/cafeteria/cold_room) "rIe" = ( /obj/structure/filtration/machine_96x96/distribution, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, @@ -64123,7 +64123,7 @@ /area/desert_dam/building/water_treatment_one/control_room) "rIt" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) "rIv" = ( @@ -64156,7 +64156,7 @@ /area/desert_dam/interior/dam_interior/central_tunnel) "rIS" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "rIU" = ( @@ -64277,7 +64277,7 @@ /turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "rLu" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "rLB" = ( @@ -64296,7 +64296,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "rLX" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "rMa" = ( @@ -64421,7 +64421,7 @@ /area/desert_dam/building/administration/lobby) "rQp" = ( /obj/structure/window/framed/hangar, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) "rQT" = ( @@ -64480,7 +64480,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_security) "rRS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_central_north) "rRY" = ( @@ -64569,7 +64569,7 @@ /turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "rUH" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/north, /area/desert_dam/exterior/river/riverside_east) "rUS" = ( @@ -64733,7 +64733,7 @@ "rYc" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "rYg" = ( @@ -64769,7 +64769,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "rYy" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_south) "rYz" = ( @@ -64817,7 +64817,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "rZM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/filtrationside/northwest, /area/desert_dam/exterior/valley/valley_medical) "rZS" = ( @@ -64996,7 +64996,7 @@ "scG" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "scQ" = ( @@ -65080,7 +65080,7 @@ /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) "sdP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_north) "sdT" = ( @@ -65104,7 +65104,7 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "sej" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "sek" = ( @@ -65168,7 +65168,7 @@ /turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "sfe" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "sfj" = ( @@ -65184,7 +65184,7 @@ /turf/open/floor/almayer_hull, /area/desert_dam/building/water_treatment_one/hallway) "sfx" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "sfy" = ( @@ -65279,7 +65279,7 @@ /turf/open/floor/white, /area/desert_dam/building/medical/garage) "shz" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "shB" = ( @@ -65310,7 +65310,7 @@ /area/desert_dam/building/warehouse/loading) "siW" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_south) "sjd" = ( @@ -65429,7 +65429,7 @@ /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/upper_hallway) "slo" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "slr" = ( @@ -65515,7 +65515,7 @@ /turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "smO" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_south) "smZ" = ( @@ -65697,7 +65697,7 @@ /turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/upper_hallway) "sqp" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/coagulation/icon8_8, /area/desert_dam/building/water_treatment_one/purification) "squ" = ( @@ -65944,7 +65944,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "stM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_central_north) "stN" = ( @@ -66237,7 +66237,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "szk" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) "szl" = ( @@ -66310,7 +66310,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "sAj" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "sAk" = ( @@ -66376,7 +66376,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) "sBa" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "sBj" = ( @@ -66387,7 +66387,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "sBE" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "sBW" = ( @@ -66592,12 +66592,12 @@ /turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "sFU" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_south) "sGe" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "sGf" = ( @@ -66654,13 +66654,13 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_security) "sHh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_north) "sHn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, @@ -67292,7 +67292,7 @@ icon_state = "lower_2"; layer = 2 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_two/purification) "sUI" = ( @@ -67402,7 +67402,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "sWY" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "sXc" = ( @@ -67537,7 +67537,7 @@ /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/landing_pad_two) "taE" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_south) "taP" = ( @@ -68063,8 +68063,8 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "tkz" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "tkD" = ( @@ -68175,7 +68175,7 @@ "tnG" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "tnJ" = ( @@ -68228,7 +68228,7 @@ /area/desert_dam/exterior/valley/valley_security) "toA" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "toC" = ( @@ -68275,7 +68275,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "tpp" = ( @@ -68565,7 +68565,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) "ttZ" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_hydro) "tup" = ( @@ -68845,7 +68845,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) "tBk" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) @@ -68866,7 +68866,7 @@ /obj/structure/filtration/collector_pipes{ icon_state = "lower_1" }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_one/purification) "tCh" = ( @@ -68895,7 +68895,7 @@ /turf/open/floor/wood, /area/desert_dam/building/medical/break_room) "tCS" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) "tCV" = ( @@ -68964,7 +68964,7 @@ /area/desert_dam/interior/dam_interior/north_tunnel) "tDK" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_central_south) "tDP" = ( @@ -69514,7 +69514,7 @@ /turf/closed/wall/r_wall, /area/desert_dam/building/medical/north_wing_hallway) "tNc" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "tNd" = ( @@ -69585,7 +69585,7 @@ /area/desert_dam/exterior/valley/valley_labs) "tNX" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_south) "tOi" = ( @@ -69598,7 +69598,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "tOo" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) "tOu" = ( @@ -69703,7 +69703,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "tQt" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "tQO" = ( @@ -70084,7 +70084,7 @@ /area/desert_dam/interior/dam_interior/south_tunnel_research) "tYS" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) @@ -70138,7 +70138,7 @@ /turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/stairwell) "tZJ" = ( -/obj/effect/blocker/toxic_water/Group_1/delay, +/obj/effect/blocker/water/toxic/Group_1/delay, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "tZM" = ( @@ -70214,7 +70214,7 @@ /turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) "ubn" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/closed/wall/r_wall/bunker/floodgate, /area/desert_dam/exterior/river/riverside_south) "ubx" = ( @@ -70380,7 +70380,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "uex" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "ueE" = ( @@ -70586,7 +70586,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "uhQ" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "uhZ" = ( @@ -70783,7 +70783,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "ulp" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "ulu" = ( @@ -70803,7 +70803,7 @@ /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/marshals_office) "ulD" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_south) "ulO" = ( @@ -70823,7 +70823,7 @@ /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_loading) "umb" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_south) "umo" = ( @@ -70840,7 +70840,7 @@ /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river_mouth/southern) "ums" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "umP" = ( @@ -70870,7 +70870,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_workshop) "unS" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) "unV" = ( @@ -71236,7 +71236,7 @@ /area/desert_dam/exterior/landing_pad_one) "utY" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "utZ" = ( @@ -71337,7 +71337,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "uwj" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_south) "uwH" = ( @@ -71523,11 +71523,11 @@ /turf/open/floor/carpet/edge, /area/desert_dam/building/administration/meetingrooom) "uAJ" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_south) "uAN" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, @@ -71774,7 +71774,7 @@ /area/desert_dam/interior/dam_interior/workshop) "uFC" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_south) "uFD" = ( @@ -71992,7 +71992,7 @@ icon_state = "lower_2"; layer = 2 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) "uKt" = ( @@ -72024,7 +72024,7 @@ /turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) "uLj" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "uLl" = ( @@ -72482,7 +72482,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "uVU" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_north) "uWn" = ( @@ -72629,7 +72629,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "uYu" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "uYw" = ( @@ -72951,7 +72951,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "vfR" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_north) "vgb" = ( @@ -73227,7 +73227,7 @@ /area/desert_dam/exterior/valley/valley_mining) "vlo" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "vlp" = ( @@ -73453,7 +73453,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_backup) "vpl" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_north) "vpq" = ( @@ -73566,7 +73566,7 @@ /area/desert_dam/exterior/valley/valley_medical) "vrC" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "vrD" = ( @@ -74456,7 +74456,7 @@ "vKe" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "vKv" = ( @@ -74514,7 +74514,7 @@ /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) "vLm" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) "vLn" = ( @@ -74609,7 +74609,7 @@ /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/valley/valley_labs) "vMX" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_south) "vNl" = ( @@ -74977,7 +74977,7 @@ /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "vVd" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/machinery/dispersal_initiator{ id = "filter 2" }, @@ -75199,7 +75199,7 @@ /area/desert_dam/exterior/valley/valley_security) "wat" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "wau" = ( @@ -75338,7 +75338,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) "wdt" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/river/riverside_central_south) "wdJ" = ( @@ -75564,7 +75564,7 @@ /turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/west_wing_hallway) "wil" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "wim" = ( @@ -75941,7 +75941,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "woM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) "wpe" = ( @@ -76110,7 +76110,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_biology) "wsO" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "wsQ" = ( @@ -76324,7 +76324,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "wxO" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_central_north) "wxQ" = ( @@ -76421,7 +76421,7 @@ /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "wzn" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_central_south) "wzx" = ( @@ -76457,7 +76457,7 @@ /area/desert_dam/interior/dam_interior/north_tunnel) "wAi" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_south) "wAq" = ( @@ -76718,7 +76718,7 @@ /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "wHl" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) "wHp" = ( @@ -76751,7 +76751,7 @@ /turf/open/floor/carpet/edge/north, /area/desert_dam/building/administration/meetingrooom) "wIU" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "wIW" = ( @@ -76792,7 +76792,7 @@ /area/desert_dam/exterior/valley/valley_medical) "wJE" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "wJI" = ( @@ -77039,7 +77039,7 @@ /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) "wPi" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/trash/boonie, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) @@ -77457,7 +77457,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "wXG" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "wXJ" = ( @@ -77685,7 +77685,7 @@ /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "xcv" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/effect/landmark/nightmare{ insert_tag = "quarantine" }, @@ -77765,7 +77765,7 @@ "xeo" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "xeu" = ( @@ -77865,7 +77865,7 @@ /area/desert_dam/building/warehouse/warehouse) "xfW" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) "xgr" = ( @@ -77957,7 +77957,7 @@ /area/desert_dam/interior/caves/east_caves) "xir" = ( /obj/structure/disposalpipe/segment, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "xiE" = ( @@ -78078,7 +78078,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "xkz" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "xkB" = ( @@ -78532,12 +78532,12 @@ /turf/open/floor/white, /area/desert_dam/building/medical/emergency_room) "xtI" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "xtM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_east) "xtU" = ( @@ -78683,7 +78683,7 @@ "xwS" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "xwZ" = ( @@ -78743,11 +78743,11 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "xya" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/floor/coagulation/icon8_8, /area/desert_dam/building/water_treatment_two/purification) "xye" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_north) "xym" = ( @@ -78832,7 +78832,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "xzZ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "xAe" = ( @@ -78958,7 +78958,7 @@ /area/desert_dam/building/security/northern_hallway) "xCt" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) "xCv" = ( @@ -79065,7 +79065,7 @@ /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "xEH" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "xEL" = ( @@ -79251,7 +79251,7 @@ }, /area/shuttle/trijent_shuttle/lz1) "xIS" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_north) "xIV" = ( @@ -79705,7 +79705,7 @@ /turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_wilderness) "xRP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/closed/wall/hangar{ name = "reinforced metal wall" }, @@ -79739,7 +79739,7 @@ /area/desert_dam/interior/dam_interior/primary_tool_storage) "xSo" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "xSp" = ( @@ -79999,7 +79999,7 @@ /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_crashsite) "xYi" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "xYs" = ( @@ -80311,7 +80311,7 @@ /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "yeK" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) "yeM" = ( @@ -80734,7 +80734,7 @@ /area/desert_dam/building/medical/west_wing_hallway) "ymh" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_central_south) diff --git a/maps/map_files/DesertDam/southbridge/10.civhold.dmm b/maps/map_files/DesertDam/southbridge/10.civhold.dmm index 4c1e9cbf5fee..c369a399ee11 100644 --- a/maps/map_files/DesertDam/southbridge/10.civhold.dmm +++ b/maps/map_files/DesertDam/southbridge/10.civhold.dmm @@ -162,7 +162,7 @@ /area/desert_dam/exterior/valley/valley_medical) "hD" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "hI" = ( @@ -180,7 +180,7 @@ /area/desert_dam/exterior/valley/valley_medical) "hZ" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "iw" = ( @@ -247,7 +247,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "lf" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) "lk" = ( @@ -270,7 +270,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "no" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "np" = ( @@ -304,15 +304,15 @@ /area/desert_dam/exterior/valley/valley_medical) "pv" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "pT" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "pY" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "qn" = ( @@ -331,7 +331,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "qQ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/north, /area/desert_dam/exterior/river/riverside_east) "rc" = ( @@ -380,11 +380,11 @@ /area/desert_dam/exterior/valley/south_valley_dam) "so" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "sv" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) "sA" = ( @@ -420,7 +420,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "ub" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "uf" = ( @@ -451,11 +451,11 @@ /area/desert_dam/exterior/valley/valley_medical) "wa" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "wd" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "wk" = ( @@ -465,7 +465,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "xh" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, @@ -473,7 +473,7 @@ /area/desert_dam/exterior/river/riverside_east) "xj" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "xq" = ( @@ -527,7 +527,7 @@ /area/desert_dam/exterior/valley/valley_medical) "AO" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "AT" = ( @@ -537,7 +537,7 @@ "Bf" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/south_valley_dam) "Bk" = ( @@ -548,7 +548,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "Bn" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/disposalpipe/segment, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -568,7 +568,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "BF" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_east) "BJ" = ( @@ -578,12 +578,12 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "BQ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "BU" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "Cg" = ( @@ -592,12 +592,12 @@ /area/desert_dam/exterior/valley/valley_medical) "Ch" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "Cn" = ( /obj/structure/disposalpipe/segment, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "Co" = ( @@ -624,7 +624,7 @@ /turf/closed/wall/r_wall, /area/desert_dam/exterior/valley/south_valley_dam) "EE" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "EK" = ( @@ -660,7 +660,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "GH" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "GU" = ( @@ -695,7 +695,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "Io" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "Iw" = ( @@ -708,7 +708,7 @@ /area/desert_dam/exterior/river/riverside_east) "IL" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) "IN" = ( @@ -739,15 +739,15 @@ /area/desert_dam/exterior/valley/south_valley_dam) "Kr" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "KF" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "Lh" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "Li" = ( @@ -755,7 +755,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) "Lq" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "Lv" = ( @@ -766,7 +766,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "LF" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "LW" = ( @@ -782,7 +782,7 @@ /area/desert_dam/exterior/valley/valley_medical) "LZ" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "Me" = ( @@ -911,7 +911,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "PJ" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "PQ" = ( @@ -943,11 +943,11 @@ /area/desert_dam/exterior/valley/valley_medical) "Qw" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "QP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "QX" = ( @@ -978,7 +978,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "Sc" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "Sy" = ( @@ -1018,13 +1018,13 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "UD" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "UK" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "UP" = ( @@ -1043,7 +1043,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "Wr" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "Wx" = ( @@ -1084,12 +1084,12 @@ /area/desert_dam/exterior/river/riverside_east) "XD" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "Yd" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "Yn" = ( @@ -1104,12 +1104,12 @@ /area/desert_dam/exterior/valley/valley_medical) "YP" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "YT" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "Zr" = ( diff --git a/maps/map_files/DesertDam/southbridge/10.corphold.dmm b/maps/map_files/DesertDam/southbridge/10.corphold.dmm index 00ad18ac9880..17fcea23f661 100644 --- a/maps/map_files/DesertDam/southbridge/10.corphold.dmm +++ b/maps/map_files/DesertDam/southbridge/10.corphold.dmm @@ -46,7 +46,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "ah" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/largecrate/random/mini/ammo{ pixel_y = 8; pixel_x = 4 @@ -85,7 +85,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "bG" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "bS" = ( @@ -113,7 +113,7 @@ /area/desert_dam/exterior/valley/valley_medical) "cw" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "dg" = ( @@ -124,7 +124,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "dh" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "dI" = ( @@ -153,7 +153,7 @@ /area/desert_dam/exterior/valley/valley_medical) "en" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "et" = ( @@ -174,12 +174,12 @@ /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "fP" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "hj" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "hl" = ( @@ -202,7 +202,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "hV" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "ic" = ( @@ -289,7 +289,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "lf" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "lj" = ( @@ -314,12 +314,12 @@ /area/desert_dam/exterior/valley/valley_medical) "my" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "mB" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "mC" = ( @@ -384,7 +384,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "pu" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "pE" = ( @@ -429,7 +429,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "qA" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, @@ -458,7 +458,7 @@ /area/desert_dam/exterior/valley/valley_medical) "sh" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "sj" = ( @@ -494,11 +494,11 @@ /area/desert_dam/exterior/valley/south_valley_dam) "ti" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "tF" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "ug" = ( @@ -507,7 +507,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "uL" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "uM" = ( @@ -523,7 +523,7 @@ /area/desert_dam/exterior/valley/valley_medical) "uX" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "vb" = ( @@ -544,7 +544,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "vl" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "vq" = ( @@ -568,11 +568,11 @@ /area/desert_dam/exterior/valley/valley_medical) "vV" = ( /obj/structure/disposalpipe/segment, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "wb" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) "wj" = ( @@ -595,11 +595,11 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/south_valley_dam) "xd" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/north, /area/desert_dam/exterior/river/riverside_east) "xg" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "xh" = ( @@ -655,7 +655,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "AB" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "AN" = ( @@ -676,7 +676,7 @@ /area/desert_dam/exterior/valley/valley_medical) "Bp" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "BC" = ( @@ -686,7 +686,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_medical) "BV" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "Ce" = ( @@ -718,19 +718,19 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "Dt" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "DE" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "DV" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/south_valley_dam) "EU" = ( @@ -740,7 +740,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/south_valley_dam) "EW" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/ammo_casing/bullet, /turf/open/gm/river/desert/shallow_edge/covered/north, /area/desert_dam/exterior/river/riverside_east) @@ -762,7 +762,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "FB" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/disposalpipe/segment, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -823,7 +823,7 @@ /area/desert_dam/exterior/valley/valley_medical) "Im" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "It" = ( @@ -832,7 +832,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "Iw" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "IA" = ( @@ -851,7 +851,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "JU" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_east) "JW" = ( @@ -915,7 +915,7 @@ /area/desert_dam/exterior/valley/valley_medical) "KQ" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "Lm" = ( @@ -963,11 +963,11 @@ /area/desert_dam/exterior/valley/south_valley_dam) "Nb" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "Nm" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "NN" = ( @@ -1002,7 +1002,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "Ow" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "OG" = ( @@ -1018,7 +1018,7 @@ /area/desert_dam/exterior/valley/valley_medical) "Pc" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) "Pe" = ( @@ -1057,7 +1057,7 @@ /area/desert_dam/exterior/valley/valley_medical) "PT" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "PW" = ( @@ -1083,7 +1083,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "QY" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "RN" = ( @@ -1103,7 +1103,7 @@ /area/desert_dam/exterior/river/riverside_east) "Tf" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "TD" = ( @@ -1129,7 +1129,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) "Uj" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) "UI" = ( @@ -1204,7 +1204,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "Xf" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "XS" = ( @@ -1218,7 +1218,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "YF" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "YJ" = ( @@ -1232,7 +1232,7 @@ /area/desert_dam/exterior/valley/valley_medical) "Zp" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "Zz" = ( diff --git a/maps/map_files/DesertDam/sprinkles/25.green-new-bridge.dmm b/maps/map_files/DesertDam/sprinkles/25.green-new-bridge.dmm index e0bdedde13a1..3ecd5a89fb7f 100644 --- a/maps/map_files/DesertDam/sprinkles/25.green-new-bridge.dmm +++ b/maps/map_files/DesertDam/sprinkles/25.green-new-bridge.dmm @@ -6,21 +6,21 @@ "ab" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "ac" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "ad" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "ae" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "af" = ( @@ -43,21 +43,21 @@ /area/desert_dam/exterior/rock) "ak" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "al" = ( /obj/structure/platform_decoration/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "am" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "an" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "ao" = ( @@ -90,148 +90,148 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "at" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "au" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "av" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aw" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) "ax" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_east) "ay" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "az" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aA" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "aB" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aC" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aD" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/covered, /area/desert_dam/exterior/river/riverside_east) "aE" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "aF" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "aG" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aH" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "aI" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aJ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "aK" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "aL" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) "aM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aN" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "aO" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "aP" = ( /obj/structure/platform_decoration/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aQ" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aR" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_east) "aS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/platform/metal/almayer, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aT" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aU" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aV" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) "aW" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "aX" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "aY" = ( diff --git a/maps/map_files/DesertDam/sprinkles/25.purple-new-bridge.dmm b/maps/map_files/DesertDam/sprinkles/25.purple-new-bridge.dmm index 6a03035768f2..9ec5083b81e3 100644 --- a/maps/map_files/DesertDam/sprinkles/25.purple-new-bridge.dmm +++ b/maps/map_files/DesertDam/sprinkles/25.purple-new-bridge.dmm @@ -23,7 +23,7 @@ "af" = ( /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "ag" = ( @@ -61,7 +61,7 @@ /area/desert_dam/exterior/valley/valley_medical) "an" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "ao" = ( @@ -98,17 +98,17 @@ /area/desert_dam/exterior/valley/valley_medical) "av" = ( /obj/structure/platform_decoration/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aw" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "ax" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "ay" = ( @@ -125,11 +125,11 @@ /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aB" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aC" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "aD" = ( @@ -140,73 +140,73 @@ /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aF" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "aG" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "aH" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "aI" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "aJ" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) "aK" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aL" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "aM" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform_decoration/metal/almayer, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aN" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aO" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "aP" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aQ" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aR" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aS" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) "aT" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/covered, /area/desert_dam/exterior/river/riverside_south) "aU" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/northeast, /area/desert_dam/exterior/river/riverside_south) "aV" = ( @@ -216,7 +216,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "aX" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) "aY" = ( @@ -229,56 +229,56 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_medical) "ba" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/north, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "bb" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "bc" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "bd" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "be" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "bf" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "bg" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bh" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bi" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_south) "bj" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bk" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) @@ -286,52 +286,52 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/river/riverside_south) "bm" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bn" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_south) "bo" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bp" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/east, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) "bq" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "br" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bs" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/east, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "bt" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bu" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bv" = ( /obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bw" = ( @@ -350,11 +350,11 @@ /area/desert_dam/exterior/valley/valley_cargo) "bA" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) "bB" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) "bC" = ( diff --git a/maps/map_files/DesertDam/sprinkles/30.nspa_cordon.dmm b/maps/map_files/DesertDam/sprinkles/30.nspa_cordon.dmm index c8ae4ff5f0d3..fe3403aecf35 100644 --- a/maps/map_files/DesertDam/sprinkles/30.nspa_cordon.dmm +++ b/maps/map_files/DesertDam/sprinkles/30.nspa_cordon.dmm @@ -29,11 +29,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "ex" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow/covered, /area/desert_dam/exterior/river/riverside_central_south) "eI" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/ammo_casing, /obj/item/ammo_casing, /turf/open/gm/river/desert/deep/covered, @@ -48,7 +48,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "fB" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/prop/hybrisa/vehicles/Meridian/Red/damage_2{ dir = 1; icon_state = "meridian_red_damage_2" @@ -66,23 +66,23 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "hD" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "jx" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/ammo_casing, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "kQ" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "mW" = ( @@ -119,7 +119,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "oI" = ( @@ -130,28 +130,28 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "pl" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ dir = 4 }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "pY" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/ammo_magazine/pistol/l54, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "qG" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "rl" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_south) "rQ" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "sa" = ( @@ -176,7 +176,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "uS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/tool/warning_cone{ pixel_x = -3; pixel_y = 8 @@ -186,7 +186,7 @@ "wb" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "wA" = ( @@ -221,7 +221,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "xM" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/item/tool/warning_cone{ pixel_x = 4; pixel_y = 9 @@ -235,12 +235,12 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "ys" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/effect/spawner/random/gun/cmb, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "zV" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/item/tool/warning_cone{ pixel_x = -2; pixel_y = 9 @@ -248,15 +248,15 @@ /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "Bq" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "BD" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow/covered, /area/desert_dam/exterior/river/riverside_central_south) "BM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "Ct" = ( @@ -272,7 +272,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "CL" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "Df" = ( @@ -283,11 +283,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "Dk" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "Dl" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) @@ -323,7 +323,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "Ha" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/item/tool/warning_cone{ pixel_x = 2; pixel_y = 3 @@ -332,7 +332,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "Im" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "Jl" = ( @@ -349,20 +349,20 @@ "JW" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "Ks" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "Lj" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "Lt" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "Ly" = ( @@ -380,7 +380,7 @@ "Mt" = ( /obj/structure/platform/metal/almayer/west, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "MJ" = ( @@ -390,7 +390,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "Np" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "NX" = ( @@ -431,7 +431,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "Pr" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ dir = 8; layer = 3 @@ -440,7 +440,7 @@ /area/desert_dam/exterior/river/riverside_central_south) "Pv" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "Qj" = ( @@ -451,14 +451,14 @@ /area/desert_dam/exterior/valley/south_valley_dam) "QF" = ( /obj/structure/platform/metal/almayer/east, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_south) "RM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ dir = 8; layer = 3 @@ -489,7 +489,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "Uw" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) "UI" = ( @@ -503,7 +503,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "UM" = ( -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_south) "UP" = ( @@ -517,11 +517,11 @@ "VS" = ( /obj/structure/platform/metal/almayer/east, /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/water/toxic/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "Wd" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ dir = 4 }, @@ -538,7 +538,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "Xg" = ( /obj/structure/platform/metal/almayer, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "XW" = ( @@ -570,7 +570,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /obj/item/tool/warning_cone{ pixel_x = 3; pixel_y = 6 @@ -579,7 +579,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "ZX" = ( /obj/structure/platform/metal/almayer/west, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) diff --git a/maps/map_files/DesertDam/standalone/quarantine.dmm b/maps/map_files/DesertDam/standalone/quarantine.dmm index 04d8b7e6a075..0329fae45c22 100644 --- a/maps/map_files/DesertDam/standalone/quarantine.dmm +++ b/maps/map_files/DesertDam/standalone/quarantine.dmm @@ -109,7 +109,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_medical) "cy" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "cG" = ( @@ -249,12 +249,12 @@ /area/desert_dam/exterior/valley/valley_medical) "gL" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "gP" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "gQ" = ( @@ -458,7 +458,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "qk" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_south) "ql" = ( @@ -476,7 +476,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "qM" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "qQ" = ( @@ -511,7 +511,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "rx" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "rA" = ( @@ -559,7 +559,7 @@ /area/desert_dam/exterior/valley/valley_medical) "tg" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_south) "tr" = ( @@ -695,7 +695,7 @@ /area/template_noop) "xO" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "xR" = ( @@ -721,7 +721,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "yC" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "yE" = ( @@ -772,7 +772,7 @@ /area/desert_dam/exterior/valley/valley_medical) "AW" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "BA" = ( @@ -790,7 +790,7 @@ /area/desert_dam/exterior/valley/valley_medical) "BU" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "Cb" = ( @@ -917,7 +917,7 @@ /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_medical) "Fy" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "FZ" = ( @@ -946,7 +946,7 @@ /area/desert_dam/exterior/valley/valley_medical) "GP" = ( /obj/structure/platform/metal/almayer/north, -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "GV" = ( @@ -1065,7 +1065,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "KJ" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "KM" = ( @@ -1234,7 +1234,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) "PP" = ( -/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/blocker/water/toxic/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "PY" = ( diff --git a/maps/map_files/Tyrargo_Rift/Tyrargo_Rift.dmm b/maps/map_files/Tyrargo_Rift/Tyrargo_Rift.dmm new file mode 100644 index 000000000000..196aa62960f7 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/Tyrargo_Rift.dmm @@ -0,0 +1,247143 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aab" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aac" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aad" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasket/carrots, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"aae" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasket, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aaf" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -5; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = 3; + pixel_x = 14 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/south_east, +/area/tyrargo/oob/outdoors) +"aag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/accessory/patch/army/armor, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aah" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/accessory/patch/army, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/head/beret/marine/commander/black/army, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aaj" = ( +/turf/open_space, +/area/tyrargo/oob) +"aak" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/security/ground) +"aal" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aam" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"aan" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/weapon/gun/rifle/m4ra/army/full{ + pixel_y = -6 + }, +/obj/item/weapon/gun/smg/m39/army/heap{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aao" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/sewer_treatment/upper) +"aap" = ( +/obj/item/prop{ + icon = 'icons/obj/structures/resources_64x64.dmi'; + icon_state = "node_off"; + bound_width = 64; + bound_height = 64; + layer = 6; + name = "High-Voltage Transformer"; + desc = "Civilian power transformer that was in the midst of being converted for military use. Could theortetically provide power to high-energy drain military structures. Currently impossible to repair." + }, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/oob) +"aaq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"aar" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4; + layer = 5.8 + }, +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"aas" = ( +/turf/open/asphalt/cement, +/area/tyrargo/oob) +"aat" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/storage/backpack/molle/army, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aau" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/security/ground) +"aav" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/market/ground) +"aaw" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/security/ground) +"aax" = ( +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"aay" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"aaz" = ( +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aaA" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/green4/west, +/area/tyrargo/indoors/market/ground) +"aaB" = ( +/turf/open/floor/strata/green4/east, +/area/tyrargo/indoors/market/ground) +"aaC" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/storage/backpack/molle/backpack/army, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aaD" = ( +/turf/open/floor/strata/green3/west, +/area/tyrargo/indoors/market/ground) +"aaE" = ( +/turf/open/floor/strata/green3/east, +/area/tyrargo/indoors/market/ground) +"aaF" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/oob/outdoors) +"aaG" = ( +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"aaH" = ( +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/security/ground) +"aaI" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"aaJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/shoes/marine/army/knife, +/obj/item/clothing/gloves/marine/army, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aaK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/security/ground) +"aaL" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"aaM" = ( +/turf/open/hybrisa/street/cement2, +/area/tyrargo/oob/outdoors) +"aaN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north_west) +"aaO" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"aaP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"aaQ" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"aaR" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"aaS" = ( +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"aaT" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/head/helmet/marine/rto/army/medic{ + pixel_y = 11 + }, +/obj/item/clothing/suit/storage/marine/medium/rto/army{ + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"aaU" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/engineering/ground) +"aaV" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/engineering/ground) +"aaW" = ( +/obj/structure/surface/rack, +/obj/item/engi_upgrade_kit, +/obj/structure/machinery/light/double, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/engineering/ground) +"aaX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aaY" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/tool_webbing/equipped, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/engineering/ground) +"aaZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"aba" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/weapon/gun/rifle/m41a/army/full, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"abb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"abc" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/droppouch, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/engineering/ground) +"abd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/security/ground) +"abe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"abf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"abg" = ( +/obj/structure/prop/vehicles/tank/longstreet/ballistic/destroyed{ + pixel_y = -33; + pixel_x = -48; + dir = 1; + layer = 2.8 + }, +/obj/structure/prop/vehicles/tank/longstreet/secondary/glauncher/destroyed{ + dir = 8; + pixel_y = -36; + pixel_x = -54; + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"abh" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb/destroyed{ + pixel_y = -68; + dir = 8; + pixel_x = -15; + layer = 3.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"abi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"abj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/engineering/ground) +"abk" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4; + layer = 5.5 + }, +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25; + layer = 5.6 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"abl" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/empty, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/engineering/ground) +"abm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/engineering/ground) +"abn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/engineering/ground) +"abo" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"abp" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/engineering/ground) +"abq" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolkit/full, +/obj/item/storage/toolkit/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/engineering/ground) +"abr" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/ground) +"abs" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = -31 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/engineering/ground) +"abt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"abu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"abv" = ( +/obj/item/paper/crumpled{ + pixel_y = -3 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/engineering/ground) +"abw" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"abx" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"aby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"abz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + autoname = 1; + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"abA" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 6; + pixel_y = 10; + layer = 2.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"abB" = ( +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/engineering/ground) +"abC" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"abD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 7; + pixel_x = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 6; + pixel_y = -2; + layer = 2.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"abE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"abF" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abG" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/indoors/engineering/ground) +"abH" = ( +/turf/open/floor/corsat/green, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"abI" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/indoors/engineering/ground) +"abJ" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"abL" = ( +/obj/structure/prop/turret{ + dir = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/oob/outdoors) +"abM" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/ground) +"abN" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/item/stool{ + pixel_x = -1; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abO" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/ground) +"abP" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"abQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abR" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/engineering/ground) +"abT" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2) +"abU" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = -28; + light_range = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/underground/museum_carpark) +"abV" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"abW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + pixel_x = -1 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"abX" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_y = 5 + }, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"abZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"aca" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/engineering/ground) +"acb" = ( +/obj/structure/stairs/multiz/up, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"acc" = ( +/obj/structure/largecrate/empty/case{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"acd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"ace" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_ground) +"acf" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/indoors/engineering/ground) +"acg" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/engineering/ground) +"ach" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/engineering/ground) +"aci" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/engineering/ground) +"acj" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/engineering/ground) +"ack" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/strata_right, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/ground) +"acl" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "22" + }, +/area/tyrargo/outdoors/colony_streets/east) +"acm" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "23" + }, +/area/tyrargo/outdoors/colony_streets/east) +"acn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"aco" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"acp" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/stairs/multiz/up, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"acq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"acr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/ground) +"acs" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "29" + }, +/area/tyrargo/outdoors/colony_streets/east) +"act" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/security/ground) +"acu" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"acv" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "34" + }, +/area/tyrargo/outdoors/colony_streets/east) +"acw" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "35" + }, +/area/tyrargo/outdoors/colony_streets/east) +"acx" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"acy" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"acz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/ground) +"acA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/engineering/ground) +"acB" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_left_cap, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"acC" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_right_cap, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"acD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"acE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/indoors/engineering/ground) +"acF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/engineering/ground) +"acG" = ( +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/north_ground) +"acH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/engineering/ground) +"acI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/ground) +"acJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"acK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/welding, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"acL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/engineering/ground) +"acM" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"acN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/engineering/ground) +"acO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/terminal{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/ground) +"acP" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/engineering/ground) +"acQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"acR" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -2 + }, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"acS" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/north_east) +"acT" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"acU" = ( +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"acV" = ( +/turf/open/floor/almayer/tcomms, +/area/tyrargo/indoors/engineering/ground) +"acW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"acX" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"acY" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"acZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob) +"ada" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"adb" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"adc" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"add" = ( +/obj/structure/prop/hybrisa/vehicles/car_pileup{ + pixel_x = -23; + pixel_y = 25; + explo_proof = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"ade" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"adf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/museum_carpark) +"adg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/stairs{ + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_y = 32; + pixel_x = 14; + name = "\improper Up semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something going upwards." + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/museum_carpark) +"adh" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"adi" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"adj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"adk" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"adl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/south_upper) +"adm" = ( +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"adn" = ( +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"ado" = ( +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"adp" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall/upper/external) +"adq" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/head/helmet/marine/fluff/steelpoint{ + layer = 3.04; + desc = "A next generation combat helmet intended to be paired with the M4-X armor. The full faced helmet provides complete light ballistic-resistant protection alongside enchanced acid resistance."; + armor_bio = 40; + armor_bullet = 25; + armor_internaldamage = 30; + armor_melee = 25 + }, +/obj/item/clothing/under/marine/fluff/steelpoint{ + layer = 3.01 + }, +/obj/item/clothing/suit/storage/marine/fluff/steelpoint{ + desc = "A next generation body armor system intended for Marines fighting against xenomorphs, the system is coated in a unique acid resistant polymer coating, as well as enhanced ballistics protection."; + armor_bio = 40; + armor_melee = 25; + armor_internaldamage = 30; + armor_bullet = 25 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/oob/outdoors) +"adr" = ( +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"ads" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"adt" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"adu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"adv" = ( +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"adw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"adx" = ( +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"ady" = ( +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"adz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/south_ground) +"adA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"adB" = ( +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central) +"adC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"adD" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"adE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/upper) +"adF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2) +"adG" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"adH" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"adI" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"adJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"adK" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/admin/upper) +"adL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper/external) +"adM" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"adN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"adO" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"adP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"adQ" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"adR" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"adS" = ( +/turf/open/floor/corsat/green/southeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"adT" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/north) +"adU" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"adV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"adW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"adX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"adY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/comms/ground) +"adZ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"aea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"aeb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"aec" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/west, +/area/tyrargo/indoors/engineering/upper) +"aed" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner, +/area/tyrargo/indoors/engineering/upper) +"aee" = ( +/obj/effect/decal/siding{ + pixel_y = -8 + }, +/obj/effect/decal/siding{ + pixel_y = -8; + pixel_x = -10 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"aef" = ( +/obj/effect/decal/siding{ + pixel_y = -8 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"aeg" = ( +/obj/effect/decal/siding{ + pixel_y = -8 + }, +/obj/effect/decal/siding{ + pixel_y = -8; + pixel_x = 8 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"aeh" = ( +/turf/open/floor/prison/yellowcorner, +/area/tyrargo/indoors/engineering/upper) +"aei" = ( +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_x = -9 + }, +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_y = -8; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"aej" = ( +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_x = -9 + }, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"aek" = ( +/obj/structure/platform/metal/strata, +/turf/open_space, +/area/tyrargo/indoors/sewer_treatment/upper) +"ael" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper) +"aem" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "10" + }, +/area/tyrargo/indoors/saipan) +"aen" = ( +/obj/structure/stairs, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"aeo" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "18" + }, +/area/tyrargo/indoors/saipan) +"aep" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"aeq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/engineering/upper) +"aer" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "24" + }, +/area/tyrargo/indoors/saipan) +"aes" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"aet" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"aeu" = ( +/obj/structure/platform/metal/strata/north, +/turf/open_space, +/area/tyrargo/indoors/engineering/upper) +"aev" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/strata_right, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper) +"aew" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "30" + }, +/area/tyrargo/indoors/saipan) +"aex" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator/synthetic{ + pixel_y = 2 + }, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"aey" = ( +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_x = -9 + }, +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_y = 10; + pixel_x = -9 + }, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"aez" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/engineering/upper) +"aeA" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "36" + }, +/area/tyrargo/indoors/saipan) +"aeB" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"aeC" = ( +/obj/effect/decal/siding{ + icon_state = "siding2"; + pixel_y = 9; + pixel_x = -9 + }, +/obj/effect/decal/siding{ + icon_state = "siding2"; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"aeD" = ( +/obj/effect/decal/siding{ + icon_state = "siding2"; + pixel_y = 9 + }, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"aeE" = ( +/obj/effect/decal/siding{ + icon_state = "siding2"; + pixel_y = 9 + }, +/obj/effect/decal/siding{ + icon_state = "siding2"; + pixel_y = 9; + pixel_x = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"aeF" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "42" + }, +/area/tyrargo/indoors/saipan) +"aeG" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "43" + }, +/area/tyrargo/indoors/saipan) +"aeH" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "47" + }, +/area/tyrargo/indoors/saipan) +"aeI" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "48" + }, +/area/tyrargo/indoors/saipan) +"aeJ" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "50" + }, +/area/tyrargo/indoors/saipan) +"aeK" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/tyrargo/indoors/saipan) +"aeL" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/tyrargo/indoors/saipan) +"aeM" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "51" + }, +/area/tyrargo/indoors/saipan) +"aeN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/admin/ground) +"aeO" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "52" + }, +/area/tyrargo/indoors/saipan) +"aeP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/saipan) +"aeQ" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "56" + }, +/area/tyrargo/indoors/saipan) +"aeR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"aeS" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "59" + }, +/area/tyrargo/indoors/saipan) +"aeT" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "62" + }, +/area/tyrargo/indoors/saipan) +"aeU" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/saipan) +"aeV" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "67" + }, +/area/tyrargo/indoors/saipan) +"aeW" = ( +/turf/open/shuttle/plating, +/area/tyrargo/indoors/saipan) +"aeX" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "72" + }, +/area/tyrargo/indoors/saipan) +"aeY" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/tyrargo/indoors/saipan) +"aeZ" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/tyrargo/indoors/saipan) +"afa" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "75" + }, +/area/tyrargo/indoors/saipan) +"afb" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "76" + }, +/area/tyrargo/indoors/saipan) +"afc" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "77" + }, +/area/tyrargo/indoors/saipan) +"afd" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/saipan) +"afe" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/plating, +/area/tyrargo/indoors/saipan) +"aff" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "81" + }, +/area/tyrargo/indoors/saipan) +"afg" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "82" + }, +/area/tyrargo/indoors/saipan) +"afh" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "83" + }, +/area/tyrargo/indoors/saipan) +"afi" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "86" + }, +/area/tyrargo/indoors/saipan) +"afj" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"afk" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "89" + }, +/area/tyrargo/indoors/saipan) +"afl" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "92" + }, +/area/tyrargo/indoors/saipan) +"afm" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "94" + }, +/area/tyrargo/indoors/saipan) +"afn" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "96" + }, +/area/tyrargo/indoors/saipan) +"afo" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "97" + }, +/area/tyrargo/indoors/saipan) +"afp" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "98" + }, +/area/tyrargo/indoors/saipan) +"afq" = ( +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"afr" = ( +/turf/open/floor/strata/orange_edge/north, +/area/tyrargo/indoors/admin/upper) +"afs" = ( +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"aft" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"afu" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"afv" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark2{ + layer = 2; + explo_proof = 1; + pixel_y = -13 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"afw" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"afx" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"afy" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/lower) +"afz" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"afA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob/outdoors) +"afB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/army_staging) +"afC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"afD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"afE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"afF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"afG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/largecrate/random, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"afH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/largecrate/random/barrel/black, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"afI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/largecrate/random/secure, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"afJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/outdoors/outskirts_road/central) +"afK" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"afL" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_west) +"afM" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 8; + pixel_y = -83 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 15; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"afN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"afO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"afP" = ( +/obj/structure/cargo_container/uscm/borodino/left, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"afQ" = ( +/obj/structure/cargo_container/uscm/borodino/mid, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"afR" = ( +/obj/structure/cargo_container/uscm/right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"afS" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"afT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 10; + pixel_y = -9 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"afU" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -11; + pixel_y = 7; + layer = 2.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"afV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"afW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/outdoors/outskirts_road/central) +"afX" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"afY" = ( +/obj/structure/closet/crate/ammo{ + name = "heap munitions crate"; + desc = "Crate filled with heap ammo. You know what to do with it." + }, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/m4ra/heap, +/obj/item/ammo_magazine/rifle/m4ra/heap, +/obj/item/ammo_magazine/rifle/m4ra/heap, +/obj/item/ammo_magazine/rifle/m4ra/heap, +/obj/item/ammo_magazine/smg/m39/heap, +/obj/item/ammo_magazine/smg/m39/heap, +/obj/item/ammo_magazine/smg/m39/heap, +/obj/item/ammo_magazine/smg/m39/heap, +/obj/item/ammo_magazine/smg/m39/heap, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"afZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"aga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agb" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agc" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"age" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"agf" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"agg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/item/ammo_magazine/smartgun, +/obj/item/ammo_magazine/smartgun, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"agh" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/security/upper) +"agi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = 2 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/outdoors/outskirts_road/central) +"agj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = "us_army_ert"; + explo_proof = 1; + needs_power = 0; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"agk" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = "us_army_ert"; + explo_proof = 1; + needs_power = 0; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"agl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -2; + pixel_x = 3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agm" = ( +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agn" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ago" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agp" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"agq" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = "us_army_ert"; + explo_proof = 1; + needs_power = 0; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"agr" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/oob) +"ags" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_y = 10 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"agv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = 32 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double{ + layer = 2.9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agx" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"agz" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/reagent_container/food/drinks/flask/marine/army, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"agC" = ( +/obj/structure/largecrate/random/case/small{ + layer = 2.8; + pixel_y = -5 + }, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agD" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null; + pixel_x = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"agE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"agF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 7; + layer = 2.1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agG" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agH" = ( +/obj/item/trash/uscm_mre, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"agI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -7; + layer = 2.9 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"agK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"agL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = -2; + pixel_y = 6; + layer = 2.1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = 1; + layer = 3.01 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agN" = ( +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agO" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"agP" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 8; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central) +"agQ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 4; + pixel_y = -5; + layer = 2.1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agR" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 1; + anchored = 1; + dir = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -12; + pixel_y = -1; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 3; + pixel_y = -9; + layer = 2.9 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"agT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"agW" = ( +/obj/item/prop/colony/used_flare, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"agX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"agZ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"aha" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahb" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahe" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ahi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahj" = ( +/obj/item/toy/plush/farwa, +/turf/open/floor/prison/darkbrown2/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"aho" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/obj/item/storage/briefcase{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"aht" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahv" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahx" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Pink, +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10; + layer = 4.2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_y = 2 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/northeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/welding, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahE" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/stack/sheet/glass/large_stack, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahG" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahJ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahK" = ( +/obj/item/stack/sheet/cardboard, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"ahO" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = -28; + light_range = 1 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_corner/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahP" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"ahT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahU" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahW" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/lower) +"ahX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"ahY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ahZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aia" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aib" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aic" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aid" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/obj/structure/sign/safety/north{ + pixel_x = -24; + name = "\improper Up semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something going upwards." + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"aie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aif" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aig" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aih" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"aii" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aij" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"aik" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"ail" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/engineering/ground) +"aim" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"ain" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"aio" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"aip" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/stripe_red/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"air" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/south_west) +"ais" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"ait" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aiu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiv" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiz" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"aiA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"aiC" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aiD" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/tyrargo/indoors/apartment/north_ground) +"aiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiF" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiG" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"aiJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"aiK" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiL" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiN" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"aiP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"aiR" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiS" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/metal/stripe_red/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiU" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiV" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/metal/stripe_red/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiW" = ( +/obj/item/clothing/suit/storage/hazardvest/sanitation, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aiY" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"aiZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"aja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/turf/open/floor/hybrisa/metal/stripe_red/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"aje" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"ajf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"ajg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajh" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"aji" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajj" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajk" = ( +/turf/open/floor/corsat/green/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ajl" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajm" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/stripe_red, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajo" = ( +/obj/item/stack/rods, +/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"ajq" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajr" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/hybrisa/metal/stripe_red, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajt" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/metal/stripe_red, +/area/tyrargo/indoors/sewer_treatment/ground) +"aju" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/hybrisa/misc/trash_bag_full_prop, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajz" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajA" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ajB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajC" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajD" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -20 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact"; + pixel_x = -17 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajG" = ( +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 6 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajK" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajM" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajP" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajX" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajY" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ajZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"aka" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"akb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"akc" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -10 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"akd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"ake" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"akf" = ( +/obj/structure/girder, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_y = -7 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/south_west) +"akg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"akh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"aki" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"akj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -6; + pixel_x = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"akk" = ( +/turf/open/floor/corsat/green/northeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"akl" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"akm" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/obj/structure/machinery/vending/cola/research, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"akn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = -9; + layer = 2.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ako" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/west) +"akp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"akq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"akr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/west) +"aks" = ( +/obj/structure/largecrate/empty/case/double, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/west) +"akt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/structure/largecrate/empty/secure, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/west) +"aku" = ( +/obj/structure/largecrate/empty/case, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/west) +"akv" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/engineering/ground) +"akw" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Shell{ + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"akx" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/landing_zone_2/no_tunnel) +"aky" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/oob) +"akz" = ( +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/obj/structure/sign/safety/north{ + pixel_x = -24; + name = "\improper Up semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something going upwards." + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"akA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"akB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"akC" = ( +/obj/structure/closet, +/obj/item/clothing/suit/storage/hazardvest/sanitation, +/obj/item/clothing/suit/hybrisa/sanitation_utility, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"akD" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler{ + layer = 6; + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"akE" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/item/reagent_container/glass/paint{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"akF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"akG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"akH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"akI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"akJ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"akK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"akL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"akM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 3; + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -12; + pixel_y = 11 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 3; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"akN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 12 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"akO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"akP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"akQ" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"akR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/security/ground) +"akS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"akT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"akU" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"akV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"akW" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"akX" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"akY" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"akZ" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"ala" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"alb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"alc" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"ald" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"ale" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"alf" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"alg" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"alh" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"ali" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"alj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner, +/area/tyrargo/indoors/sewer_treatment/upper) +"alk" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/sewer_treatment/upper) +"all" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"alm" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/sewer_treatment/upper) +"aln" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/museum_storage/ground) +"alo" = ( +/obj/structure/flora/wood/stick3, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"alp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"alq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"alr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"als" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_west) +"alt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"alu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/southwest, +/area/tyrargo/indoors/sewer_treatment/upper) +"alv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alx" = ( +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/colony_exterior/south_west) +"aly" = ( +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"alz" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"alA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/wood/trunk2, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_west) +"alB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/upper) +"alC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/upper) +"alD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"alE" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"alF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/colony_exterior/south_west) +"alI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"alM" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/power_sewer) +"alN" = ( +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/colony_exterior/south_west) +"alO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/engineering/upper) +"alP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"alQ" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"alR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"alS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/yellowcorner/east, +/area/tyrargo/indoors/engineering/upper) +"alT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"alU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/folding_barricade, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"alV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"alW" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel/med_small_stack, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"alX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"alY" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall) +"alZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ama" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"amb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"amc" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/north) +"amd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/yellowcorner/east, +/area/tyrargo/indoors/engineering/upper) +"ame" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/yellowcorner/north, +/area/tyrargo/indoors/engineering/upper) +"amf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/engineering/upper) +"amg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/engineering/upper) +"amh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"ami" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"amj" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/tyrargo/indoors/engineering/upper) +"amk" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"aml" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"amm" = ( +/obj/item/reagent_container/spray/hydro, +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"amn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"amo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"amp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/hybrisa/metal/zbrownfloor_full, +/area/tyrargo/indoors/sewer_treatment/ground) +"amq" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"amr" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/tyrargo/indoors/engineering/upper) +"ams" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"amt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/indoors/engineering/upper) +"amu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/engineering/upper) +"amv" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob/outdoors) +"amw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"amx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"amy" = ( +/obj/effect/decal/siding{ + pixel_y = -8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"amz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"amA" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"amB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/engineering/upper) +"amC" = ( +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_x = -9 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"amD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/engineering/upper) +"amE" = ( +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_x = -9 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"amF" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/upper) +"amG" = ( +/obj/effect/decal/siding{ + icon_state = "siding4"; + pixel_x = -9 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"amH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"amI" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/turf/open/floor/prison/yellowcorner/east, +/area/tyrargo/indoors/engineering/upper) +"amJ" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"amK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"amL" = ( +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/museum_carpark) +"amM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"amN" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"amO" = ( +/obj/structure/reagent_dispensers/tank/water, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/engineering/upper) +"amP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/engineering/upper) +"amQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/engineering/upper) +"amR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/engineering/upper) +"amS" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/engineering/upper) +"amT" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/engineering/upper) +"amU" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"amV" = ( +/obj/item/stack/barbed_wire, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"amW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"amX" = ( +/obj/effect/blocker/water, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti4{ + layer = 2.9 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"amY" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_west) +"amZ" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ana" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"anb" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anc" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"and" = ( +/turf/open/floor/corsat/blue/southeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ane" = ( +/turf/closed/wall/r_wall/bunker/floodgate, +/area/tyrargo/landing_zone_2) +"anf" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"ang" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "government_resin_upper" + }, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"anh" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"ani" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"anj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ank" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"anl" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"anm" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"ann" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/attachable/bipod{ + pixel_x = 12; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m4ra/custom/impact{ + pixel_x = 4; + pixel_y = 5; + current_rounds = 0 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"ano" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"anp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"anr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"ans" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"ant" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/structure/largecrate/random/barrel/green{ + layer = 2.97 + }, +/turf/open/floor/coagulation/icon7_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"anu" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anv" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"any" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"anz" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"anA" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"anB" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"anC" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"anD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anE" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"anF" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"anG" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_ground) +"anI" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anJ" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anK" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anL" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anM" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"anO" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"anP" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"anQ" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"anR" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/landmark/survivor_spawner/us_army_medic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"anS" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"anT" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"anU" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"anV" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/east) +"anW" = ( +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -27 + }, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"anX" = ( +/obj/item/prop{ + desc = "A manual, crew-operated mortar system intended to rain down 80mm goodness on anything it's aimed at. Uses an advanced targeting computer. This one has fired so many rounds the barrel is warped, leaving it non-functional"; + icon = 'icons/obj/structures/mortar.dmi'; + icon_state = "c_mortar_m402"; + name = "M402 mortar (non-functional)"; + dir = 8; + pixel_y = 18; + pixel_x = -14; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/west) +"anY" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"anZ" = ( +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"aoa" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"aob" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aoc" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"aod" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 8; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aoe" = ( +/obj/item/reagent_container/food/drinks/flask/marine/army, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aof" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/largecrate/supply/supplies/wy_emergency_food, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"aog" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 7; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aoh" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aoi" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aoj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aok" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/east) +"aol" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north_west) +"aom" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_y = -23 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/tyrargo/outdoors/colony_streets/north_west) +"aon" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoo" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 13; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aop" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aoq" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aor" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aos" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/no_tunnel) +"aot" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aou" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"aov" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 3; + pixel_y = 11 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 9; + pixel_y = -15 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aow" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/outskirts/east) +"aox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/outskirts/east) +"aoy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoz" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"aoA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + layer = 2.96; + pixel_y = -10 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aoE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -11; + pixel_y = -3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aoF" = ( +/obj/structure/stairs/multiz{ + dir = 4 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob) +"aoG" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/outskirts/east) +"aoH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_x = -14; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoN" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/item/stack/barbed_wire, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoO" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"aoP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + layer = 2.96; + pixel_y = -12 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -11; + pixel_y = -3 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/barbed_wire, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aoW" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aoX" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"aoY" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aoZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"apa" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"apb" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"apc" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"apd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"ape" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"apf" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"apg" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"aph" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"api" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"apj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"apk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = 14 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 23; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"apl" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/outskirts/east) +"apm" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/outskirts/east) +"apn" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"apo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"app" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/folding_barricade, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"apq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"apr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/barbed_wire, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aps" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = 4; + pixel_x = 1 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 9; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"apt" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = -23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/outskirts/east) +"apu" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 1; + pixel_y = -4; + pixel_x = -17 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"apv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"apw" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"apx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1/no_tunnel) +"apy" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"apz" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1/no_tunnel) +"apA" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"apB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/roof/hybrisa/signs/opensign2, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"apC" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + layer = 2.96; + pixel_y = -10 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"apD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/outskirts/east) +"apE" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_tunnel) +"apG" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/coagulation/icon0_5, +/area/tyrargo/indoors/sewer_treatment/lower) +"apH" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"apI" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apJ" = ( +/obj/item/storage/briefcase{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apK" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"apL" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -12; + pixel_y = -5; + layer = 2.8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"apM" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -10; + layer = 2.7; + pixel_x = 11 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -2; + dir = 1; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"apN" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"apO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/coagulation/icon1_1, +/area/tyrargo/indoors/sewer_treatment/lower) +"apP" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/device/radio, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"apS" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"apT" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -28; + pixel_y = 5; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apU" = ( +/obj/structure/flora/tree/tyrargo/tree_2, +/obj/structure/flora/tree/dead/tree_5{ + pixel_y = 6; + pixel_x = -26; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apV" = ( +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -6; + pixel_y = 12; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apW" = ( +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apX" = ( +/obj/item/ammo_casing/shell, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/colony_exterior/north_west) +"apZ" = ( +/obj/structure/reagent_dispensers/tank/fuel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"aqa" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/structure/prop/vehicles/tank/truck/alt/broken{ + dir = 4; + pixel_x = 32; + pixel_y = -25 + }, +/obj/item/hardpoint/locomotion/van_wheels{ + unacidable = 1 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqb" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqc" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqd" = ( +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqe" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/reagent_container/blood/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aqf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqg" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqh" = ( +/obj/item/ammo_casing/shell, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = 5 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar/red{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqk" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aql" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqm" = ( +/obj/effect/spawner/random/powercell, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/comms/ground) +"aqn" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/comms/ground) +"aqo" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/comms/ground) +"aqp" = ( +/obj/effect/spawner/random/tool{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqq" = ( +/obj/item/tool/screwdriver{ + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqr" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"aqs" = ( +/obj/structure/flora/tree/dead/tree_5{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 5.6 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqt" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plating_striped/north, +/area/tyrargo/indoors/comms/ground) +"aqu" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + layer = 2.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqw" = ( +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"aqx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"aqA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/clothing/head/helmet/marine/rto/army{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"aqB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"aqC" = ( +/obj/structure/flora/tree/dead/tree_2{ + layer = 5.5 + }, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_y = 7; + pixel_x = -5; + layer = 5.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqD" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/comms/ground) +"aqE" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqF" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"aqG" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/curtain/red, +/obj/structure/barricade/metal{ + dir = 8; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/tyrargo/indoors/comms/ground) +"aqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aqI" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aqJ" = ( +/obj/structure/flora/tree/dead/tree_1{ + pixel_y = -2; + layer = 5.2 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -6; + pixel_y = 12; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/indoors/comms/ground) +"aqL" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/comms/ground) +"aqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"aqN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqO" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqP" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqQ" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/comms/ground) +"aqR" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"aqT" = ( +/obj/structure/flora/tree/tyrargo, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqU" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"aqV" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aqW" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"aqX" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating, +/area/tyrargo/indoors/security/ground) +"aqY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/comms/ground) +"aqZ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"ara" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"arb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"arc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"ard" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"are" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -2; + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"arf" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "heyst_under" + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"arg" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"arh" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ari" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"arj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north_east) +"ark" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north) +"arl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "A primary armament cannon magazine"; + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/USCM/vehicles.dmi'; + icon_state = "ltbcannon_0"; + name = "LTB Cannon Magazine"; + pixel_x = 16; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"arm" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/item/prop{ + desc = "A primary armament cannon magazine"; + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/USCM/vehicles.dmi'; + icon_state = "ltbcannon_0"; + name = "LTB Cannon Magazine"; + pixel_x = 9; + pixel_y = -11 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"arn" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"aro" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = 15; + pixel_y = -6 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north) +"arp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = 18; + pixel_y = -7 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north) +"arq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = 3 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north) +"arr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"ars" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_west) +"art" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aru" = ( +/obj/structure/prop/vehicles/tank/longstreet/ballistic/damaged{ + dir = 4; + pixel_y = -17; + pixel_x = -14 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob) +"arv" = ( +/obj/structure/prop/vehicles/tank/longstreet/secondary/flamer{ + dir = 1; + pixel_x = -63; + layer = 3.5; + pixel_y = -7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob) +"arw" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret/damaged{ + dir = 1; + pixel_y = -52; + pixel_x = -50 + }, +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb{ + dir = 1; + pixel_x = -50; + pixel_y = -23 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob) +"arx" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = -23; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/oob) +"ary" = ( +/obj/structure/prop/vehicles/tank/longstreet/module/artillerymod{ + dir = 4; + pixel_y = -81; + pixel_x = -78 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt, +/area/tyrargo/oob) +"arz" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/asphalt, +/area/tyrargo/oob) +"arA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/oob) +"arB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"arC" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/turret{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"arD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/oob) +"arE" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -10; + layer = 2.7; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/oob) +"arF" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.9; + pixel_y = -17; + pixel_x = -3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/oob) +"arG" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -7 + }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/oob) +"arH" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.9; + pixel_y = -17; + pixel_x = -3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -10; + layer = 2.7; + pixel_x = 11 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/oob) +"arI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/turret{ + dir = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/oob) +"arJ" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"arK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/oob) +"arL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/asphalt/cement, +/area/tyrargo/oob/outdoors) +"arM" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"arN" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 2; + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_streets/east) +"arO" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"arP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"arQ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"arR" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"arS" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"arT" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"arU" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"arV" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"arW" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"arX" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"arY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"arZ" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"asa" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"asb" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"asc" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"asd" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"ase" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"asf" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/underground/oob_area) +"asg" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"ash" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"asi" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"asj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"ask" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"asl" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"asm" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"asn" = ( +/obj/structure/flora/bush/snow{ + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"aso" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/southwest, +/area/tyrargo/underground/oob_area) +"asp" = ( +/turf/open/floor/corsat/blue/northeast, +/area/tyrargo/underground/oob_area) +"asq" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"asr" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -40; + pixel_y = 22; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"ass" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"ast" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"asu" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/landing_zone_2) +"asv" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/landing_zone_2) +"asw" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"asx" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"asy" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + pixel_x = -31 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"asz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"asA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/no_tunnel) +"asB" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"asC" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"asD" = ( +/obj/structure/largecrate/empty/secure, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"asE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"asF" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"asG" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"asH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"asI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"asJ" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"asK" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"asL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"asM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"asN" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/engineering/upper/external) +"asO" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"asP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"asQ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.1 + }, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/engineering/upper/external) +"asR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"asS" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"asT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"asU" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.97; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + layer = 2.96; + pixel_y = -12 + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = 5; + pixel_y = -24 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 1; + anchored = 1 + }, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/engineering/upper/external) +"asV" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -11; + pixel_y = -3 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.97; + pixel_y = 4 + }, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/engineering/upper/external) +"asW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/bar/upper/external) +"asX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/bar/upper/external) +"asY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/bar/upper/external) +"asZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/bar/upper/external) +"ata" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/bar/upper/external) +"atb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/gararge/upper/external) +"atc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_east) +"atd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ate" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"atf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"atg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ath" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ati" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"atj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"atk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"atl" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"atm" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/west) +"atn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ato" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_east) +"atp" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"atq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_east) +"atr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_east) +"ats" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"att" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob) +"atu" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + explo_proof = 0; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/bar/upper/external) +"atv" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"atw" = ( +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"atx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"aty" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_x = 1; + pixel_y = -19 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"atz" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"atA" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 5; + pixel_y = 8; + dir = 4; + layer = 4.1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"atB" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"atC" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"atD" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/oob/outdoors) +"atE" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 4; + pixel_y = -5; + layer = 2.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"atF" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 7; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -10; + pixel_y = 3; + layer = 2.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tower, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"atG" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -4; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 9; + pixel_y = 3; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"atH" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_x = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 5; + pixel_x = 16 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"atI" = ( +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"atJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/power_substation) +"atK" = ( +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"atL" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + health = 999999; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999; + explo_proof = 1; + acid_damage = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_streets/east) +"atM" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"atN" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -2; + pixel_y = 5; + layer = 2.9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"atO" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"atP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"atQ" = ( +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"atR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"atS" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999; + explo_proof = 1; + acid_damage = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + health = 999999; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_streets/east) +"atT" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = 5; + layer = 2.9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 15; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -4; + pixel_y = -12; + layer = 2.8 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 3; + pixel_y = 8; + dir = 8; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"atU" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 1; + pixel_y = -10; + pixel_x = -21 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"atV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"atW" = ( +/obj/structure/prop/vehicles/tank/longstreet/ballistic/damaged{ + pixel_x = 15; + pixel_y = 13 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + health = 999999; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_streets/east) +"atX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"atY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/colony_floodlight/traffic{ + dir = 8; + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"atZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aua" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/outdoors/colony_streets/east) +"aub" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"auc" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + health = 999999; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_streets/east) +"aud" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aue" = ( +/obj/structure/flag/plantable/ua{ + pixel_y = 17; + pixel_x = 1 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"auf" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret/damaged{ + dir = 8; + pixel_y = -42; + pixel_x = -14 + }, +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb{ + dir = 8; + pixel_x = -46; + pixel_y = -42 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aug" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3, +/turf/open/floor/almayer/plating, +/area/tyrargo/oob) +"auh" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aui" = ( +/obj/structure/shuttle/part/dropship3/transparent/nose_center, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"auj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/south_east) +"auk" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aul" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -4; + pixel_y = -3; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 15; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = 5; + layer = 2.9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"aum" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/east) +"aun" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + health = 999999; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_streets/east) +"auo" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee{ + dir = 8; + pixel_y = -23 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aup" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 3; + pixel_y = 1 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"auq" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -1; + pixel_x = 15 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aur" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 3; + pixel_y = 1; + layer = 3.0 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"aus" = ( +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/south_east) +"aut" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = -14; + layer = 2.98 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"auu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"auv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"auw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"aux" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"auy" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/truck/broken{ + dir = 8; + pixel_y = -28 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"auz" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/north_east) +"auA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"auB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"auC" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/north_east) +"auD" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"auE" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"auF" = ( +/obj/effect/decal/siding, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"auG" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = -12 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/bed/roller, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"auH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"auI" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/north_east) +"auJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"auK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"auL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"auM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"auN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"auO" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"auP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"auQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"auR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"auS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"auT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"auU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"auV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"auW" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"auX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"auY" = ( +/obj/structure/tent/big, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"auZ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -1; + pixel_y = -2 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 1; + pixel_y = 1; + layer = 2.8 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"ava" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -4; + pixel_x = -10 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avb" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"avc" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/south_west) +"avd" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"ave" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avg" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avh" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"avi" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"avj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/mob/living/simple_animal/small/mouse/rat/gray, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"avk" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"avl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"avm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"avn" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avp" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avq" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"avt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/storage/belt/marine/ar10, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"avu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/crate/green, +/obj/item/storage/box/mre, +/obj/item/storage/box/mre, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"avv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/item/stack/barbed_wire, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"avy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"avz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"avA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"avC" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"avD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"avF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"avG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -32 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"avH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"avI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"avJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"avK" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"avL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 12 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"avM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avN" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avO" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"avP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"avQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"avR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"avS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"avT" = ( +/obj/structure/largecrate{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"avU" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"avV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"avW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"avX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"avY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"avZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"awa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"awb" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north_east) +"awc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"awd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"awe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"awf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"awg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"awh" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"awi" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"awj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"awk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"awl" = ( +/obj/structure/flora/bush/ausbushes/var3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"awm" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"awn" = ( +/turf/open/floor/almayer/plating_stripedcorner/west, +/area/tyrargo/landing_zone_2) +"awo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"awp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"awq" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_y = 14; + pixel_x = -14 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"awr" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = 5; + layer = 5.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"aws" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"awt" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_east) +"awu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"awv" = ( +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open_space, +/area/tyrargo/indoors/sewer_treatment/upper) +"aww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge/north, +/area/tyrargo/indoors/admin/upper) +"awx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"awy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = 9; + pixel_y = 42 + }, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awA" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"awB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awC" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"awD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awF" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"awG" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"awH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"awI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"awJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awL" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/security/ground) +"awO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"awP" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awQ" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"awR" = ( +/turf/open/floor/strata/green4, +/area/tyrargo/indoors/market/ground) +"awS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"awU" = ( +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"awV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awW" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"awX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awY" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"awZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"axa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"axb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"axc" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/admin/upper) +"axd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"axe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"axf" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/admin/upper) +"axg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"axh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/machinery/colony_floodlight/traffic/alt{ + pixel_x = 4; + pixel_y = 12; + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/south_west) +"axi" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"axj" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"axk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"axl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"axm" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_west) +"axn" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"axo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"axp" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"axq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"axr" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"axs" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"axt" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"axu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"axv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"axw" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/south_east) +"axx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Cop, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"axy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"axz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 4; + pixel_y = 12; + pixel_x = 6 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_east) +"axA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"axB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"axC" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"axD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/west) +"axE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"axF" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"axG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"axH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -9; + layer = 2.98 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"axI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/stack/barbed_wire, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/east) +"axJ" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"axK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"axL" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"axM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/tyrargo/indoors/security/ground) +"axN" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"axO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"axP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"axQ" = ( +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"axR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/tyrargo/indoors/security/ground) +"axS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"axT" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"axU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/tyrargo/indoors/security/ground) +"axV" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"axW" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"axX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"axY" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/mortar_shell/incendiary{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -28; + pixel_x = -32 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/west) +"axZ" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aya" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/tcomms, +/area/tyrargo/indoors/engineering/ground) +"ayb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"ayc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"ayd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aye" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 5; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayf" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ayg" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"ayh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"ayi" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ayj" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ayk" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"ayl" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "tyrargo_carpark_south"; + name = "\improper Barrier"; + vehicle_resistant = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aym" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/north_upper) +"ayn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"ayo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ayp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/east) +"ayq" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ayr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"ays" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"ayt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"ayu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayv" = ( +/obj/structure/sign/safety/south{ + pixel_y = -32; + pixel_x = 14; + name = "\improper Down semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something downwards." + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/ground) +"ayw" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"ayx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/east) +"ayz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/east) +"ayA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Meridian/Cop, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayG" = ( +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"ayH" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"ayI" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayJ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/apc/med/destroyed{ + pixel_x = -31 + }, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayK" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayN" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ayO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayP" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayQ" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ayR" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayS" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayT" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ayU" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayV" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayW" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayX" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ayY" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"ayZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"aza" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"azb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north_east) +"azc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/tank/truck/alt{ + dir = 1; + pixel_y = -1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north_east) +"azd" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/closet/bodybag{ + pixel_x = 2; + pixel_y = 24 + }, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"aze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"azf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"azg" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"azh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"azi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"azj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/bed/roller, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"azl" = ( +/obj/structure/prop/tyrargo/large_tents/medical{ + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azm" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azn" = ( +/obj/structure/prop/vehicles/tank/truck/alt{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_x = -14; + pixel_y = -2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azo" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azp" = ( +/obj/structure/closet/bodybag{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azq" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/closet/bodybag{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"azs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"azt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/north_east) +"azu" = ( +/obj/structure/filtration/machine_96x96/sedimentation{ + layer = 5 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"azv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"azw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/medical{ + dir = 4; + pixel_y = -45; + pixel_x = -3 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azy" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"azz" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/closet/bodybag{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"azA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azB" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 26 + }, +/obj/structure/closet/bodybag{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"azD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"azE" = ( +/obj/structure/sign/safety/south{ + pixel_y = 32; + pixel_x = 14; + name = "\improper Down semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something downwards." + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/ground) +"azF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"azG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/admin/ground) +"azH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/admin/ground) +"azI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"azJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"azK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azL" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"azN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"azO" = ( +/obj/structure/bed/bedroll{ + dir = 9; + layer = 4; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"azP" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13; + pixel_x = -17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"azQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/medical/lifesaver, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"azS" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azT" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/admin/ground) +"azU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"azV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azX" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/admin/ground) +"azY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"azZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAa" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aAc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aAd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAe" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAf" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAg" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAi" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/admin/ground) +"aAj" = ( +/obj/structure/prop/vehicles/aircraft/vtol/damaged{ + dir = 1; + pixel_y = -33; + pixel_x = -33 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"aAk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aAm" = ( +/obj/structure/bed/bedroll{ + dir = 8; + pixel_x = 14; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aAn" = ( +/obj/item/stack/medical/ointment{ + pixel_x = 4; + pixel_y = 3; + amount = 2 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aAo" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aAp" = ( +/obj/structure/bed/bedroll{ + dir = 5; + pixel_y = 6 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aAq" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison/blue/southeast, +/area/tyrargo/indoors/admin/ground) +"aAr" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"aAt" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/admin/ground) +"aAu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAx" = ( +/obj/item/trash/cheesie, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 8; + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAz" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAD" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aAF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAG" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/southwest, +/area/tyrargo/indoors/admin/ground) +"aAI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/admin/ground) +"aAJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/yellow/southeast, +/area/tyrargo/indoors/admin/ground) +"aAK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAM" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"aAO" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"aAP" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/prison/yellow/northeast, +/area/tyrargo/indoors/admin/ground) +"aAQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/structure/closet/bodybag{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"aAR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"aAS" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aAT" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/admin/ground) +"aAU" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aAV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/market/ground) +"aAW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/admin/ground) +"aAX" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"aAY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"aAZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/admin/ground) +"aBa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/admin/ground) +"aBc" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aBd" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"aBe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/admin/ground) +"aBf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/admin/ground) +"aBg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"aBi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/buritto, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aBj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aBk" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aBl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aBm" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aBn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"aBo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/admin/ground) +"aBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aBq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBr" = ( +/obj/structure/largecrate{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aBs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 9; + layer = 3.0; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 14 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aBx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aBy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"aBz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aBA" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBD" = ( +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/admin/ground) +"aBG" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_y = 4 + }, +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/defibrillator{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aBI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"aBJ" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/admin/ground) +"aBK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"aBL" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"aBM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green{ + pixel_x = 3 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"aBN" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/admin/ground) +"aBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 6; + pixel_y = 15 + }, +/turf/open/floor/prison/darkred2, +/area/tyrargo/indoors/admin/ground) +"aBP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/green/northwest, +/area/tyrargo/indoors/admin/ground) +"aBQ" = ( +/obj/structure/largecrate, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aBR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/admin/ground) +"aBS" = ( +/obj/item/stack/sheet/metal, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/admin/ground) +"aBT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/admin/ground) +"aBU" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green/northeast, +/area/tyrargo/indoors/admin/ground) +"aBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"aBW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBX" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aBZ" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCa" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aCb" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aCc" = ( +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/ointment{ + pixel_x = 4; + pixel_y = 3; + amount = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCe" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCf" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCg" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"aCh" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tray, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCl" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"aCn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/folding_barricade, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/ar10, +/obj/item/ammo_casing/bullet, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCr" = ( +/obj/item/prop/colony/used_flare, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/device/defibrillator/compact{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"aCu" = ( +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCx" = ( +/obj/structure/bed/bedroll{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCy" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCA" = ( +/obj/structure/tent/med, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCB" = ( +/obj/structure/bed/bedroll{ + dir = 9; + layer = 3.0; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"aCC" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCD" = ( +/obj/item/reagent_container/blood/empty, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"aCE" = ( +/obj/item/ammo_casing/bullet, +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"aCF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/storage/surg_vest/drop_green/equipped, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"aCH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCI" = ( +/obj/effect/decal/siding, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/engineering/ground) +"aCJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCK" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/optable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCN" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCP" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 9; + layer = 4; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aCR" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"aCS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aCT" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"aCU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/security/ground) +"aCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aCW" = ( +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aCX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/southeast, +/area/tyrargo/indoors/admin/upper) +"aCY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"aCZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"aDa" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"aDb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDe" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"aDg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/east, +/area/tyrargo/indoors/admin/upper) +"aDh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"aDl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"aDm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/red/east, +/area/tyrargo/indoors/admin/upper) +"aDn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"aDo" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"aDp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/north, +/area/tyrargo/indoors/admin/upper) +"aDq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/north, +/area/tyrargo/indoors/engineering/upper) +"aDr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDs" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDu" = ( +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/tool/pen/blue{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDv" = ( +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/paper, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/tool/screwdriver/tactical{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDF" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"aDG" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"aDH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDJ" = ( +/obj/structure/machinery/big_computers/computerblack/computer5, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDL" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + pixel_y = 28 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDM" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDN" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"aDO" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 29 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/oob) +"aDP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/big_computers/computerblack/computer5{ + density = 0; + pixel_y = 25 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"aDS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + pixel_y = -2; + pixel_x = 32 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDU" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -10; + pixel_x = -11 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"aDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 5; + pixel_y = -3; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDY" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -6; + layer = 3.1 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aDZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/admin/upper) +"aEa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/admin/upper) +"aEb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 3; + layer = 3.1; + pixel_y = 12 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aEc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = -4; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aEd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 6; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aEe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/admin/upper) +"aEf" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"aEg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"aEh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/admin/upper) +"aEi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/admin/upper) +"aEj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/outskirts_road/central) +"aEk" = ( +/turf/open/gm/river/desert/shallow, +/area/tyrargo/outdoors/outskirts/river) +"aEl" = ( +/turf/closed/wall/r_wall/bunker/floodgate, +/area/tyrargo/outdoors/outskirts/river) +"aEm" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aEn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aEp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/south_east) +"aEq" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aEr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEu" = ( +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"aEw" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/security/ground) +"aEx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/largecrate/random/case{ + pixel_y = 12 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"aEy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/marine/mp5, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/ground) +"aEz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/ground) +"aEA" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/m15, +/obj/item/explosive/grenade/high_explosive/m15, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/ground) +"aEB" = ( +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aEC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aED" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aEE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aEF" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 11 + }, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/black, +/obj/item/trash/tray, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEH" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 19; + pixel_y = -7; + layer = 2.8 + }, +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_upper) +"aEI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/mob/living/simple_animal/small/mouse/rat/brown, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aEJ" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/security/ground) +"aEK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp5/mp5a5, +/obj/item/weapon/gun/smg/mp5/mp5a5, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/security/ground) +"aEL" = ( +/obj/structure/surface/rack, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32; + light_color = "#850000"; + light_on = 1; + light_range = 1 + }, +/obj/item/weapon/gun/smg/mp5/mp5a5, +/obj/item/weapon/gun/smg/mp5/mp5a5, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/security/ground) +"aEM" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEN" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/tyrargo/indoors/security/ground) +"aEP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/marhsalls, +/area/tyrargo/indoors/security/ground) +"aEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/strata/green4, +/area/tyrargo/indoors/market/ground) +"aER" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasket, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"aES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aEU" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrackempty, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 6; + pixel_x = 9 + }, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aEV" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrackempty, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aEW" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrackempty, +/obj/item/storage/box/donkpockets{ + pixel_x = 8 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -10; + pixel_y = 5 + }, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aEX" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/trash/tray, +/obj/structure/pipes/vents/pump_hybrisa, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aEY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aEZ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/kitchen/utensil/pfork, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aFa" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/security/ground) +"aFb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = 7; + pixel_y = -28 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = -31 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/market/ground) +"aFe" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/green4, +/area/tyrargo/indoors/market/ground) +"aFf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green3/north, +/area/tyrargo/indoors/market/ground) +"aFg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/green3/north, +/area/tyrargo/indoors/market/ground) +"aFh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/strata/green4/north, +/area/tyrargo/indoors/market/ground) +"aFi" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/market/ground) +"aFj" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -2; + pixel_y = -14 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"aFk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/turf/open/floor/strata/green3/west, +/area/tyrargo/indoors/market/ground) +"aFl" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/poppypretzel, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"aFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aFn" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/pill/teabag{ + pixel_y = 11; + pixel_x = 9 + }, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aFo" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aFp" = ( +/obj/structure/surface/table/reinforced/cloth, +/turf/open/floor/strata/green4/east, +/area/tyrargo/indoors/market/ground) +"aFq" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -9; + pixel_x = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_west) +"aFr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aFs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/market/ground) +"aFt" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/sausage, +/obj/item/reagent_container/food/snacks/sausage, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"aFu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aFv" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/darkred2/southwest, +/area/tyrargo/indoors/security/ground) +"aFw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 21; + pixel_x = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFx" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori1_black"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFy" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori2_black"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFz" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori3_black"; + pixel_y = 12 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFB" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/storage/box/eggplant, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"aFC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/strata/green3/east, +/area/tyrargo/indoors/market/ground) +"aFD" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aFE" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aFF" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/sliceable/carrotcake, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aFG" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/sliceable/flatdough, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aFH" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/sliceable/cheesecake, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"aFI" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/sliceable/tofubread, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"aFJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/blackfull/west, +/area/tyrargo/indoors/security/ground) +"aFK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_x = -6 + }, +/turf/open/floor/prison/darkred2/southeast, +/area/tyrargo/indoors/security/ground) +"aFM" = ( +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/ground) +"aFN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8; + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/tyrargo/indoors/security/ground) +"aFO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/turf/open/floor/strata/green4/north, +/area/tyrargo/indoors/market/ground) +"aFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/green3/north, +/area/tyrargo/indoors/market/ground) +"aFQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/green3/north, +/area/tyrargo/indoors/market/ground) +"aFR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/coffin/woodencrate, +/obj/item/reagent_container/food/snacks/sliceable/carrotcake, +/obj/item/reagent_container/food/snacks/sliceable/carrotcake, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/turf/open/floor/strata/green4/north, +/area/tyrargo/indoors/market/ground) +"aFS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/tool/pen/blue{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"aFT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"aFU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/south_east) +"aFV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"aFW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -19; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"aFX" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"aFY" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 4; + pixel_y = -14 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/largecrate/random{ + pixel_y = 27; + layer = 3.1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aFZ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/structure/prop/vehicles/tank/humvee{ + dir = 1; + pixel_x = -18; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aGf" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/east, +/area/tyrargo/indoors/security/ground) +"aGh" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"aGi" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGk" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGm" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGn" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/storage/beer_pack{ + pixel_y = -7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGp" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/sliceable/tofubread, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGq" = ( +/obj/structure/largecrate/random, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGr" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6; + pixel_x = -4 + }, +/turf/open/floor/prison/darkred2/northeast, +/area/tyrargo/indoors/security/ground) +"aGt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/security/ground) +"aGu" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"aGv" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGw" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGx" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGz" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGA" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGB" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGC" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGD" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/obj/item/ammo_magazine/smg/mp5{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGE" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/hybrisa/vehicles/car_pileup{ + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/WeylandYutani{ + icon_state = "meridian_wy_damage_5"; + health = 250; + layer = 6; + dir = 8; + pixel_x = 13; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGF" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/truck{ + dir = 4; + pixel_y = -23 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGG" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGH" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGI" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGJ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGK" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGN" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGO" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGP" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGQ" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGR" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGS" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGU" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGV" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Black{ + icon_state = "meridian_black_damage_4"; + health = 750; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + pixel_y = 12; + light_color = "#FF7700"; + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = 4; + pixel_y = -10; + layer = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGW" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aGX" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"aGY" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aGZ" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHa" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHb" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHd" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHe" = ( +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHf" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkred2/southeast, +/area/tyrargo/indoors/security/ground) +"aHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/bed/roller/hospital/bloody, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHl" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/security/ground) +"aHm" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHo" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + pixel_x = 10; + dir = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aHp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHq" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/stairs/multiz/down, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -17; + pixel_y = 3; + explo_proof = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/ground) +"aHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"aHs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"aHt" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHu" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 1; + pixel_y = -36; + pixel_x = -1 + }, +/obj/item/storage/briefcase{ + pixel_x = 24; + pixel_y = 6 + }, +/obj/item/storage/briefcase{ + pixel_x = 30; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHv" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32; + pixel_x = 17 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/security/ground) +"aHw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHy" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHB" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHD" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/fence/dark, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHH" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"aHK" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"aHL" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aHM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHN" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHP" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aHQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHS" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 7; + pixel_y = -28 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aHT" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = -9; + pixel_y = -28 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aHV" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHW" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHX" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aHY" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/south_east) +"aHZ" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Colony_Crawlers/Crawler_Cargo, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIa" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"aIb" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIc" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_east) +"aId" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIe" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Turquoise{ + pixel_y = -8; + icon_state = "meridian_turquoise_damage_3"; + health = 1250; + layer = 6; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = 4; + pixel_y = 2; + layer = 6 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 4; + pixel_x = 6 + }, +/obj/structure/prop/ice_colony/ground_wire{ + layer = 4.1; + pixel_x = 6 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/ice_colony/ground_wire{ + layer = 4.1; + pixel_x = 6 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIh" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/ice_colony/ground_wire{ + layer = 4.1; + pixel_x = 6 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIi" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + layer = 4.1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_east) +"aIj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 1; + layer = 5; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/east) +"aIk" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 4.1; + pixel_x = 6 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"aIl" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"aIm" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"aIn" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 4; + layer = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/east) +"aIo" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"aIp" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"aIq" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIr" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"aIs" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aIv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIw" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aID" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIG" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aIH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aII" = ( +/obj/effect/decal/hybrisa/road/lines5{ + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIJ" = ( +/obj/effect/decal/hybrisa/road/lines5{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIL" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aIM" = ( +/obj/structure/sign/safety/north{ + pixel_x = -16; + name = "\improper Up semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something going upwards." + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"aIN" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = -14; + layer = 2.98 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"aIO" = ( +/obj/structure/sign/safety/north{ + pixel_x = 36; + name = "\improper Up semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something going upwards." + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"aIP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIQ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aIR" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aIS" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aIT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/east) +"aIU" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aIV" = ( +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"aIW" = ( +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -27 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aIX" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 30 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aIY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aIZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aJa" = ( +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"aJb" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_11" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aJc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/firehydrant{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/east) +"aJd" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aJe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"aJf" = ( +/obj/structure/sign/safety/stairs{ + pixel_y = -32 + }, +/obj/structure/sign/safety/south{ + pixel_y = -32; + pixel_x = 14; + name = "\improper Down semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something downwards." + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/ground) +"aJg" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aJh" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4; + pixel_y = -15 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"aJi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/east) +"aJj" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"aJk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"aJl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -5; + pixel_y = 1; + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aJm" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aJn" = ( +/obj/structure/reagent_dispensers/tank/water, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"aJo" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"aJp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -2; + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aJq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"aJr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"aJs" = ( +/turf/open/floor/almayer/plating_striped/south, +/area/tyrargo/landing_zone_2) +"aJt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"aJu" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 23 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/market/upper) +"aJv" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"aJw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"aJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"aJy" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aJz" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aJA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"aJB" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"aJC" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -14; + pixel_x = 3 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 9; + pixel_y = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJD" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -15 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"aJE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJF" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -7; + layer = 2.9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -30; + pixel_x = -1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJG" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJH" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -4; + pixel_x = -9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"aJI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aJJ" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = 1; + pixel_x = 7 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 8 + }, +/obj/structure/prop/tyrargo/large_tents/small{ + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"aJK" = ( +/obj/item/prop{ + desc = "A manual, crew-operated mortar system intended to rain down 80mm goodness on anything it's aimed at. Uses an advanced targeting computer. This one has fired so many rounds the barrel is warped, leaving it non-functional"; + icon = 'icons/obj/structures/mortar.dmi'; + icon_state = "c_mortar_m402"; + name = "M402 mortar (non-functional)"; + dir = 8; + pixel_y = 18; + pixel_x = -14; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"aJM" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aJN" = ( +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/south_upper) +"aJO" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJP" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_y = -1; + pixel_x = 2; + layer = 3.04 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/north_ground) +"aJQ" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJR" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -25; + dir = 8; + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_y = -8; + pixel_x = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJS" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = 12 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 3; + pixel_x = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -13; + dir = 4; + pixel_x = -7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJT" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -4; + pixel_y = 8 + }, +/obj/effect/landmark/survivor_spawner/us_army_sl, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJU" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -9; + pixel_y = 8; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJV" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -9; + pixel_y = 8; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_x = 6 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJW" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -9; + pixel_y = 8; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJX" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 14; + pixel_y = -12; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 31; + layer = 2.7; + pixel_x = 10 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 7; + layer = 2.7; + pixel_x = 11 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJY" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -10; + pixel_y = -9; + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = 3; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 17; + pixel_y = 6; + layer = 2.8 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/weapon/gun/shotgun/pump/m37a{ + pixel_y = -8 + }, +/obj/item/weapon/gun/shotgun/pump/m37a{ + pixel_y = 6; + pixel_x = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aJZ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol/vp78/heap{ + current_rounds = 0; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKa" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 7; + layer = 2.7; + pixel_x = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -6; + layer = 2.7; + pixel_x = -8 + }, +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKb" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aKd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"aKe" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 14; + pixel_y = -12; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 7; + layer = 2.7; + pixel_x = 11 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKf" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -10; + pixel_y = -9; + dir = 8 + }, +/obj/structure/largecrate/random/barrel/brown, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKg" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 5; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKh" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 5; + pixel_x = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -2; + pixel_x = -11 + }, +/obj/item/mortar_shell/incendiary{ + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKj" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = -3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKk" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.2; + pixel_y = 15; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aKl" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 8; + pixel_y = 3; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -6; + layer = 2.7; + pixel_x = 2 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 11; + pixel_y = -9 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKm" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -10; + pixel_y = -9; + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/ammo_magazine/smartgun/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKn" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -2; + pixel_x = -11 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = -11; + pixel_y = -12; + layer = 2.8 + }, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKo" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -2; + pixel_x = -11 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 3; + pixel_y = -7; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aKp" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -2; + pixel_x = -11 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aKq" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 14; + pixel_y = -12; + layer = 2.9 + }, +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -5; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKr" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -8; + pixel_x = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/storage/backpack/molle/army, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKs" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -8; + pixel_x = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -17 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/ammo_magazine/rifle, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKt" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -8; + pixel_x = -6 + }, +/obj/effect/landmark/map_item, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/ammo_magazine/pistol/vp78, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKu" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -14; + pixel_x = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -17 + }, +/obj/item/ammo_magazine/smartgun/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKv" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -14; + pixel_x = -10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/suit/storage/marine/smartgunner{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/weapon/gun/smartgun{ + current_mag = null; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKw" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -15; + pixel_y = -20; + layer = 2.2 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKx" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -25; + pixel_x = -22 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = -4; + pixel_y = -24; + layer = 2.8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aKy" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -2; + pixel_y = -5; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -2; + pixel_x = -11 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 4; + pixel_y = -12; + layer = 2.1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKA" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKB" = ( +/turf/open/floor/almayer/plating_stripedcorner/east, +/area/tyrargo/landing_zone_2) +"aKC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aKD" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/landing_zone_2) +"aKE" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/test_floor5, +/area/tyrargo/landing_zone_2) +"aKF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"aKG" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKH" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -15 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = -1; + pixel_x = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKL" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKO" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_y = 9; + pixel_x = 16 + }, +/obj/structure/largecrate/machine/bodyscanner{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"aKP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"aKQ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKR" = ( +/obj/item/frame/table/almayer, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_y = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKU" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aKV" = ( +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aKW" = ( +/obj/structure/sign/safety/south{ + pixel_x = 38; + name = "\improper Down semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something downwards." + }, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/upper) +"aKX" = ( +/obj/structure/sign/safety/south{ + pixel_y = 32; + pixel_x = 14; + name = "\improper Down semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something downwards." + }, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/upper) +"aKY" = ( +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/upper) +"aKZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/museum_storage/upper) +"aLa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/stairs{ + pixel_y = 32 + }, +/obj/structure/sign/safety/south{ + pixel_y = 32; + pixel_x = 14; + name = "\improper Down semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something downwards." + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/upper) +"aLb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/upper) +"aLc" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aLd" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/underground/bunker/south) +"aLe" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"aLf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/west, +/area/tyrargo/underground/bunker/south) +"aLg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aLh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/bunker/south) +"aLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/west, +/area/tyrargo/underground/bunker/south) +"aLj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/bunker/south) +"aLk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"aLl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/purplecorner/west, +/area/tyrargo/underground/bunker/south) +"aLm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/purplecorner/north, +/area/tyrargo/underground/bunker/south) +"aLn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/northwest, +/area/tyrargo/underground/bunker/south) +"aLo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/north, +/area/tyrargo/underground/bunker/south) +"aLp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/northeast, +/area/tyrargo/underground/bunker/south) +"aLq" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/red/southwest, +/area/tyrargo/underground/bunker/south) +"aLr" = ( +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/south) +"aLs" = ( +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/south) +"aLt" = ( +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/south) +"aLu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner, +/area/tyrargo/underground/bunker/south) +"aLv" = ( +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/south) +"aLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/south) +"aLx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/south) +"aLy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/northeast, +/area/tyrargo/underground/bunker/south) +"aLz" = ( +/turf/open/floor/corsat/red/northwest, +/area/tyrargo/underground/bunker/south) +"aLA" = ( +/turf/open/floor/corsat/brown/southwest, +/area/tyrargo/underground/bunker/south) +"aLB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/tyrargo/underground/bunker/south) +"aLC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/brown/southeast, +/area/tyrargo/underground/bunker/south) +"aLD" = ( +/turf/open/floor/corsat/brown/west, +/area/tyrargo/underground/bunker/south) +"aLE" = ( +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/bunker/south) +"aLF" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2) +"aLG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"aLH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/browncorner/east, +/area/tyrargo/underground/bunker/south) +"aLI" = ( +/turf/open/floor/corsat/brown/north, +/area/tyrargo/underground/bunker/south) +"aLJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat/brown/northeast, +/area/tyrargo/underground/bunker/south) +"aLK" = ( +/turf/open/floor/corsat/browncorner/west, +/area/tyrargo/underground/bunker/south) +"aLL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/browncorner, +/area/tyrargo/underground/bunker/south) +"aLM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/north, +/area/tyrargo/underground/bunker/south) +"aLN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"aLO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"aLP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"aLQ" = ( +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aLR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreencorner/north, +/area/tyrargo/underground/bunker/north) +"aLS" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/tyrargo/underground/bunker/north) +"aLT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"aLU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"aLV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/west, +/area/tyrargo/underground/bunker/north) +"aLW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/darkgreen/east, +/area/tyrargo/underground/bunker/north) +"aLX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"aLY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreencorner/west, +/area/tyrargo/underground/bunker/north) +"aLZ" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/tyrargo/underground/bunker/north) +"aMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 4; + pixel_y = -5; + layer = 2.1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"aMb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"aMc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"aMd" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -5; + pixel_x = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"aMe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"aMf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen, +/area/tyrargo/underground/bunker/north) +"aMg" = ( +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/underground/bunker/south) +"aMh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"aMi" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/tyrargo/underground/bunker/north) +"aMj" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/northeast, +/area/tyrargo/underground/bunker/north) +"aMk" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"aMl" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/north) +"aMm" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/tyrargo/underground/bunker/north) +"aMn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/north) +"aMo" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"aMp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/bunker/north) +"aMq" = ( +/turf/open/floor/corsat/bluecorner, +/area/tyrargo/underground/bunker/north) +"aMr" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/north) +"aMs" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/north) +"aMt" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2/east_trench) +"aMu" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"aMv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"aMw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aMx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aMy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aMz" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/east) +"aMA" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_y = 3; + layer = 5.97 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aMB" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aMC" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aMD" = ( +/obj/structure/platform/metal/almayer, +/turf/open_space, +/area/tyrargo/landing_zone_2) +"aME" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aMF" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aMG" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"aMH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aMJ" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = -23; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -12; + pixel_y = -23; + layer = 2.8 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aML" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aMM" = ( +/obj/item/prop{ + desc = "A manual, crew-operated mortar system intended to rain down 80mm goodness on anything it's aimed at. Uses an advanced targeting computer. This one has fired so many rounds the barrel is warped, leaving it non-functional"; + icon = 'icons/obj/structures/mortar.dmi'; + icon_state = "c_mortar_m402"; + name = "M402 mortar (non-functional)"; + dir = 8; + pixel_y = 18; + pixel_x = -14; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMO" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aMP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMQ" = ( +/obj/item/mortar_shell/he, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMR" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMS" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"aMT" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aMU" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_container/blood/empty, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aMX" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aMY" = ( +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"aMZ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"aNa" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aNb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aNc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aNe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"aNg" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"aNh" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aNi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/underground/bunker/south) +"aNj" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"aNk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aNl" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "Tank Trap"; + layer = 3 + }, +/area/tyrargo/outdoors/outskirts/east) +"aNm" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aNn" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/stack/medical/splint/random_amount{ + pixel_y = -2 + }, +/turf/open/floor/almayer/black, +/area/tyrargo/underground/bunker/south) +"aNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1; + pixel_x = -1 + }, +/turf/open/floor/almayer/black2/southeast, +/area/tyrargo/underground/bunker/south) +"aNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/black2, +/area/tyrargo/underground/bunker/south) +"aNs" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aNt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/black2/east, +/area/tyrargo/underground/bunker/south) +"aNu" = ( +/obj/structure/prop/vehicles/tank/ifv/destroyed{ + pixel_x = -30 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/east) +"aNv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 9; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 7 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNw" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -12; + pixel_y = 16 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/east) +"aNy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aNz" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Blue_Cargo{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aNA" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNB" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNC" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/almayer/black/west, +/area/tyrargo/underground/bunker/south) +"aND" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -2; + pixel_x = 1; + layer = 2.8 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNF" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNG" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aNH" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"aNI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNK" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aNL" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"aNM" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"aNP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNQ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"aNR" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNS" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/stairs/multiz/down, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aNU" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aNV" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aNW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aNX" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aNY" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/east) +"aNZ" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"aOa" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aOb" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"aOc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"aOd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aOe" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOf" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOh" = ( +/obj/structure/closet/crate/explosives{ + pixel_y = -1; + pixel_x = -4 + }, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOi" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -7; + layer = 2.9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -30; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOm" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOn" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOq" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aOr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -16; + dir = 8; + pixel_x = -9 + }, +/obj/structure/sign/banners/united_americas_flag_worn{ + pixel_y = 30 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOw" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOA" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"aOB" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aOC" = ( +/obj/item/mortar_shell/frag{ + pixel_x = -6; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/mortar_shell/frag{ + pixel_x = 3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOE" = ( +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOF" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOG" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"aOH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 9; + pixel_y = -12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + layer = 2.98 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOM" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"aON" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aOO" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aOP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOQ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aOS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall) +"aOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOV" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 19; + pixel_y = -2; + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOW" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -16; + dir = 8; + pixel_x = -9 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aOY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"aPa" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aPb" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aPd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -8; + pixel_y = -11; + layer = 2.9 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPe" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -3; + pixel_x = -2 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPh" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aPi" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPj" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aPk" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -10; + pixel_y = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 4; + pixel_y = -21; + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPn" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aPo" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPq" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aPr" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 7; + layer = 2.1 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13; + pixel_x = -17 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14; + pixel_x = -14 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"aPt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + layer = 2.97 + }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"aPu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_y = -8; + pixel_x = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/survivor_spawner/us_army_marksman, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPw" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aPx" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/obj/effect/landmark/survivor_spawner/us_army_engineer, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPy" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 2; + pixel_x = -13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPz" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aPA" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPB" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -1; + pixel_x = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -24; + dir = 8; + pixel_x = 13 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPD" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPE" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aPF" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aPG" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aPH" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/clothing/head/beret/cm/black/army, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPI" = ( +/obj/item/device/multitool{ + pixel_x = 4; + pixel_y = -8 + }, +/obj/item/stack/sheet/metal/small_stack{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPK" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 3; + pixel_y = 2; + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"aPM" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = -8; + pixel_x = -11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPN" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aPO" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aPP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPQ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -7 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPR" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -4; + pixel_x = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPS" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -18; + pixel_y = -12 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -27; + dir = 8; + pixel_x = 3 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPT" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aPU" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPV" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = 11; + pixel_y = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aPY" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aPZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"aQa" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"aQb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aQc" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQd" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQe" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -16; + pixel_y = -10; + layer = 2.1 + }, +/obj/effect/landmark/survivor_spawner/us_army_gunner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQf" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aQg" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQh" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQj" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aQk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -2; + pixel_x = 1; + layer = 2.8 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 2; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 7 + }, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_1_1"; + pixel_y = -3; + dir = 10; + pixel_x = 5 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"aQn" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQp" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQq" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aQr" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aQs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQt" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2/no_tunnel) +"aQu" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/security/upper) +"aQv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -2; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQw" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aQx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/mortar_shell/flare{ + pixel_x = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQy" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = 11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aQz" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -5; + pixel_y = -12 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 16; + pixel_x = -15 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQA" = ( +/obj/item/trash/uscm_mre, +/obj/effect/landmark/survivor_spawner, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -2; + pixel_x = 3 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/largecrate/random/case/small{ + pixel_y = 14; + anchored = 1; + density = 0; + layer = 2.97 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ + name = "Medical Cabinet"; + pixel_y = -32 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north) +"aQF" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/obj/structure/machinery/light/small, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north) +"aQG" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQH" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 20 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 12; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQM" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 9 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central) +"aQN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQP" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -14; + pixel_x = 3 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 9; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQS" = ( +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/upper) +"aQT" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQV" = ( +/obj/item/mortar_shell/he{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQW" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aQY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"aQZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aRa" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aRb" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north) +"aRc" = ( +/obj/item/mortar_shell/he{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aRd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/closet/crate/explosives{ + pixel_y = -1; + pixel_x = -4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aRe" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"aRf" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"aRg" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"aRh" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -19; + layer = 6.1 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"aRi" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aRj" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -19; + layer = 5.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"aRk" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"aRl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aRm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRn" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"aRp" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -11; + pixel_y = 36 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aRq" = ( +/turf/open/floor/shiva/radiator_tile, +/area/tyrargo/oob) +"aRr" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2) +"aRs" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open_space, +/area/tyrargo/landing_zone_2) +"aRt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aRu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/structure/barricade/handrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aRv" = ( +/obj/structure/barricade/handrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aRw" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aRy" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aRz" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRA" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRC" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRD" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRE" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRG" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRH" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aRI" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRJ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRK" = ( +/obj/effect/decal/hybrisa/road{ + pixel_x = 11 + }, +/obj/effect/decal/hybrisa/road{ + pixel_x = 14 + }, +/obj/effect/decal/hybrisa/road{ + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"aRM" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRN" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRO" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRQ" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "9"; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aRR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aRS" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/road/road_stop, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"aRU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2) +"aRX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aRY" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aRZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aSa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aSb" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"aSc" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/oob) +"aSd" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"aSe" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aSf" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aSg" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"aSh" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"aSi" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/obj/structure/barricade/handrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aSj" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/oob) +"aSk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aSl" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aSm" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"aSn" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/security/upper) +"aSo" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13; + pixel_x = -17 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aSp" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aSq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSr" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/prop{ + desc = "The AGM-99 'Napalm' is an incendiary missile used to turn specific targeted areas into giant balls of fire for a long time. Can be loaded into the LAU-444 Guided Missile Launcher."; + icon = 'icons/obj/structures/props/dropship/dropship_ammo64.dmi'; + icon_state = "napalm"; + name = "AGM-99 'Napalm'"; + dir = 8; + pixel_y = 2; + anchored = 1; + pixel_x = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"aSs" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"aSt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSv" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aSw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSy" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSz" = ( +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aSA" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/south_ground) +"aSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel/hybrisa/grate, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"aSC" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aSD" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/prop/hybrisa/vehicles/Meridian/Brown{ + dir = 1 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"aSE" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"aSF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/stairs/multiz/down, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aSG" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"aSH" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"aSI" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/north, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"aSJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"aSK" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"aSL" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"aSM" = ( +/turf/open/floor/almayer/plating_stripedcorner/north, +/area/tyrargo/landing_zone_2) +"aSN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"aSO" = ( +/turf/open/floor/almayer/plating_stripedcorner/south, +/area/tyrargo/landing_zone_2) +"aSP" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aSQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aSR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aSS" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aST" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aSU" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"aSV" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2) +"aSW" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2) +"aSX" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"aSY" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"aSZ" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"aTa" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"aTb" = ( +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"aTc" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aTd" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"aTe" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"aTf" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aTg" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aTh" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aTi" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aTj" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aTk" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_3" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aTl" = ( +/obj/structure/fence/dark, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"aTm" = ( +/obj/structure/prop/vehicles/tank/ifv{ + dir = 8; + pixel_y = -25 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts_road/west) +"aTn" = ( +/obj/structure/flora/tree/tyrargo, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aTo" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"aTp" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 7; + density = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"aTq" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"aTr" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/south{ + pixel_x = 7; + pixel_y = 26; + desc = "A traffic signal denoting the nearby presence of something to the South."; + name = "\improper South traffic signal" + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 7; + pixel_y = 11; + desc = "A traffic signal denoting the nearby presence of a military airbase."; + name = "Military airbase traffic signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aTs" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aTt" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aTu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -1; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aTv" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aTw" = ( +/obj/structure/flora/tree/tyrargo/tree_2, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aTx" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_x = 2; + pixel_y = -12 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTy" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 7; + density = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTz" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTA" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTB" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -1; + pixel_y = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTC" = ( +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTE" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"aTF" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTG" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -10; + density = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 6; + pixel_y = 6; + dir = 8; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -5; + pixel_x = -5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTI" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aTK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aTL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTM" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTN" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/obj/structure/prop/vehicles/tank/miltruck{ + pixel_y = -15; + pixel_x = -32 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -5; + pixel_x = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTS" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"aTT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aTU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTV" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee{ + pixel_x = -16 + }, +/obj/structure/prop/vehicles/tank/humvee/turret{ + dir = 8; + pixel_x = -22 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aTW" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 19; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 20; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -8; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 13; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 13; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"aTX" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 7; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 9; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -20; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 1; + pixel_y = 9; + desc = "A traffic signal denoting the nearby presence of a military airbase."; + name = "Military airbase traffic signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 1; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aTY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aTZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_tunnel) +"aUa" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_tunnel) +"aUb" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1) +"aUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"aUd" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.75 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.73 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"aUe" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aUf" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aUg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_tunnel) +"aUh" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aUi" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aUj" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aUk" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 3; + pixel_x = 2 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aUl" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1) +"aUm" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1) +"aUn" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aUo" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aUp" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUq" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1) +"aUr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"aUs" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1) +"aUt" = ( +/obj/structure/flora/tree/tyrargo/tree_3, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUu" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"aUv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aUw" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aUx" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aUy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"aUz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"aUA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aUB" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/destroyed{ + dir = 4; + pixel_y = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"aUC" = ( +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"aUD" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aUE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -38; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"aUF" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts_road/west) +"aUG" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"aUH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_tunnel) +"aUI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 13; + pixel_y = 7; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUJ" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/landing_zone_1) +"aUK" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"aUL" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aUM" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"aUN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"aUO" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -12; + pixel_y = -14; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUP" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"aUQ" = ( +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"aUR" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"aUS" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aUT" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aUU" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUV" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aUW" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aUX" = ( +/obj/structure/prop/rock/black_ground, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -8; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 11 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aUZ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_container/blood/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVa" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 2; + pixel_x = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVb" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"aVc" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVd" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVe" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aVf" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.75 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.73 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aVg" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVh" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVi" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = -14 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 29 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"aVk" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVl" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 12; + pixel_y = 9; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVm" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aVn" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aVo" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVp" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVq" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 2; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVr" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVs" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 12; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"aVt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aVu" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"aVv" = ( +/obj/structure/lz_sign/tyrargo_sign/lz2, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"aVw" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = 4; + layer = 2.8; + pixel_x = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVx" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVy" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"aVA" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 12; + pixel_x = 10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVB" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVC" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aVD" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"aVE" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 13; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVF" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -9; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVG" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -18; + pixel_x = -8 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVH" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 8; + layer = 2.9 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aVI" = ( +/obj/structure/flora/tree/tyrargo/tree_3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aVJ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aVK" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVL" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVM" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = -2; + pixel_x = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aVO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"aVP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aVQ" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVR" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aVS" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVT" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2) +"aVU" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"aVV" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"aVW" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = -8; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVX" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVY" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -3; + pixel_x = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aVZ" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 13; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWa" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWb" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"aWc" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 20 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWf" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWg" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWj" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWk" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWl" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWm" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = -8; + pixel_x = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWq" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWr" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/plating/wood_broken6, +/area/tyrargo/landing_zone_1/ceiling) +"aWs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWt" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 12; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWu" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1 - Firebase Charlie" + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWv" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aWx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aWy" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 2; + pixel_x = -13 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWz" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aWA" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWB" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_y = -17; + pixel_x = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWC" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -4; + pixel_x = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -12; + pixel_x = -16 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWD" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWE" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -4; + pixel_x = 2 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = 3; + pixel_x = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWF" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -4; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"aWH" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"aWI" = ( +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aWJ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aWK" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"aWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWM" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWN" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 42; + pixel_x = -3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aWO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aWQ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWR" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_y = 8; + pixel_x = -11 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWS" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -2; + pixel_x = -12 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWT" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 1; + pixel_y = -5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"aWU" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWV" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -25; + dir = 8; + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_y = -8; + pixel_x = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aWW" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aWX" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/turf/closed/wall/r_wall/bunker{ + layer = 3; + name = "Tank Trap" + }, +/area/tyrargo/landing_zone_1/no_mans_land) +"aWY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aWZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"aXa" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXb" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 9; + pixel_x = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -4; + pixel_y = -12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXe" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXf" = ( +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXh" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -25; + dir = 8; + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -15; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXk" = ( +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXl" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aXm" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = 4; + pixel_x = -25 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"aXn" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aXo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"aXp" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXq" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXs" = ( +/obj/structure/prop/invuln/remote_console_pod, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/landing_zone_2) +"aXt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -11 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXu" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aXv" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"aXw" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/power_substation_outskirt) +"aXx" = ( +/obj/structure/flora/tree/tyrargo_small/tree_5, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXy" = ( +/obj/structure/flora/tree/tyrargo_small/tree_4, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXz" = ( +/obj/structure/flora/tree/tyrargo_small/tree_3{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aXA" = ( +/obj/structure/fence/dark, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"aXB" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXC" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"aXE" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXF" = ( +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"aXG" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"aXH" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -18; + pixel_x = -8 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXI" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 13; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 3; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXJ" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 14; + layer = 2.9; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 1; + pixel_x = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXK" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 20; + pixel_y = -1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXN" = ( +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXO" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = -10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aXQ" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_south) +"aXR" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXS" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 20 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 12; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXT" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 13; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXU" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aXV" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 13; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXX" = ( +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aXY" = ( +/obj/item/prop/colony/used_flare, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aXZ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -4; + pixel_y = -12 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYa" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aYb" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -18; + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYc" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aYd" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYe" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 16; + pixel_x = -15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYf" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aYg" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 13; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 3; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYh" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYj" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aYk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aYl" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"aYm" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aYn" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = 3; + dir = 8; + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYq" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -10; + pixel_y = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYr" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYs" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -6; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aYu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aYv" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYw" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYx" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 4; + pixel_y = -9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -13; + dir = 8; + pixel_x = 21 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = -8; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYy" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYz" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYA" = ( +/obj/structure/tent/big, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYB" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYC" = ( +/obj/structure/tent/med, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYD" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYE" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1) +"aYF" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYG" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -3; + pixel_x = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYH" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aYI" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYJ" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aYK" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = -1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYL" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 1; + layer = 2.9; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYM" = ( +/obj/structure/bed/bedroll{ + dir = 10; + pixel_x = -6; + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aYO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = -9; + layer = 2.1 + }, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aYP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"aYQ" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/structure/bed/roller, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYR" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 2; + pixel_x = -13 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYS" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYT" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYU" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aYV" = ( +/obj/structure/bed/bedroll{ + pixel_x = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aYW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"aYX" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 13; + pixel_y = -2; + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/landmark/map_item, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYY" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aYZ" = ( +/obj/structure/bed/roller, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aZa" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aZb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 3; + pixel_y = -9; + layer = 2.9 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aZc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 6; + pixel_y = 10; + layer = 2.1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aZd" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"aZe" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aZf" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aZg" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aZh" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"aZi" = ( +/obj/structure/prop/hybrisa/misc/firebarreloff, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aZj" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.9; + pixel_y = -17; + pixel_x = -2 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"aZk" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"aZl" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_y = 12 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"aZm" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aZn" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aZo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aZp" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"aZq" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"aZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -7; + layer = 2.9 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aZs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aZt" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"aZu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"aZv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"aZw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"aZx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"aZy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"aZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"aZC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 1; + pixel_y = 1; + layer = 2.8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"aZF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZG" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"aZH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZI" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"aZJ" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7; + pixel_x = 3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"aZL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -2; + pixel_x = 3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZM" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + pixel_x = 2 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"aZN" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = 2; + layer = 2.98 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"aZO" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"aZP" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"aZQ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"aZR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aZS" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"aZT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/fsb_north) +"aZU" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"aZV" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 19; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aZW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aZX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"aZY" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/landing_zone_2) +"aZZ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"baa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"bab" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bac" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bad" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bae" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"baf" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bag" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bah" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bai" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"baj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bak" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bal" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bam" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"ban" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"bao" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bap" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"baq" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bas" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bat" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bau" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bav" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"baw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bax" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bay" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"baE" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 7; + density = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"baF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"baG" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"baH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"baI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"baJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"baK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baL" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"baM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"baN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"baO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"baP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"baQ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"baR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"baS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"baT" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"baU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1) +"baV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_west) +"baW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"baX" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"baY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/flora/wood/trunk1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"baZ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bba" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "13" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bbb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bbc" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central) +"bbd" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/west) +"bbe" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbf" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north_south) +"bbh" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bbi" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 12; + pixel_y = 9; + layer = 2.9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbj" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbk" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bbl" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbm" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"bbn" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"bbo" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bbp" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bbr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bbs" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = -2; + pixel_x = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbt" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bbu" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbv" = ( +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"bbw" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbx" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bby" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -18; + pixel_x = -8 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 19; + dir = 8; + pixel_x = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"bbA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bbB" = ( +/obj/structure/flora/wood/trunk2, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bbC" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbD" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bbE" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bbF" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bbG" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bbI" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bbK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bbL" = ( +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/south_upper) +"bbM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_y = -11 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bbN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"bbO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/landmark/map_item, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bbQ" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bbR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bbS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bbT" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bbU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bbV" = ( +/obj/structure/flora/tree/tyrargo_small/tree_2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bbW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bbX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bbY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bbZ" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bca" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcb" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bcc" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bcd" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bce" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "9"; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bcf" = ( +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bcg" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bch" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"bci" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -9; + pixel_x = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bcj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bck" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bcl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bcm" = ( +/obj/item/ammo_casing/shell, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bcn" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bco" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bcp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcq" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north) +"bcr" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bcs" = ( +/obj/item/weapon/gun/shotgun/pump/m37a, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bct" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"bcu" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bcv" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bcw" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north) +"bcx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bcy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"bcz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"bcA" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bcB" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bcC" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bcD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bcE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bcF" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcG" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcH" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcI" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcJ" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bcK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bcL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcM" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcN" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcO" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bcP" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bcQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + pixel_x = -32; + pixel_y = -15 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"bcR" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bcS" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcU" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/oob) +"bcV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bcW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_1) +"bcX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bcY" = ( +/obj/item/prop/colony/used_flare, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bcZ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bda" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bdb" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bdc" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bdd" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bde" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/landing_zone_2) +"bdf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bdg" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"bdh" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_x = 15; + layer = 2; + explo_proof = 1; + density = 0 + }, +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark2{ + layer = 2; + explo_proof = 1; + pixel_y = -13 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"bdi" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bdj" = ( +/obj/item/explosive/mine/active/no_iff, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bdk" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/market/upper) +"bdl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bdm" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bdn" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bdo" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"bdp" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"bdq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bdr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/landing_zone_2) +"bds" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"bdt" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"bdu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bdv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bdw" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/darkbrown2/northwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"bdx" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bdy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bdz" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/floor/almayer/plating_striped/south, +/area/tyrargo/landing_zone_2) +"bdA" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bdB" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"bdC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"bdD" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bdE" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bdF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bdG" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bdH" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"bdI" = ( +/obj/effect/spawner/random/tool{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"bdJ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"bdK" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bdL" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bdM" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + pixel_y = 12; + pixel_x = -15 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bdN" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bdO" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bdP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bdQ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/landing_zone_1/comms) +"bdR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/landing_zone_1/comms) +"bdS" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"bdT" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Blue{ + pixel_x = -2; + pixel_y = -13 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"bdU" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bdV" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bdW" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -7 + }, +/obj/item/device/multitool{ + pixel_x = 4; + pixel_y = -8 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/landing_zone_1/comms) +"bdX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bdY" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bdZ" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + pixel_y = 14 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/landing_zone_1/comms) +"bea" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_y = 14 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/landing_zone_1/comms) +"beb" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bec" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bed" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bee" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bef" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"beg" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"beh" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bei" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bej" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/oob) +"bek" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bel" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/mall) +"bem" = ( +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"ben" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"beo" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + pixel_y = -2; + pixel_x = -23 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bep" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"beq" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"ber" = ( +/obj/structure/cargo_container/uscm/chinook/left, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bes" = ( +/obj/structure/cargo_container/uscm/mid, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bet" = ( +/obj/structure/cargo_container/uscm/right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beu" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"bev" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bew" = ( +/obj/item/stack/rods, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"bex" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"bey" = ( +/obj/item/tool/wrench{ + pixel_x = -3; + pixel_y = -9 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"bez" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beA" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beC" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"beD" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"beE" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"beF" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"beG" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/obj/structure/cargo_container/kelland/left, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beH" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14 + }, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2/strip) +"beK" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"beL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/prop{ + desc = "A fuel enhancement system for dropships. It improves the thrust produced by the fuel combustion for faster travels. Fits inside the engine attach points. You need a powerloader to lift it."; + icon = 'icons/obj/structures/props/dropship/dropship_equipment64.dmi'; + icon_state = "fuel_enhancer"; + name = "Fuel enhancer"; + dir = 8; + pixel_y = -6; + anchored = 1; + pixel_x = 2 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"beM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"beQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/market/upper) +"beR" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"beS" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"beT" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/landing_zone_2) +"beU" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 1; + pixel_x = -32 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/landing_zone_2) +"beV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"beW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"beX" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"beY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/reagent_dispensers/tank/fuel/spacecraft{ + pixel_x = 2; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"beZ" = ( +/obj/structure/reagent_dispensers/tank/fuel/spacecraft, +/obj/structure/prop/hybrisa/airport/refuelinghose{ + layer = 3.1; + pixel_x = -7; + pixel_y = -73 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bfa" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/prop{ + desc = "A cooling system for dropships. It produces additional cooling reducing delays between launch. Fits inside the engine attach points. You need a powerloader to lift it."; + icon = 'icons/obj/structures/props/dropship/dropship_equipment64.dmi'; + icon_state = "cooling_system"; + name = "Cooling system"; + dir = 8; + pixel_y = -2; + anchored = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/landing_zone_2) +"bfb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bfc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bfd" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bfe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/Blue, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"bff" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bfg" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bfh" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfi" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"bfj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"bfk" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bfl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bfm" = ( +/obj/structure/flora/grass/temperate, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bfn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bfo" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bfp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bfq" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"bfr" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"bfs" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"bft" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bfu" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bfv" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"bfw" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"bfx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"bfy" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bfz" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bfA" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfC" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"bfD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bfE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bfF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"bfG" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2/east_trench) +"bfH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bfI" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 13; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bfJ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 11 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bfK" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 11; + pixel_x = -3; + layer = 2.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bfL" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfM" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"bfN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"bfO" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bfQ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"bfR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"bfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer/blue, +/area/tyrargo/landing_zone_2/ceiling) +"bfT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfU" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bfW" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/flora/grass/temperate{ + icon_state = "17" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bfX" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 16 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bfY" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/landing_zone_2) +"bfZ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bga" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bgb" = ( +/obj/structure/window/framed/bunker/reinforced, +/turf/open/floor/plating, +/area/tyrargo/landing_zone_2/ceiling) +"bgc" = ( +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/floor/almayer/blue/north, +/area/tyrargo/landing_zone_2/ceiling) +"bgd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/blue/southwest, +/area/tyrargo/landing_zone_2/ceiling) +"bge" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluecorner/west, +/area/tyrargo/landing_zone_2/ceiling) +"bgf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/landing_zone_2/ceiling) +"bgg" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/almayer/bluecorner, +/area/tyrargo/landing_zone_2/ceiling) +"bgh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blue/southeast, +/area/tyrargo/landing_zone_2/ceiling) +"bgi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bgj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/blue, +/area/tyrargo/landing_zone_2/ceiling) +"bgk" = ( +/obj/item/ammo_magazine/m56d{ + current_rounds = 24; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue, +/area/tyrargo/landing_zone_2/ceiling) +"bgl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/landing_zone_2/ceiling) +"bgm" = ( +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bgn" = ( +/obj/item/ammo_magazine/m56d{ + current_rounds = 3; + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/landing_zone_2/ceiling) +"bgo" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/landing_zone_2/ceiling) +"bgp" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/landing_zone_2/ceiling) +"bgq" = ( +/obj/item/ammo_magazine/m56d{ + current_rounds = 87; + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/landing_zone_2/ceiling) +"bgr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/landing_zone_2/ceiling) +"bgs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bgt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bgu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/landing_zone_2/ceiling) +"bgv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/landing_zone_2/ceiling) +"bgw" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bgx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bgy" = ( +/obj/item/ammo_magazine/smartgun/empty, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bgz" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bgA" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bgB" = ( +/mob/living/simple_animal/small/mouse/rat/gray, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"bgC" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/oob) +"bgD" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"bgE" = ( +/turf/open/floor/coagulation/icon0_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"bgF" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bgG" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/north) +"bgH" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bgI" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "27" + }, +/area/tyrargo/underground/sewer/south) +"bgJ" = ( +/turf/open/floor/coagulation/icon0_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"bgK" = ( +/turf/open/floor/coagulation/icon8_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"bgL" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "32" + }, +/area/tyrargo/underground/sewer/south) +"bgM" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "33" + }, +/area/tyrargo/underground/sewer/south) +"bgN" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "38" + }, +/area/tyrargo/underground/sewer/south) +"bgO" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "39" + }, +/area/tyrargo/underground/sewer/south) +"bgP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/north) +"bgQ" = ( +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/underground/sewer/north) +"bgR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -5 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"bgS" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bgT" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"bgU" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/oob) +"bgV" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/spacecash/c1{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"bgW" = ( +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bgX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bgY" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bgZ" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"bha" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhb" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhc" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhe" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhf" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhh" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhi" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhj" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhk" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhl" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhm" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhn" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bho" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bhp" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bhq" = ( +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32 + }, +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bhr" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bhs" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bht" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bhu" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32 + }, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bhv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bhw" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bhx" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhy" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = 2; + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = -10; + dir = 4 + }, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"bhz" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 10; + pixel_y = 22; + dir = 4; + anchored = 1; + layer = 3.03 + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = 14; + pixel_x = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhA" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + layer = 5.3; + light_color = "#FF7700"; + density = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bhB" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -10; + density = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bhD" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bhE" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 11; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"bhF" = ( +/obj/structure/prop/vehicles/tank/ifv/destroyed{ + dir = 4; + pixel_y = -6; + pixel_x = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhG" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bhH" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 7; + density = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhJ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhK" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bhL" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"bhM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -15; + pixel_y = 15 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bhN" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bhO" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 14; + pixel_y = -4; + dir = 1 + }, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"bhP" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -42; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhQ" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -10; + density = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhR" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bhS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 15 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bhT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -11 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"bhU" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bhV" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bhW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bhX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -8; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bhY" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bhZ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bia" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/truck{ + dir = 4; + pixel_y = -23 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bib" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bic" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bid" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bie" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/landing_zone_2/no_tunnel) +"bif" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"big" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/landing_zone_2) +"bih" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"bii" = ( +/obj/item/stack/sandbags, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"bij" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bik" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bil" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bim" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bin" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bio" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bip" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"biq" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bir" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bis" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"bit" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"biu" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"biv" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"biw" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_x = 1; + pixel_y = -14 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"bix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"biy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"biz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"biA" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"biB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"biC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/road_stop, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"biD" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = -8; + pixel_x = -9 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"biE" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"biF" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"biG" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"biH" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -8; + pixel_y = -1; + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"biI" = ( +/obj/structure/fence/dark, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"biJ" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"biK" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2/no_tunnel) +"biL" = ( +/obj/effect/decal/hybrisa/road/road_stop, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"biM" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 14; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"biN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"biO" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"biP" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = -11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"biQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"biR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"biS" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Cop, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/security/ground) +"biT" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"biU" = ( +/obj/structure/tent/big, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"biV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"biW" = ( +/obj/structure/prop/tyrargo/large_tents/supply, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"biX" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"biY" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = 2; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"biZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bja" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bjb" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"bjc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bjd" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -7 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bje" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"bjf" = ( +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 28 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"bjg" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -9; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 3; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bjh" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 12; + pixel_y = 16 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -9; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bji" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bjj" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 13; + pixel_x = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjk" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 11; + pixel_x = 4; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjl" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bjm" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bjn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/mre/empty, +/obj/effect/landmark/map_item, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bjo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bjp" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bjq" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bjr" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/medical/splint/random_amount{ + pixel_y = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bjs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bjt" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bju" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/road) +"bjv" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"bjw" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -14; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjx" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 12; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bjy" = ( +/obj/item/stack/barbed_wire, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/road) +"bjz" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/road) +"bjA" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bjB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -14; + pixel_y = -3 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bjC" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -14; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjD" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bjE" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/road) +"bjF" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/road) +"bjG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bjH" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -12; + pixel_y = -8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -14; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjI" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"bjJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bjK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bjL" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 13; + pixel_x = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bjM" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -14; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjN" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"bjO" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -11; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bjP" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bjQ" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -12; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjR" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"bjS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blue/north, +/area/tyrargo/landing_zone_2/ceiling) +"bjT" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = 2; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bjU" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bjV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bjW" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -14; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bjX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bjY" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bjZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"bka" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bkb" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -11; + pixel_y = 2; + layer = 2.98; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bkc" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bkd" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 11; + pixel_x = -3; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bke" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bkf" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"bkg" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bkh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/orange{ + icon_state = "1-9"; + pixel_x = -8; + pixel_y = 2; + level = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north) +"bki" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -10; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bkj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blue, +/area/tyrargo/landing_zone_2/ceiling) +"bkk" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/almayer/blue, +/area/tyrargo/landing_zone_2/ceiling) +"bkl" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bkm" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bkn" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bko" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 9; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bkp" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bkq" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bkr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 11; + pixel_x = 4; + layer = 2.1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bkt" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bku" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bkw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bkx" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"bky" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bkz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bkA" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"bkB" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -14; + pixel_y = -3 + }, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bkC" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bkD" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bkE" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/landing_zone_2) +"bkF" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bkG" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -11; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bkH" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkI" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bkJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bkL" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 30 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkN" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bkO" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bkP" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bkQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bkR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkT" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bkU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bkV" = ( +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bkW" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 11; + pixel_x = 4; + layer = 2.1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bkX" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bkY" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bkZ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bla" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -11; + pixel_y = 2; + layer = 2.98 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"blb" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 12; + pixel_y = 16 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -9; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 12; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"blc" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 12; + pixel_y = 16 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -9; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bld" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ble" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 13; + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"blf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"bli" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 11 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blj" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bll" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blm" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -14; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bln" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"blo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"blq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"blr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bls" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"blt" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"blu" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"blv" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/market/upper) +"blw" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"blx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"blz" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"blA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"blB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/vehicles/tank/truck/broken{ + dir = 4; + pixel_y = -32; + layer = 4 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/central) +"blC" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/central) +"blD" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/rock{ + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"blE" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"blF" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/security/upper) +"blG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -40; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/vehicles/tank/miltruck{ + pixel_y = -15; + pixel_x = -32 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"blH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"blI" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"blJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/southwest, +/area/tyrargo/indoors/bunker/central_south) +"blK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"blL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"blM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/transport{ + pixel_x = -17; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"blN" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"blO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"blP" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"blQ" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"blR" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"blS" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"blT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"blU" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"blV" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.74 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"blW" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"blX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"blY" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"blZ" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bma" = ( +/obj/structure/flora/tree/tyrargo_small/tree_3, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmb" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmc" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmd" = ( +/obj/structure/flora/tree/tyrargo_small/tree_5{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bme" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmf" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmg" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/south{ + pixel_x = 7; + pixel_y = 26; + desc = "A traffic signal denoting the nearby presence of something to the South."; + name = "\improper South traffic signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bmh" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bmi" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/west) +"bmj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bmk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bml" = ( +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bmm" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bmn" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bmo" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"bmp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bmq" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bmr" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bms" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bmt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bmu" = ( +/obj/item/explosive/mine/active/no_iff, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bmv" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bmw" = ( +/obj/item/explosive/mine/active/no_iff, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bmx" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bmy" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bmz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bmA" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bmB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bmC" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bmD" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bmE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"bmF" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"bmG" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bmH" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"bmJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"bmK" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmL" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"bmO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"bmQ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/vehicles/tank/humvee{ + dir = 8; + pixel_y = -12; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmS" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmV" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bmW" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmX" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bmZ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bna" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnb" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bnc" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bnd" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bne" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnf" = ( +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bng" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bni" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnj" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnk" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnl" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"bnm" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueleft{ + layer = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnn" = ( +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bno" = ( +/obj/structure/largecrate/empty, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnp" = ( +/obj/structure/largecrate/random{ + layer = 3.1 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bnq" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnr" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bns" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -15 + }, +/obj/item/storage/box/mre, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bnt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/power_substation_outskirt) +"bnu" = ( +/obj/item/tool/warning_cone{ + pixel_x = -22; + pixel_y = 4 + }, +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnv" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -18; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"bnx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bny" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bnz" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/supply, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnB" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bnC" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bnD" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnE" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnF" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnH" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"bnI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bnJ" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"bnK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnM" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bnN" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnO" = ( +/obj/structure/prop/tyrargo/boards/boards_2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bnP" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bnQ" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnR" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnS" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnT" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 14; + pixel_y = -4; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -4; + pixel_y = -1; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bnU" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = -33 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"bnW" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bnX" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bnY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"bnZ" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boa" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bob" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boc" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -3; + layer = 2.8; + pixel_x = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -4; + pixel_y = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bod" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/radiation, +/obj/item/storage/firstaid/toxin, +/obj/item/prop/geiger_counter, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boe" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bof" = ( +/obj/item/ammo_magazine/pistol/vp78/heap{ + current_rounds = 0; + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bog" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boh" = ( +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boi" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/power_substation_outskirt) +"boj" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bok" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/item/stack/sandbags, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/east) +"bol" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/weapon/gun/pistol/vp78/army{ + current_mag = null; + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bom" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -28 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bon" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boo" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bop" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 17; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"boq" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bor" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bos" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bot" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bou" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bov" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bow" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"box" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boz" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"boA" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"boB" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boC" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boD" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boE" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"boF" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"boH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"boJ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boK" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"boL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"boM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"boN" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"boP" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"boQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boR" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"boS" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"boT" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"boV" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"boW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"boX" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/landmark/objective_landmark/far, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"boZ" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bpa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts_road/west) +"bpb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpc" = ( +/turf/open/gm/coast/dirt/forestdir/south, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bpd" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bpe" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bpf" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"bpg" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bph" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bpi" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bpj" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bpk" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts_road/west) +"bpl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"bpm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + pixel_x = 3; + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + pixel_y = 4 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"bpn" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"bpq" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/east) +"bpr" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/east) +"bps" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bpt" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpv" = ( +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"bpx" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bpy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bpz" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/central) +"bpB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bpD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bpE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bpF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpI" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpK" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpL" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bpO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpP" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25; + layer = 3.6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = 31 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpS" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpU" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bpV" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/truck/broken{ + dir = 1; + pixel_x = -32 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts_road/central) +"bpW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bpX" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"bpY" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -25; + pixel_y = 26 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts_road/central) +"bpZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"bqa" = ( +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqc" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqe" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"bqf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bqg" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/rock{ + density = 0; + pixel_x = 6; + pixel_y = -11 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqh" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqi" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bqj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bqk" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bql" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts_road/east) +"bqm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bqn" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"bqo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bqp" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bqq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"bqs" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqt" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqu" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bqw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"bqx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"bqy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"bqz" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqA" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"bqC" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqD" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqE" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bqG" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"bqI" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqJ" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"bqL" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"bqN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"bqO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"bqP" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqQ" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqR" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bqS" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_streets/north) +"bqT" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"bqU" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bqV" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -4; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bqW" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = -5 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bqX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"bqY" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bqZ" = ( +/obj/structure/flora/wood/trunk1, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bra" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"brb" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"brc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"brd" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bre" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"brf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"brg" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"brh" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bri" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"brj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/brown{ + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"brk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"brl" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"brm" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"brn" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = -10; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 11; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bro" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"brp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brr" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"brs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brt" = ( +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bru" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bry" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13; + pixel_x = -17 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brz" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 10; + pixel_y = -4; + layer = 2.98; + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brB" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brD" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brE" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brF" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"brG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brH" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"brI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"brJ" = ( +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 4; + pixel_y = 5; + current_rounds = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brL" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"brM" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_y = -8; + pixel_x = 8 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"brN" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"brO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brQ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brR" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brS" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 5; + pixel_y = 14; + dir = 1; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brT" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -13 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"brU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brV" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 5; + pixel_y = 14; + dir = 1; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"brZ" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 5; + pixel_y = 14; + dir = 1; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bsa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bsb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bsc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -17 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bsd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bse" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bsf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 5; + pixel_y = 14; + dir = 1; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bsg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bsh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bsi" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bsj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"bsk" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/oob) +"bsl" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bsm" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bsn" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bso" = ( +/turf/open/floor/corsat/arrow_west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bsp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bsq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bsr" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bss" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bst" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bsu" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"bsv" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"bsw" = ( +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"bsx" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bsy" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bsz" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bsA" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bsB" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bsC" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bsD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_y = -11 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bsE" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2) +"bsF" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsG" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsH" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsI" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bsK" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -31 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsN" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsO" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/oob) +"bsP" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"bsQ" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsR" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsS" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bsT" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bsU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bsX" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bsY" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"bsZ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bta" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"btb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"btc" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"btd" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bte" = ( +/turf/open/floor/almayer/plating, +/area/tyrargo/oob) +"btf" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btg" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bth" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bti" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"btk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"btl" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/landing_zone_2) +"btm" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards an underground ammo dump."; + name = "underground ammo dump sign" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards an underground ammo dump."; + name = "underground ammo dump sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btn" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2) +"bto" = ( +/turf/open_space, +/area/tyrargo/landing_zone_2) +"btp" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btr" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bts" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/landing_zone_2) +"btt" = ( +/turf/open/floor/plating, +/area/tyrargo/landing_zone_2) +"btu" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/oob) +"btv" = ( +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"btw" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btx" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"bty" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"btA" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"btC" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"btD" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btE" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btF" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"btG" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"btH" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"btI" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"btJ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btL" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btM" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"btN" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts_road/west) +"btP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"btQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"btR" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"btS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"btT" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"btU" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"btV" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"btW" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"btX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"btY" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"btZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bua" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"bub" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"buc" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bud" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"bue" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"buf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"bug" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"buh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bui" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"buj" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"buk" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bul" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/landing_zone_2) +"bum" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bun" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"buo" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bup" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"buq" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"bur" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bus" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"but" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"buu" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"buv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"buw" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/oob) +"bux" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"buy" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"buz" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"buA" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"buB" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/tyrargo/landing_zone_2) +"buC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"buD" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"buE" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"buF" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"buG" = ( +/obj/structure/cable/orange{ + icon_state = "5-8"; + pixel_x = 4; + pixel_y = -28; + level = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"buH" = ( +/obj/structure/cable/orange{ + icon_state = "4-10"; + level = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"buI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"buJ" = ( +/obj/structure/cable/orange{ + icon_state = "4-9"; + pixel_x = -6; + pixel_y = -15; + level = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"buK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"buL" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"buM" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"buN" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"buO" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"buP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"buQ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"buR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"buS" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"buT" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"buU" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"buV" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"buW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"buX" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2) +"buY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"buZ" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bva" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bvb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bvc" = ( +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/west) +"bvd" = ( +/turf/open/floor/almayer/plating, +/area/tyrargo/landing_zone_2) +"bve" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bvf" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"bvg" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob) +"bvh" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"bvi" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bvj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bvk" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bvm" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bvn" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"bvo" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/indoors/bunker/central_south) +"bvp" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = -28; + light_range = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"bvr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bvs" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bvt" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bvu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"bvv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2) +"bvw" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/landing_zone_2) +"bvx" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvy" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"bvz" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Orange{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"bvA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvD" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bvE" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bvF" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvG" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bvH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvL" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"bvM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvN" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvP" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/lower) +"bvQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bvR" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvS" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bvT" = ( +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -17; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bvU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bvV" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/road) +"bvW" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bvX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bvY" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bvZ" = ( +/obj/structure/fence/dark, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"bwa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bwb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bwc" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bwd" = ( +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"bwe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bwf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bwg" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"bwh" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bwi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bwj" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/outskirts_road/central) +"bwk" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"bwl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bwm" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/landing_zone_2/ceiling) +"bwn" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/landing_zone_2/ceiling) +"bwo" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bwp" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bwq" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "Tank Trap"; + layer = 3 + }, +/area/tyrargo/landing_zone_2/east_trench) +"bwr" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bws" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bwt" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bwu" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bwv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bww" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2) +"bwx" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bwy" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bwz" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2) +"bwA" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bwB" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bwC" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2/east_trench) +"bwD" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bwE" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bwF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bwG" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bwH" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 11; + pixel_x = 4; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bwI" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2) +"bwJ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bwK" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bwL" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bwM" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bwN" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bwO" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"bwP" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bwQ" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"bwR" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bwS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bwT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bwU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bwV" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "Tank Trap"; + layer = 3 + }, +/area/tyrargo/outdoors/outskirts/east) +"bwW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/turret/destroyed{ + dir = 1; + pixel_y = -38; + pixel_x = -31 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"bwX" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/landing_zone_2) +"bwY" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"bwZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bxa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"bxb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxc" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bxd" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bxe" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bxf" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"bxg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"bxh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bxi" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bxj" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bxk" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bxl" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/oob) +"bxm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"bxn" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"bxo" = ( +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"bxp" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"bxq" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"bxr" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bxs" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bxt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxu" = ( +/obj/structure/flora/wood/trunk2{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bxw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bxx" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bxy" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"bxz" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bxA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bxB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bxC" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bxD" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bxE" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bxF" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bxG" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bxH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bxI" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxK" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxL" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"bxN" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxO" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxP" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxQ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxR" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxS" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"bxT" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bxU" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bxV" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bxW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bxX" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bxY" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bxZ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bya" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"byb" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"byc" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"byd" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bye" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"byf" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"byg" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byh" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"byj" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/prop/rock{ + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byk" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byl" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bym" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byn" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"byp" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"byq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"byr" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bys" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byt" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"byu" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byv" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"byw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byx" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -11; + pixel_y = 2; + layer = 2.98; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"byy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"byz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"byA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"byB" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byC" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"byF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"byG" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"byI" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byL" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byM" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"byN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byP" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byQ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"byR" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byS" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byT" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byU" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"byV" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"byW" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byX" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"byY" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"byZ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bza" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzd" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bze" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bzf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bzg" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bzh" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"bzi" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bzj" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzk" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzl" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzm" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzn" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzo" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzp" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzq" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzs" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzt" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzu" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzv" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"bzx" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"bzy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bzz" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bzB" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzC" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzD" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzE" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzF" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bzG" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzH" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/structure/cargo_container/grant/left, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"bzJ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bzL" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bzM" = ( +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzN" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"bzO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bzP" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bzQ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bzR" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bzS" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bzT" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bzU" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzV" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzW" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bzX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bzY" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bzZ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bAa" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAd" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"bAe" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bAf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bAg" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bAh" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bAi" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bAj" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bAk" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bAl" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAm" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/security/ground) +"bAn" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAo" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAp" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAq" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAr" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAs" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAt" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAu" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bAv" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAw" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bAz" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bAA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bAB" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts_road/west) +"bAC" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bAD" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"bAE" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts_road/central) +"bAF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bAG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bAH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/central) +"bAI" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAJ" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts_road/central) +"bAK" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAL" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bAM" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bAN" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAO" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bAP" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bAR" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bAS" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAT" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAU" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob) +"bAV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bAW" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"bAX" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bAY" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/explosive/plastic/breaching_charge{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/item/explosive/plastic/breaching_charge{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"bAZ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBa" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bBb" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bBc" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bBd" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bBe" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bBf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"bBg" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bBh" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bBi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bBj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bBk" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bBl" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bBm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bBn" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bBo" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bBp" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bBq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBr" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBs" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bBt" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bBu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bBv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bBw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bBx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bBy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bBz" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bBA" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bBB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bBC" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bBD" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bBE" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bBF" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bBG" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bBH" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBI" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bBJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bBL" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bBM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bBN" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/indoors/bunker/central_south) +"bBO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bBP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bBQ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBR" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bBS" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bBT" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bBU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_west) +"bBV" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBW" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBX" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBY" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bBZ" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bCa" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bCb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bCc" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCd" = ( +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bCe" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bCf" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bCg" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/indoors/bunker/central_south) +"bCh" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bCi" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bCj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bCk" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"bCl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bCm" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bCn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"bCo" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bCp" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bCq" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bCr" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCs" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bCt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCu" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bCv" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bCw" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 15; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"bCx" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCy" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bCz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bCA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bCB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 8; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bCC" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bCD" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bCF" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/power_substation_outskirt) +"bCG" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 4; + pixel_y = -34 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bCH" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bCI" = ( +/obj/structure/tent/big, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bCJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bCK" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bCL" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bCM" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCN" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + layer = 2.2 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"bCO" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/south_upper) +"bCP" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bCR" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bCS" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bCT" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bCU" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bCV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -28 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bCW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bCX" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bCY" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bCZ" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bDa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bDb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bDc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDd" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bDe" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDf" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bDh" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bDi" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bDj" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bDk" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bDl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDm" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/central) +"bDn" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDo" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDp" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bDq" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"bDr" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDs" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDt" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bDu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bDv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bDw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bDx" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bDy" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bDB" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bDC" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bDD" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bDE" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDF" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDG" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bDH" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bDI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bDJ" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDK" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDL" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"bDN" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDO" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDP" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bDR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bDS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bDT" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/power_substation_outskirt) +"bDU" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bDV" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/indoors/bunker/central) +"bDW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bDX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bDY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bDZ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bEa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bEb" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEc" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEd" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEe" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bEg" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central) +"bEh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bEi" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bEj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"bEk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central) +"bEl" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4; + layer = 5.8 + }, +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bEm" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bEn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEo" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"bEq" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/east) +"bEr" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bEs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"bEt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bEu" = ( +/obj/structure/prop/vehicles/aircraft/vtol/damaged{ + pixel_x = -31; + pixel_y = -24 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEv" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEw" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bEx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bEy" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bEz" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEA" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"bEB" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"bED" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = -18; + pixel_y = -7; + layer = 3.1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEF" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/flora/wood/stick3, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEI" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEK" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bEL" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bEM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bEO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEP" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"bEQ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bER" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bES" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bET" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bEU" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = 4; + pixel_x = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bEV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/flora/wood/stick2{ + pixel_x = -5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEW" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bEX" = ( +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bEY" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bEZ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bFa" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bFb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bFc" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bFd" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.71 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob/outdoors) +"bFe" = ( +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700"; + pixel_x = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFg" = ( +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bFh" = ( +/obj/item/parachute, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bFi" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bFj" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bFk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bFl" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bFm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bFn" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"bFo" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"bFp" = ( +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob/outdoors) +"bFq" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bFr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bFs" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"bFt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bFu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bFv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bFw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"bFx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bFy" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFz" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bFC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -6; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bFD" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bFE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bFF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bFG" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bFH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"bFI" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFK" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -25; + pixel_y = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFL" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"bFM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bFN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bFO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bFP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bFQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bFR" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bFS" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"bFT" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bFU" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"bFV" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bFW" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bFX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bFY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bFZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bGa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bGb" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGc" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGd" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bGe" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bGf" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bGg" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"bGh" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bGl" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"bGm" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGn" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/flora/wood/stick4{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGo" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGp" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/east) +"bGq" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bGt" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGu" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGv" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bGw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bGx" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bGy" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bGz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bGA" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bGB" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bGC" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bGD" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGE" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGG" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGH" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGI" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"bGK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bGL" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bGM" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bGN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bGO" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGP" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGQ" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGR" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bGS" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGT" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bGU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bGV" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bGW" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_3" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bGX" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -3; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 7; + density = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"bGY" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bGZ" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bHa" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bHb" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bHc" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bHd" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/east) +"bHe" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bHf" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/apc/destroyed{ + pixel_x = -32 + }, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/east) +"bHg" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bHh" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bHi" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bHj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bHk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"bHl" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bHm" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bHn" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bHo" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bHp" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bHq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"bHr" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bHs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bHt" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bHu" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bHv" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bHw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bHx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -10; + pixel_x = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bHy" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bHz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bHA" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bHB" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bHC" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bHD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bHE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"bHF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHJ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"bHK" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bHL" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bHM" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bHN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bHP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"bHQ" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bHR" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bHS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bHT" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bHU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bHV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bHW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bHX" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bHZ" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bIa" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bIb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bIc" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bId" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bIe" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bIf" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bIg" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bIh" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bIi" = ( +/obj/structure/fence/dark, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"bIj" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 19; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 20; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -8; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 13; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 13; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bIk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bIl" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bIm" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bIn" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"bIo" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bIp" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"bIq" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bIr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bIs" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bIt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bIu" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/landing_zone_1) +"bIv" = ( +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"bIw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bIx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bIy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bIz" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bIA" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bIB" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts_road/central) +"bIC" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"bID" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/outskirts/east) +"bIE" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bIF" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"bIG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_tunnel) +"bIH" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"bII" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bIJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bIK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bIL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"bIM" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bIN" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bIO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bIP" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/prop/rock, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bIQ" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bIR" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bIS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bIT" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bIU" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bIV" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bIW" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bIX" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"bIY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"bIZ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"bJa" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1) +"bJb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bJc" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bJd" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/map_item, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1) +"bJe" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bJf" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bJg" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bJh" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bJi" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bJj" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bJk" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"bJl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/outskirts/east) +"bJm" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"bJn" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"bJo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bJp" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bJq" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bJr" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bJs" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bJt" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bJu" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"bJv" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"bJw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bJx" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bJy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"bJz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"bJA" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bJB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bJC" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bJD" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bJE" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bJF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/largecrate/random, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bJG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bJH" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"bJI" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.0; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = 1; + pixel_y = -2; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bJJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"bJK" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"bJL" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_tunnel) +"bJM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bJN" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bJO" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bJP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bJQ" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"bJR" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"bJS" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bJT" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bJU" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bJV" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/indoors/bunker/north_south) +"bJW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bJX" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"bJY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"bJZ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.0; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -2; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bKa" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.0; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -2; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bKb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bKc" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"bKd" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"bKe" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bKf" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/landing_zone_1) +"bKg" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"bKh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"bKi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bKj" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bKk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"bKm" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"bKn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bKo" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bKp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bKq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"bKr" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bKs" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bKt" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKv" = ( +/obj/structure/flora/grass/temperate, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bKw" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"bKx" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_1) +"bKy" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKz" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bKA" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bKB" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ + name = "Medical Cabinet"; + pixel_y = -32 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"bKC" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north_south) +"bKD" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"bKE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bKF" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"bKG" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bKH" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/central) +"bKI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/no_tunnel) +"bKJ" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"bKL" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKM" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2/no_tunnel) +"bKN" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = -5 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bKO" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bKP" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"bKQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bKR" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bKS" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bKT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/outskirts/east) +"bKU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bKX" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bKY" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"bKZ" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bLa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLb" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLc" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLd" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLe" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/stack/medical/ointment/random_amount{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"bLf" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bLg" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bLh" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bLi" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bLj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bLk" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bLl" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bLm" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bLn" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLo" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bLp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bLr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bLs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLu" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/east) +"bLv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bLw" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"bLx" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bLy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bLz" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bLA" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"bLB" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bLC" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bLD" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/central) +"bLE" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"bLF" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLG" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"bLH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bLJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bLK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2/strip) +"bLL" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2/strip) +"bLM" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.74 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bLN" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2/strip) +"bLO" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bLP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bLQ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLR" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLU" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLV" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bLW" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "19"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bLX" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bLY" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bLZ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"bMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bMb" = ( +/obj/structure/flora/tree/tyrargo/tree_3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bMc" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bMd" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2/strip) +"bMe" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bMf" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bMg" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bMh" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/structure/machinery/door/window/brigdoor/southleft, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/ammo_box/rounds/empty, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"bMi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMm" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bMn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"bMo" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"bMp" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bMq" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bMr" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMs" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bMt" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bMu" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"bMv" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bMw" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"bMx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bMz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bMA" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"bMB" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"bMC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bMD" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/cable/orange{ + icon_state = "8-10"; + pixel_x = -4; + pixel_y = -7; + level = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bME" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMF" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMG" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMH" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bMI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/flora/wood/stick1, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"bMJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"bMK" = ( +/turf/open_space, +/area/tyrargo/landing_zone_1/west_trench) +"bML" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bMM" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bMN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMO" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMR" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMT" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMU" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMW" = ( +/turf/closed/wall/wood, +/area/tyrargo/landing_zone_1/ceiling) +"bMX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 9; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 7 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bMY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bMZ" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNa" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNc" = ( +/obj/effect/glowshroom, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"bNd" = ( +/obj/item/reagent_container/blood/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNf" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bNg" = ( +/turf/open/floor/plating/wood_broken5, +/area/tyrargo/landing_zone_1/ceiling) +"bNh" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 19; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bNi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bNj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNm" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNn" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNo" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bNp" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bNq" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNr" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNs" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "10"; + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bNt" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bNu" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"bNv" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNx" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNy" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNz" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bNA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"bNB" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNC" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bND" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bNE" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12"; + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bNF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNG" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNI" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bNJ" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -28; + pixel_y = 5; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bNK" = ( +/obj/structure/flora/tree/tyrargo/tree_2, +/obj/structure/flora/tree/dead/tree_5{ + pixel_y = 6; + pixel_x = -26; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bNL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bNM" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bNN" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNO" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "10"; + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bNP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bNQ" = ( +/turf/closed/wall/wood, +/area/tyrargo/landing_zone_1) +"bNR" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNS" = ( +/obj/structure/flora/wood/trunk2{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bNT" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNU" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNV" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bNW" = ( +/obj/structure/flora/wood/trunk1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bNX" = ( +/obj/structure/prop/tyrargo/large_tents/command, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"bNY" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bNZ" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOa" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/item/ammo_magazine/rifle/m4ra/custom/incendiary{ + pixel_x = -4; + pixel_y = -5; + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOb" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOc" = ( +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOd" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"bOe" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"bOf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"bOg" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bOh" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/apartment/south_upper) +"bOi" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"bOj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bOk" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bOl" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bOm" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOn" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOp" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bOq" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bOr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOs" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOt" = ( +/obj/item/prop{ + desc = "A manual, crew-operated mortar system intended to rain down 80mm goodness on anything it's aimed at. Uses an advanced targeting computer. This one has fired so many rounds the barrel is warped, leaving it non-functional"; + icon = 'icons/obj/structures/mortar.dmi'; + icon_state = "c_mortar_m402"; + name = "M402 mortar (non-functional)"; + dir = 8; + pixel_y = 18; + pixel_x = -14; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOu" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bOv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"bOw" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bOx" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"bOy" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bOz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOA" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOB" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bOC" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"bOD" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bOE" = ( +/obj/structure/prop/turret{ + dir = 8; + pixel_x = 16; + pixel_y = -3; + bound_width = 32 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOF" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bOG" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bOH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bOI" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOJ" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOK" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"bOL" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bOM" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bON" = ( +/obj/structure/prop/invuln/remote_console_pod, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bOO" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bOP" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/indoors/bunker/north) +"bOQ" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bOR" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOT" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bOU" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bOV" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bOW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bOX" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/m37a{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bOZ" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bPa" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bPb" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"bPc" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"bPd" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"bPe" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bPf" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bPg" = ( +/obj/structure/flora/tree/tyrargo_small, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bPi" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bPj" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -5; + pixel_y = -12 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 16; + pixel_x = -15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bPk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPl" = ( +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north) +"bPm" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north) +"bPn" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bPo" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bPp" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bPq" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bPr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bPs" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bPt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north) +"bPu" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north) +"bPv" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north) +"bPw" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bPx" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"bPy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bPz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"bPA" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"bPB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bPC" = ( +/obj/structure/flora/wood/trunk1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bPD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPE" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north) +"bPF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bPG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bPH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bPI" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/bunker{ + layer = 3; + name = "Tank Trap" + }, +/area/tyrargo/landing_zone_1/no_mans_land) +"bPJ" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bPK" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bPL" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bPM" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bPN" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/landing_zone_1/comms) +"bPO" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/landing_zone_1/comms) +"bPP" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPQ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPR" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPS" = ( +/obj/item/prop{ + desc = "A manual, crew-operated mortar system intended to rain down 80mm goodness on anything it's aimed at. Uses an advanced targeting computer. This one has fired so many rounds the barrel is warped, leaving it non-functional"; + icon = 'icons/obj/structures/mortar.dmi'; + icon_state = "c_mortar_m402"; + name = "M402 mortar (non-functional)"; + dir = 8; + pixel_y = 18; + pixel_x = -14; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"bPU" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bPV" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -33; + pixel_y = 19; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bPW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bPX" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -7; + pixel_y = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bPY" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bPZ" = ( +/obj/item/clothing/head/beret/cm/black/army, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/landing_zone_1/comms) +"bQa" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north) +"bQb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bQc" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQd" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"bQe" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"bQf" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bQg" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bQh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/flora/wood/stick3{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bQi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bQj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"bQl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bQn" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1) +"bQo" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bQp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bQq" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -25; + pixel_y = 2; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bQr" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bQs" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bQt" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"bQu" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bQv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bQw" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQy" = ( +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bQz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bQA" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"bQB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQC" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"bQD" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"bQE" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"bQF" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bQG" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"bQI" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bQJ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"bQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"bQL" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"bQM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -6; + pixel_x = 3 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bQN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/stack/rods{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bQO" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bQP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"bQQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_1) +"bQR" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bQS" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"bQT" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bQU" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bQV" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bQW" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bQX" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bQY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"bQZ" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"bRa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"bRb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"bRc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRd" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRf" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_y = -8; + pixel_x = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bRg" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bRh" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRl" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRm" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRr" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRs" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/west_trench) +"bRt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRw" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRy" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRz" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRD" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"bRE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRF" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bRG" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "Tank Trap"; + layer = 3 + }, +/area/tyrargo/outdoors/outskirts/central) +"bRH" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRI" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"bRJ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRM" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRQ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/east) +"bRS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRT" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bRX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bRY" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"bRZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSb" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSd" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSe" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSf" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"bSh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bSi" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"bSl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSm" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSn" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSq" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSr" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSs" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSt" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSu" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSv" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSw" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"bSx" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSy" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSz" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSA" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSC" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSD" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSE" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSF" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSH" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSJ" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east_trench) +"bSK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"bSL" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSM" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSO" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/bunker{ + layer = 3; + name = "Tank Trap" + }, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSP" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSQ" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"bSR" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSS" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bST" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"bSW" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSX" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSY" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bSZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTa" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTc" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTd" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTe" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTf" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTh" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTi" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTj" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTk" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTl" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTm" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTn" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTo" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTp" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTq" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTr" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTs" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"bTt" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTu" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTv" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTw" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTx" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTy" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"bTz" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/landing_zone_2) +"bTA" = ( +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bTB" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/central) +"bTC" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts/central) +"bTD" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/outskirts/central) +"bTE" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts/central) +"bTF" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/outskirts/central) +"bTG" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts/central) +"bTH" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/outskirts/central) +"bTI" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/outdoors/outskirts/central) +"bTJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/outskirts/central) +"bTK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/vehicles/tank/humvee/destroyed{ + dir = 4; + pixel_x = -30; + pixel_y = -14 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"bTL" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/comms/upper) +"bTM" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/outdoors/colony_exterior/north) +"bTN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"bTO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/vehicles/tank/humvee/turret{ + dir = 8; + pixel_x = -33; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bTP" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTQ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTR" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTT" = ( +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTU" = ( +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTV" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTW" = ( +/turf/open/floor/corsat/redcorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTX" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTY" = ( +/obj/structure/cable/white{ + icon_state = "4-5"; + pixel_x = -11; + pixel_y = -4; + level = 2 + }, +/obj/structure/cable/white{ + icon_state = "8-10"; + pixel_x = 20; + pixel_y = 11; + level = 2 + }, +/obj/structure/cable/white{ + icon_state = "6-10"; + pixel_y = 25; + pixel_x = -7; + level = 2 + }, +/turf/open/floor/corsat/redcorner, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bTZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUe" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/arrow_west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUf" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUh" = ( +/turf/open/floor/corsat/green/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUl" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUo" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUp" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUq" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUr" = ( +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green/southeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUt" = ( +/turf/open/floor/corsat/blue/southwest, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/green/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/ship_ammo/heavygun, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUF" = ( +/turf/open/floor/corsat/blue/northwest, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUG" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUJ" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green/northeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUN" = ( +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUO" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUP" = ( +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUQ" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUS" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUT" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/mall) +"bUX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bUZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVa" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVd" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/tank/bison/open{ + dir = 8; + pixel_y = -28; + pixel_x = -18; + layer = 2.9 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVg" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"bVi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVl" = ( +/turf/open/floor/corsat/blue/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVm" = ( +/turf/open/floor/corsat/blue/northeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/northeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/southwest, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"bVs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVu" = ( +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVv" = ( +/turf/open/floor/corsat/red/southwest, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVw" = ( +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVz" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/redcorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/redcorner, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVD" = ( +/mob/living/simple_animal/small/mouse/rat/gray, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/guns, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVF" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVG" = ( +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/northwest, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVJ" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 29 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"bVK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/redcorner/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/guns, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/heavygun, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVQ" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -15 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVR" = ( +/obj/structure/filtration/collector_pipes{ + layer = 5; + pixel_x = 8; + pixel_y = 13 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"bVS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/southeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVT" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bVU" = ( +/obj/structure/girder, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/redcorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/lisa, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVX" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bVY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bVZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWc" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWd" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWe" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWf" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"bWg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWl" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWm" = ( +/turf/open/floor/corsat/red/northwest, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWn" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"bWo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWq" = ( +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWr" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/corsat/red/northeast, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWt" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWx" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWA" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWC" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"bWD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWE" = ( +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWF" = ( +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWG" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWH" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWI" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWJ" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWN" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWO" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWP" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWQ" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWT" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWU" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWV" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWX" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bWZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXc" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXh" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXi" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXj" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXl" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXm" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXn" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXo" = ( +/mob/living/simple_animal/small/mouse/rat/brown, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXq" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXr" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXs" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXt" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXu" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXw" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 30 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXx" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXF" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXG" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXI" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXJ" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXN" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXQ" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"bXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/sign/safety/two{ + pixel_y = -7; + pixel_x = 32 + }, +/obj/structure/sign/safety/nine{ + pixel_y = -7; + pixel_x = 45 + }, +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 7; + pixel_x = 32; + desc = "Semiotic Standard denoting bunker network designation."; + name = "Bunker Network - Sector Epsilon 29" + }, +/obj/structure/sign/safety/north{ + pixel_x = 45; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXS" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/small/mouse/rat/black, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"bXT" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXU" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXV" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXW" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXX" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bXY" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bXZ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bYa" = ( +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bYb" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/bunker/south) +"bYc" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/south) +"bYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/rope{ + pixel_x = 12; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/tyrargo/underground/bunker/south) +"bYe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purplecorner/north, +/area/tyrargo/underground/bunker/south) +"bYf" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"bYg" = ( +/obj/structure/sign/safety/north{ + pixel_x = 45; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 7; + pixel_x = 32; + desc = "Semiotic Standard denoting bunker network designation."; + name = "Bunker Network - Sector Epsilon 29" + }, +/obj/structure/sign/safety/nine{ + pixel_y = -7; + pixel_x = 45 + }, +/obj/structure/sign/safety/two{ + pixel_y = -7; + pixel_x = 32 + }, +/turf/open/floor/corsat/purplecorner/east, +/area/tyrargo/underground/bunker/south) +"bYh" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/black2/northwest, +/area/tyrargo/underground/bunker/south) +"bYj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYn" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"bYo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/almayer/black2/southwest, +/area/tyrargo/underground/bunker/south) +"bYp" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYq" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -10; + pixel_y = 23 + }, +/turf/open/floor/almayer, +/area/tyrargo/underground/bunker/south) +"bYr" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/ladder{ + id = "bunker_lad"; + height = 1 + }, +/turf/open/floor/almayer, +/area/tyrargo/underground/bunker/south) +"bYt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/purple/west, +/area/tyrargo/underground/bunker/south) +"bYu" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYv" = ( +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYw" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bYx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bYy" = ( +/mob/living/simple_animal/small/mouse/rat/gray, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bYz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bYA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green, +/area/tyrargo/underground/bunker/south) +"bYB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bYC" = ( +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/bunker/south) +"bYD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bYE" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bYF" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bYG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bYH" = ( +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bYI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYJ" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bYK" = ( +/turf/open/floor/corsat/green/north, +/area/tyrargo/underground/bunker/south) +"bYL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bYM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green/north, +/area/tyrargo/underground/bunker/south) +"bYN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/bunker/south) +"bYO" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bYR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/surface/rack, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/m56d{ + pixel_x = 4; + pixel_y = 5; + current_rounds = 5 + }, +/obj/item/ammo_magazine/m56d{ + pixel_x = -9; + pixel_y = 9; + current_rounds = 45 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bYV" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/underground/bunker/south) +"bYW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bYY" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bYZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bZa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/south) +"bZb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/south) +"bZc" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bZd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bZe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bZf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/bunker/south) +"bZg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bZh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bZi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bZj" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bZk" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZl" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bZm" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bZn" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZo" = ( +/turf/open/floor/corsat/brown/north, +/area/tyrargo/underground/oob_area) +"bZp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bZs" = ( +/obj/structure/girder, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZu" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/bunker/south) +"bZv" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"bZw" = ( +/turf/open/floor/corsat/brown/north, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"bZx" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZB" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZC" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZD" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"bZE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_south, +/area/tyrargo/underground/bunker/south) +"bZF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_south, +/area/tyrargo/underground/bunker/south) +"bZG" = ( +/turf/open/floor/corsat/browncorner/east, +/area/tyrargo/underground/bunker/south) +"bZH" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -1; + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/tyrargo/underground/bunker/south) +"bZJ" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bZL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/bunker/south) +"bZM" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bZN" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"bZO" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"bZP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZQ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/bunker/south) +"bZR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"bZT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"bZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZV" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/stack/medical/ointment/random_amount{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"bZW" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner, +/area/tyrargo/underground/bunker/south) +"bZY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"bZZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"caa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"cab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"cac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -15 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"cad" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 12; + pixel_x = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"cae" = ( +/turf/open/floor/corsat/browncorner/north, +/area/tyrargo/underground/bunker/south) +"caf" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"cag" = ( +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/bunker/south) +"cah" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"cai" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 7; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"caj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/brown/west, +/area/tyrargo/underground/bunker/south) +"cak" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"cal" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/south) +"cam" = ( +/mob/living/simple_animal/small/mouse/rat/brown, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"can" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"cao" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"cap" = ( +/turf/open/floor/corsat/blue/north, +/area/tyrargo/underground/bunker/south) +"caq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"car" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cas" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"cat" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cau" = ( +/turf/closed/wall/wood, +/area/tyrargo/underground/bunker/north) +"cav" = ( +/turf/open/floor/corsat/browncorner, +/area/tyrargo/underground/bunker/south) +"caw" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -11; + pixel_y = -9; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 8; + pixel_x = 13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 7; + pixel_x = -9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -8; + dir = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cax" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cay" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"caz" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"caA" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/bunker/north) +"caB" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#8e98a0" + }, +/obj/item/tool/soap/deluxe, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"caC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/north) +"caD" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/north) +"caE" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caF" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caG" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caH" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caI" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caJ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"caK" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"caL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"caM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"caN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"caO" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"caP" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caQ" = ( +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caR" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"caT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"caU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caV" = ( +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"caW" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caX" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caY" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"caZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"cba" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cbb" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -11; + pixel_y = -9; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -9; + pixel_x = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 7; + pixel_x = 13 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = 11; + pixel_x = -12 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -1; + dir = 8 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cbc" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 4; + pixel_y = -5; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cbd" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"cbe" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cbf" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cbg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cbh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cbi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cbj" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cbk" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/oob_area) +"cbl" = ( +/obj/structure/prop/tyrargo/traffic_signal, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"cbm" = ( +/turf/open/floor/corsat/red/southwest, +/area/tyrargo/underground/bunker/north) +"cbn" = ( +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/north) +"cbo" = ( +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/north) +"cbp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cbq" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = 2; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 7; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cbr" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 15; + pixel_y = 2; + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -2; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cbs" = ( +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cbt" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/tyrargo/underground/bunker/north) +"cbu" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cbv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/bunker/north) +"cbw" = ( +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/north) +"cbx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner, +/area/tyrargo/underground/bunker/north) +"cby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/north) +"cbz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/north) +"cbA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cbB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreencorner, +/area/tyrargo/underground/bunker/north) +"cbC" = ( +/turf/open/floor/corsat/darkgreen, +/area/tyrargo/underground/bunker/north) +"cbD" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/east, +/area/tyrargo/underground/bunker/north) +"cbE" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cbF" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_5{ + light_on = 0; + light_power = 0; + light_range = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"cbG" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cbH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"cbI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cbJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cbK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/north) +"cbL" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cbM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/bunker/north) +"cbN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_south, +/area/tyrargo/underground/bunker/north) +"cbO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cbP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cbQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/north) +"cbR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/north) +"cbS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/northeast, +/area/tyrargo/underground/bunker/north) +"cbT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/tyrargo/underground/bunker/north) +"cbU" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/north, +/area/tyrargo/underground/bunker/north) +"cbV" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/darkgreen/north, +/area/tyrargo/underground/bunker/north) +"cbW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cbX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreencorner/east, +/area/tyrargo/underground/bunker/north) +"cbY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cbZ" = ( +/turf/open/floor/corsat/red/northwest, +/area/tyrargo/underground/bunker/north) +"cca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/north) +"ccb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"ccc" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"ccd" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cce" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"ccf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/north, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"ccg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/north, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cch" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cci" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccj" = ( +/mob/living/simple_animal/small/mouse/rat/gray, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cck" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccl" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"ccm" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccn" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cco" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccp" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 45 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"ccs" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cct" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"ccv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = -9; + pixel_y = 9; + current_rounds = 45 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"ccx" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccy" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccz" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"ccB" = ( +/obj/effect/glowshroom, +/mob/living/simple_animal/small/mouse/rat/white, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"ccC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"ccD" = ( +/obj/effect/glowshroom, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccE" = ( +/turf/open/floor/corsat/arrow_south, +/area/tyrargo/underground/bunker/north) +"ccF" = ( +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/two{ + pixel_x = 45; + pixel_y = -8 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 39; + pixel_y = 7; + name = "Bunker Network - Sector Tango 12"; + desc = "Semiotic Standard denoting bunker network designation." + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"ccG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccH" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = 7 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"ccI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = 7 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccK" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/north) +"ccM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccN" = ( +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"ccO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccP" = ( +/mob/living/simple_animal/small/mouse/rat/brown, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccQ" = ( +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/north) +"ccR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccS" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/north) +"ccT" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_y = -5; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccV" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/bunker/north) +"ccW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ccY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 15 + }, +/obj/structure/largecrate/random, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"ccZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cda" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/north) +"cdb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cde" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"cdf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdg" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cdh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/small/mouse/rat/brown, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cdk" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cdl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cdm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cdn" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cdo" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"cdp" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdq" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cds" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cdt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdu" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"cdv" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cdw" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/bunker/north) +"cdx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = 7 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdz" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = -15 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cdA" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdC" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 4.1; + pixel_x = 6 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdE" = ( +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdF" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cdG" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cdH" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -3; + pixel_x = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cdI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/north) +"cdJ" = ( +/turf/open/floor/corsat/redcorner, +/area/tyrargo/underground/bunker/north) +"cdK" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/north) +"cdL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdM" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdN" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cdO" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cdP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cdQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/north) +"cdR" = ( +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/tyrargo/indoors/apartment/south_ground) +"cdS" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/north) +"cdT" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdU" = ( +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/north) +"cdV" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cdX" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"cdY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cdZ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cea" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"ceb" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/north) +"cec" = ( +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/north) +"ced" = ( +/turf/open/floor/corsat/red/northeast, +/area/tyrargo/underground/bunker/north) +"cee" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"cef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ + dir = 1; + layer = 5; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ceg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/north) +"ceh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cei" = ( +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cej" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red/northwest, +/area/tyrargo/underground/bunker/north) +"cek" = ( +/turf/open/floor/corsat/browncorner/north, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"cel" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cem" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"cen" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ceo" = ( +/turf/open/floor/corsat/brown/west, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"cep" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/browncorner/west, +/area/tyrargo/underground/oob_area) +"ceq" = ( +/obj/structure/prop/ice_colony/ground_wire{ + layer = 4.1 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cer" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"ces" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cet" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ceu" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/east, +/area/tyrargo/indoors/bunker/central_south) +"cev" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cew" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/central) +"cex" = ( +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central) +"cey" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/central) +"cez" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central) +"ceA" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north_south) +"ceB" = ( +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"ceC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 9 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north_south) +"ceD" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north_south) +"ceE" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"ceF" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"ceG" = ( +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/outdoors/outskirts/river) +"ceH" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"ceI" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall) +"ceJ" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/ground) +"ceK" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"ceL" = ( +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"ceM" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"ceN" = ( +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"ceO" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"ceP" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"ceQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"ceR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/mall) +"ceS" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"ceT" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"ceU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ceV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/underground/bunker/north) +"ceW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ceX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"ceY" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/north) +"ceZ" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cfa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cfb" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"cfc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall) +"cfd" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"cfe" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cff" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cfg" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"cfh" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_streets/south_west) +"cfi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cfj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"cfk" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = 4; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cfl" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfm" = ( +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/south_west) +"cfn" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfo" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfp" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"cfq" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"cfr" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfs" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cft" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfu" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfv" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfw" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfx" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfy" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfz" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"cfA" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfB" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfC" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfD" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"cfF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"cfG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cfH" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cfI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfM" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cfS" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfT" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfU" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfY" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cfZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cga" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgb" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgc" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"cgd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cge" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cgf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgg" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"cgh" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgi" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cgm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgn" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cgo" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/security/ground) +"cgp" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"cgr" = ( +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"cgs" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgt" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgu" = ( +/turf/closed/wall/hybrisa/marhsalls/unmeltable, +/area/tyrargo/indoors/security/ground) +"cgv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/almayer/blue/north, +/area/tyrargo/landing_zone_2/ceiling) +"cgx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgy" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgz" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgA" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/market/ground) +"cgB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/market/ground) +"cgC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_east) +"cgD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_east) +"cgE" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/security/ground) +"cgF" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/security/ground) +"cgG" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgH" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cgI" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/tyrargo/outdoors/colony_streets/south_west) +"cgK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"cgL" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_east) +"cgM" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"cgN" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_east) +"cgO" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cgP" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cgQ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"cgR" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"cgS" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/market/ground) +"cgT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/market/ground) +"cgU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/market/ground) +"cgV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/market/ground) +"cgW" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/market/ground) +"cgX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_east) +"cgY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east{ + start_charge = 30 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"cgZ" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cha" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chb" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"chc" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"chd" = ( +/turf/open/floor/strata/green4/west, +/area/tyrargo/indoors/market/ground) +"che" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chf" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chg" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/indoors/apartment/south_ground) +"chh" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"chj" = ( +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"chk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"chl" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chm" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chn" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cho" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = 4; + pixel_x = -25 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"chp" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"chq" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/ground) +"chr" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 15; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -11; + pixel_y = 2; + layer = 2.98; + dir = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"chs" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cht" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/sewer_treatment/ground) +"chu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/sewer_treatment/ground) +"chv" = ( +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"chw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"chx" = ( +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"chy" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"chz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"chA" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"chB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/ground) +"chC" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/east) +"chD" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"chE" = ( +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"chF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"chG" = ( +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"chH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"chI" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"chJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"chK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"chL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"chM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"chN" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/south_west) +"chO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/south_west) +"chP" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"chQ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"chR" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"chS" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"chT" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"chU" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/south_east) +"chV" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/security/ground) +"chW" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/security/ground) +"chX" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/south_east) +"chY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"chZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"cia" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cib" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cic" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cid" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cie" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/security/ground) +"cif" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/security/ground) +"cig" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/security/ground) +"cih" = ( +/turf/open/floor/plating/burnt_platingdmg3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cii" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cij" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cik" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/upper) +"cil" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cim" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cin" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cio" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/security/ground) +"cip" = ( +/turf/open/floor/plating/burnt_platingdmg3, +/area/tyrargo/indoors/security/ground) +"ciq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cir" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cis" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/sewer_treatment/ground) +"cit" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ciu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"civ" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciw" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/security/ground) +"cix" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ciy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"ciz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciA" = ( +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciB" = ( +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/obj/structure/sign/poster/wylogo{ + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"ciD" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ciE" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ciF" = ( +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"ciG" = ( +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"ciH" = ( +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciI" = ( +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciJ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"ciK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ciL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"ciM" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ciN" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciO" = ( +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"ciQ" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/security/ground) +"ciR" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ciS" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ciT" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"ciU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"ciV" = ( +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ciW" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"ciX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"ciY" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/invuln/rope{ + pixel_x = -7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"ciZ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"cja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fence/dark, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjb" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjc" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjd" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"cje" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cjf" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cjg" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cjh" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cji" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cjj" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"cjk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"cjl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"cjm" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"cjo" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"cjq" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cjr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cjs" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cjt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cju" = ( +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjv" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = -28; + light_range = 1; + pixel_y = 5 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cjw" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 32; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cjx" = ( +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cjy" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"cjz" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"cjA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjB" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/colony_floodlight/traffic/alt{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjF" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"cjG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/west) +"cjH" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"cjI" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"cjJ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjK" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjL" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"cjM" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/vehicles/Meridian/Turquoise{ + dir = 1; + pixel_y = -8; + icon_state = "meridian_turquoise_damage_3"; + health = 1250; + layer = 6 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"cjN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cjO" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"cjP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjQ" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjR" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = -9; + pixel_y = -28 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"cjS" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cjT" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjU" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjV" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cjW" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"cjX" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cjY" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = -9; + pixel_y = -28 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"cjZ" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cka" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_y = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ckb" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Pink{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ckc" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/vehicles/Meridian/Red{ + icon_state = "meridian_red_damage_3"; + health = 1250; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -7; + pixel_y = 18; + layer = 6 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ckd" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cke" = ( +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/west) +"ckf" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"ckg" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"cki" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckk" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"ckl" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"ckm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall) +"ckn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"cko" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_east) +"ckp" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"ckq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel/hybrisa/grate, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/west) +"ckr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cks" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckt" = ( +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/mall) +"cku" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/tool/shovel, +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/ground) +"ckv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"ckw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"ckx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"cky" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"ckz" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"ckA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"ckC" = ( +/obj/item/trash/uscm_mre, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/east) +"ckD" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"ckE" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/museum_storage/ground) +"ckF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"ckG" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"ckH" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckI" = ( +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckJ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"ckK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/east) +"ckL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/indoors/museum_storage/ground) +"ckM" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"ckN" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + pixel_x = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"ckO" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"ckP" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"ckQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"ckR" = ( +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/west) +"ckS" = ( +/obj/structure/shuttle/part/dropship3/nose_front_left, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"ckT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"ckU" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"ckV" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"ckW" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/south_ground) +"ckX" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/apartment/south_ground) +"ckY" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"ckZ" = ( +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_west) +"cla" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"clb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"clc" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"cld" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/east) +"cle" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/light/spot, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"clf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "tyrargo_carpark_south"; + name = "Carpark Entrance Barrier" + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"clg" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"clh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "tyrargo_carpark_south"; + name = "\improper Barrier"; + vehicle_resistant = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cli" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"clj" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"clk" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cll" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"clm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cln" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"clo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"clp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"clq" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"clr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"cls" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"clt" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"clu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"clv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"clw" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"clx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"cly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/west) +"clz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"clA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/west) +"clB" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/north_ground) +"clC" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"clD" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_ground) +"clE" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"clF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"clG" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"clH" = ( +/obj/effect/blocker/water, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/museum_carpark) +"clI" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"clJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"clK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"clL" = ( +/obj/structure/closet/bodybag, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_ground) +"clM" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_ground) +"clN" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"clO" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"clP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"clQ" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"clR" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"clS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"clT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/engineering/ground) +"clU" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/engineering/ground) +"clV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/west) +"clW" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/west) +"clX" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"clY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"clZ" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret/destroyed{ + dir = 8; + pixel_x = -47; + pixel_y = -68 + }, +/obj/structure/prop/vehicles/tank/longstreet/module/slauncher/destroyed{ + pixel_x = -82; + pixel_y = -16; + layer = 2.9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cma" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/ground) +"cmb" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/oob) +"cmc" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"cmd" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"cme" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"cmf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"cmg" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cmh" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"cmi" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cmj" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/ground) +"cmk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"cml" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/ground) +"cmm" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"cmn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"cmo" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2/no_tunnel) +"cmp" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cmq" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cmr" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/engineering/ground) +"cms" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"cmt" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"cmu" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"cmv" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Pink{ + dir = 1; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cmw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/west) +"cmx" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/area/tyrargo/indoors/engineering/ground) +"cmy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/engineering/ground) +"cmz" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cmA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/engineering/ground) +"cmB" = ( +/turf/open/floor/hybrisa/metal/zbrownfloor1/northeast, +/area/tyrargo/indoors/engineering/ground) +"cmC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"cmD" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"cmE" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"cmF" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"cmG" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"cmH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "tyrargo_carpark_north"; + name = "\improper Barrier"; + vehicle_resistant = 1; + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cmI" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/no_tunnel) +"cmJ" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/west) +"cmK" = ( +/obj/structure/window/framed/hybrisa/colony/engineering, +/turf/open/floor/plating, +/area/tyrargo/indoors/engineering/ground) +"cmL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"cmM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"cmN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cmO" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cmP" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_tunnel) +"cmQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/apartment/south_upper) +"cmR" = ( +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cmS" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"cmT" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cmU" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cmV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/west) +"cmW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/oob/outdoors) +"cmX" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"cmY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"cmZ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"cna" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cnb" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/west) +"cnc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"cnd" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"cne" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"cnf" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"cng" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"cnh" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"cni" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"cnj" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"cnk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cnl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cnm" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/indoors/bunker/central) +"cnn" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cno" = ( +/obj/structure/stairs, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/west) +"cnp" = ( +/obj/structure/stairs, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/south_west) +"cnq" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/tyrargo/indoors/engineering/ground) +"cnr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cns" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/mall) +"cnt" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"cnu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"cnv" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"cnw" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/west) +"cnx" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/tyrargo/outdoors/colony_exterior/west) +"cny" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"cnz" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"cnA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"cnB" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"cnC" = ( +/obj/item/stack/sandbags, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"cnD" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"cnE" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"cnF" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_exterior/west) +"cnG" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/engineering/ground) +"cnH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"cnI" = ( +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/engineering/ground) +"cnJ" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"cnK" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"cnL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/west) +"cnM" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"cnN" = ( +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"cnO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"cnP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"cnQ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"cnR" = ( +/obj/item/stack/sandbags, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"cnS" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cnT" = ( +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"cnU" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cnV" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_exterior/west) +"cnW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"cnX" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_2/no_tunnel) +"cnY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cnZ" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/west) +"coa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"cob" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"coc" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cod" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"coe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"cof" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north) +"cog" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"coh" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"coi" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_x = 15; + layer = 2; + explo_proof = 1; + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"coj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cok" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"col" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"com" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"con" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/north_ground) +"coo" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_ground) +"cop" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_ground) +"coq" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"cor" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"cos" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"cot" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"cou" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts_road/central) +"cov" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cow" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"cox" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"coy" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"coz" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"coA" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/apartment/north_ground) +"coB" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"coC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"coD" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"coE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/defibrillator/upgraded, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"coF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"coG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"coH" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"coI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 4; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"coJ" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"coK" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"coL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"coM" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"coN" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -12; + pixel_y = 19 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"coO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/engineering/ground) +"coP" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"coQ" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/north_ground) +"coR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/engineering/ground) +"coS" = ( +/obj/structure/prop/rock{ + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"coT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"coU" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"coV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/west) +"coW" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/engineering/ground) +"coX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"coY" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/north_ground) +"coZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cpa" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cpb" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpc" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpd" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpe" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpf" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpg" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"cph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"cpi" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpj" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpk" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"cpl" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/ground) +"cpm" = ( +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"cpn" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"cpo" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"cpp" = ( +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"cpr" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cps" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob/outdoors) +"cpt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -2; + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = 1; + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpA" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpC" = ( +/obj/structure/stairs, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_ground) +"cpD" = ( +/obj/structure/stairs, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_ground) +"cpE" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"cpF" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpH" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/museum_storage/ground) +"cpI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpK" = ( +/obj/structure/machinery/colony_floodlight_switch{ + explo_proof = 1; + pixel_y = 32 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"cpL" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"cpM" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpO" = ( +/obj/structure/stairs, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"cpQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cpR" = ( +/obj/structure/stairs, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"cpS" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"cpT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cpV" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -5; + pixel_y = -13; + layer = 2.9 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cpW" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/east) +"cpX" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"cpY" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_ground) +"cpZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shuttle/part/dropship3/transparent/middle_right_wing, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/museum_storage/ground) +"cqa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/sign/safety/stairs{ + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_y = 32; + pixel_x = 14; + name = "\improper Up semiotic"; + desc = "Semiotic Standard denoting the nearby presence of something going upwards." + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/museum_storage/ground) +"cqb" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqc" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqd" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqe" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqf" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqh" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqi" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqj" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/ammo_box/magazine/m4ra/heap/empty, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"cql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cqn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqp" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqq" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqr" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/indoors/bunker/north_south) +"cqs" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"cqt" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"cqu" = ( +/obj/item/ammo_casing/bullet, +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqv" = ( +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqy" = ( +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"cqz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/structure/largecrate/random/case/small{ + layer = 2.8; + pixel_y = -1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel/hybrisa/grate, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqD" = ( +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqE" = ( +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqF" = ( +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqG" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqI" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cqK" = ( +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north) +"cqL" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"cqM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"cqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/turret/missile{ + pixel_x = -16; + bound_width = 32 + }, +/obj/structure/cable/orange{ + icon_state = "1-10"; + pixel_x = 7; + level = 2 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"cqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north) +"cqP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north) +"cqQ" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqR" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqU" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/restraint/handcuffs, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqW" = ( +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cqZ" = ( +/obj/item/stack/barbed_wire, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/north_east) +"cra" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"crb" = ( +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"crc" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"crd" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/turf/open/floor/coagulation/icon0_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"cre" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"crf" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"crg" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"crh" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/east) +"cri" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"crj" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -1; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"crk" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"crl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"crm" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"crn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cro" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crp" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -1; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crq" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crr" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crs" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crt" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cru" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"crv" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"crw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"crx" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"crz" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crB" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crC" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -12; + pixel_x = 16 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crE" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crF" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"crG" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crH" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"crI" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Light_Blue, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crJ" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"crK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"crL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"crM" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"crN" = ( +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"crO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crP" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crQ" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"crR" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"crS" = ( +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north_west) +"crT" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"crU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north_west) +"crV" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa/grate, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"crW" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"crX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6; + pixel_x = -7 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 16; + pixel_x = -7 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"crY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"crZ" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + layer = 3 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"csa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"csb" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"csc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"csd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north) +"cse" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"csf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"csg" = ( +/obj/structure/shuttle/part/dropship3/transparent/upper_left_wing, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"csh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"csi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"csj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/tool/warning_cone{ + pixel_y = 9; + pixel_x = -4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"csk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"csl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/north_east) +"csm" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/north_east) +"csn" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"cso" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/north_east) +"csp" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/admin/ground) +"csq" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/fsb_north) +"csr" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob/outdoors) +"css" = ( +/obj/structure/tunnel, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cst" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/item/storage/firstaid/regular, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csy" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csz" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"csA" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"csB" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"csC" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"csD" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa/grate, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north) +"csE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"csF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"csG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"csH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"csI" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"csJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"csK" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/ground) +"csL" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/bar/ground) +"csM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/ground) +"csN" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"csO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"csP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"csQ" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"csR" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/ground) +"csS" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/ground) +"csT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"csU" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"csV" = ( +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/north_east) +"csW" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_exterior/north_west) +"csX" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/outdoors/colony_exterior/north_west) +"csY" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_west) +"csZ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cta" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctc" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ctd" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cte" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctf" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/prop/invuln/rope{ + pixel_x = 8; + pixel_y = -16 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"ctg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cth" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/admin/ground) +"cti" = ( +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -27 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"ctj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"ctk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ctl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"ctm" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"ctn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"cto" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ctp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"ctq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/tyrargo/indoors/admin/ground) +"ctr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/tyrargo/indoors/apartment/south_ground) +"cts" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 2 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob/outdoors) +"ctt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ctv" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctw" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ctx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"cty" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"ctz" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north_west) +"ctA" = ( +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/oob) +"ctB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/north) +"ctC" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ctD" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ctE" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"ctF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ctH" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ctK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ctL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"ctM" = ( +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"ctN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ctO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north_west) +"ctP" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"ctQ" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"ctR" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"ctS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"ctT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ctU" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"ctV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ctW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctX" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ctY" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ctZ" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"cua" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"cub" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cuc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cud" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cue" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 16; + pixel_x = 10 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_ground) +"cuf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cug" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"cuh" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cui" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cuj" = ( +/obj/structure/prop/turret{ + dir = 1; + pixel_x = -16; + bound_width = 32 + }, +/obj/structure/cable/orange{ + icon_state = "5-6"; + level = 2; + pixel_y = -21; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cuk" = ( +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/tyrargo/indoors/bar/ground) +"cul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cum" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cun" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"cuo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"cup" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cuq" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cur" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cut" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cuu" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cuv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cuw" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/indoors/bunker/north) +"cux" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cuy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cuz" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cuA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cuB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cuC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"cuD" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_streets/north) +"cuE" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"cuF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cuG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"cuH" = ( +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"cuI" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cuJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cuK" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"cuL" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"cuM" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cuN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cuO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cuP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"cuQ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob/outdoors) +"cuR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"cuS" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"cuT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cuU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"cuV" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"cuW" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/survivor_spawner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cuX" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cuY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cuZ" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"cva" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"cvb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cvc" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cvd" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cve" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvh" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"cvi" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"cvj" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"cvk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"cvl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cvm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/ground) +"cvn" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/ground) +"cvo" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/gararge/ground) +"cvp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/tyrargo/indoors/admin/ground) +"cvq" = ( +/turf/open/floor/prison/darkred2, +/area/tyrargo/indoors/admin/ground) +"cvr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvs" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvt" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvu" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvw" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"cvy" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"cvz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"cvA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cvB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cvC" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cvF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvG" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"cvJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cvK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"cvL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"cvM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"cvN" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"cvO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cvP" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"cvQ" = ( +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cvR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cvS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvT" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvV" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cvW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cvX" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvY" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cvZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwb" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"cwc" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"cwd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cwe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cwf" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag." + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cwg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cwh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cwi" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cwj" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwk" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwl" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/comms/ground) +"cwm" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"cwn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"cwo" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwp" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cwq" = ( +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"cwr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cws" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/ground) +"cwt" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"cwu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cwv" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cww" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cwx" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"cwz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/comms/ground) +"cwA" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/comms/ground) +"cwB" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"cwD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"cwE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cwF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cwG" = ( +/obj/structure/sign/banners/united_americas_flag_worn{ + pixel_y = 31 + }, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"cwH" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwI" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/comms/ground) +"cwJ" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/comms/ground) +"cwK" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"cwM" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"cwN" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/ground) +"cwO" = ( +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/admin/ground) +"cwP" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"cwQ" = ( +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/admin/ground) +"cwR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"cwS" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cwT" = ( +/turf/open/floor/almayer/tcomms, +/area/tyrargo/indoors/comms/ground) +"cwU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/comms/ground) +"cwV" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/comms/ground) +"cwW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"cwX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"cwY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"cwZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"cxa" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxb" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cxc" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/lmg/heap{ + current_rounds = 0 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"cxe" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -63; + pixel_y = 19; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cxf" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cxg" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"cxh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"cxi" = ( +/obj/effect/decal/siding, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"cxj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"cxl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cxm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxn" = ( +/obj/item/prop/colony/usedbandage{ + dir = 1; + pixel_x = -7; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cxo" = ( +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxp" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cxq" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cxr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"cxs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"cxt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2/east_trench) +"cxv" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxw" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxy" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxz" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cxA" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"cxB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"cxC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north) +"cxD" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxE" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxF" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cxG" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxH" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"cxI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cxJ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"cxK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"cxL" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"cxM" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"cxN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxO" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxP" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cxQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cxR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north) +"cxS" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"cxT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/north) +"cxU" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cxV" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cxW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cxX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cxY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cxZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cya" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -21; + pixel_y = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyb" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"cyd" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cye" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cyf" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cyg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"cyh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"cyi" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"cyj" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"cyk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cyl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cym" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cyn" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cyo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"cyp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north) +"cyq" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cyr" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cys" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -11; + pixel_y = 15 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cyt" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cyu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cyv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"cyw" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"cyx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cyy" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cyz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north) +"cyA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"cyB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"cyC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"cyD" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"cyE" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyF" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyG" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/landing_zone_1/comms) +"cyH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cyI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"cyJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"cyK" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"cyL" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_streets/north) +"cyM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 32; + pixel_x = 2 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"cyN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"cyO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"cyP" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/landing_zone_1/comms) +"cyQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"cyR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"cyS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"cyT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/north) +"cyU" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_exterior/north) +"cyV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cyY" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_x = 1; + pixel_y = -48 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cyZ" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_exterior/north) +"cza" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/colony_exterior/north_east) +"czb" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_exterior/north_east) +"czc" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"czd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"cze" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/security/upper) +"czf" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/security/upper) +"czg" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/security/upper) +"czh" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/security/upper) +"czi" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/upper) +"czj" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/security/upper) +"czk" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/security/upper) +"czl" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/security/upper) +"czm" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/upper) +"czn" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/security/upper) +"czo" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/security/upper) +"czp" = ( +/turf/open_space, +/area/tyrargo/indoors/security/upper) +"czq" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/market/upper) +"czr" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/market/upper) +"czs" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/market/upper) +"czt" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/upper) +"czu" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/market/upper) +"czv" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czw" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"czy" = ( +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"czz" = ( +/turf/open_space, +/area/tyrargo/indoors/sewer_treatment/upper) +"czA" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/market/upper) +"czB" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czC" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"czE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"czF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"czG" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czH" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/market/upper) +"czI" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/security/upper) +"czJ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"czK" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/security/upper) +"czL" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/sewer_treatment/upper) +"czM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"czN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + layer = 4; + pixel_x = 14; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"czO" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 23 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czQ" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/market/upper) +"czR" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/market/upper) +"czS" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/security/upper) +"czT" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"czU" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"czV" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"czW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_west) +"czX" = ( +/obj/structure/closet, +/obj/item/clothing/suit/storage/hazardvest/sanitation, +/obj/item/clothing/suit/hybrisa/sanitation_utility, +/obj/item/clothing/head/hardhat/orange, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"czY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"czZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/market/upper) +"cAa" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"cAb" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/market/upper) +"cAc" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"cAd" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAe" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAg" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAi" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAo" = ( +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAq" = ( +/turf/open/floor/prison/bluecorner/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAr" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAs" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAt" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAu" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAv" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAw" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAx" = ( +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAy" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAz" = ( +/turf/open/floor/prison/blue/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAA" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "shell_10_1"; + name = "spent casings"; + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/m37a, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cAC" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAD" = ( +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAF" = ( +/turf/open/floor/prison/bluecorner/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = -13 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"cAH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/northeast, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAI" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAK" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAN" = ( +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cAP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/turret/destroyed{ + pixel_x = -30; + pixel_y = -12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cAQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"cAR" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"cAS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"cAT" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"cAU" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAV" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"cAW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"cAX" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"cAY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"cAZ" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/museum_storage/upper) +"cBa" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/gararge/ground) +"cBb" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cBc" = ( +/turf/open_space, +/area/tyrargo/indoors/museum_storage/upper) +"cBd" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cBe" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_sewer) +"cBf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/power_sewer) +"cBg" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"cBh" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/south_upper) +"cBi" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/landing_zone_2) +"cBj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/apartment/south_upper) +"cBk" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/apartment/south_upper) +"cBl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"cBm" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/power_sewer) +"cBn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_sewer) +"cBo" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/south_upper) +"cBp" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/south_upper) +"cBq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cBr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cBs" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/south_upper) +"cBt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"cBu" = ( +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cBv" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cBw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/south_upper) +"cBx" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"cBy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"cBz" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/engineering/upper) +"cBA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/upper) +"cBB" = ( +/obj/structure/window/framed/hybrisa/colony/engineering, +/turf/open/floor/plating, +/area/tyrargo/indoors/engineering/upper) +"cBC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"cBD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/queen_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cBE" = ( +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/engineering/upper) +"cBF" = ( +/turf/open/floor/prison/yellow/southeast, +/area/tyrargo/indoors/engineering/upper) +"cBG" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/south_upper) +"cBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cBI" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cBJ" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cBK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"cBL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"cBM" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"cBN" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"cBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cBP" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/indoors/apartment/south_upper) +"cBQ" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/south_upper) +"cBR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cBS" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/south_upper) +"cBT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cBU" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"cBV" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cBW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cBX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cBY" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"cBZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"cCa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"cCb" = ( +/turf/open_space, +/area/tyrargo/indoors/apartment/south_upper) +"cCc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cCd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"cCe" = ( +/obj/structure/girder, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cCf" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"cCg" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"cCh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"cCi" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"cCj" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cCk" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_1_1"; + pixel_y = -3; + dir = 10 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 5; + pixel_y = 14; + dir = 1; + anchored = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"cCl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_streets/south_east) +"cCm" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"cCn" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"cCo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cCp" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/landing_zone_2/east_trench) +"cCq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cCr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cCs" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/engineering/upper) +"cCt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"cCu" = ( +/obj/structure/sign/poster/music, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall) +"cCv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cCw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/propaganda{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cCx" = ( +/obj/structure/sign/poster/marshalls{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cCy" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"cCz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"cCA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/south_upper) +"cCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/mall) +"cCC" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/upper) +"cCD" = ( +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/engineering/upper) +"cCE" = ( +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/engineering/upper) +"cCF" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/engineering/upper) +"cCG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/engineering/upper) +"cCH" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/south_upper) +"cCI" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"cCJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/museum_storage/upper) +"cCK" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"cCL" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/upper) +"cCM" = ( +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/south_upper) +"cCN" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_upper) +"cCO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"cCP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/engineering/upper) +"cCQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/tyrargo/indoors/apartment/south_upper) +"cCR" = ( +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/tyrargo/indoors/apartment/south_upper) +"cCS" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/museum_storage/upper) +"cCT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"cCU" = ( +/obj/structure/fence/dark, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"cCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"cCW" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/tyrargo/oob) +"cCX" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/power_substation_outskirt) +"cCY" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"cCZ" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDa" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDc" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDd" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDe" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/outdoors/outskirts/central) +"cDf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"cDg" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/museum_storage/upper) +"cDh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cDi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"cDj" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDk" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDl" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDm" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/apartment/south_upper) +"cDn" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/south_upper) +"cDo" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/apartment/south_upper) +"cDp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDq" = ( +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/security/ground) +"cDr" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDs" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/museum_storage/upper) +"cDu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cDv" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"cDw" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/indoors/engineering/upper) +"cDx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDy" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/indoors/apartment/north_upper) +"cDz" = ( +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"cDA" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/apartment/north_upper) +"cDB" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"cDC" = ( +/turf/open_space, +/area/tyrargo/indoors/engineering/upper) +"cDD" = ( +/obj/structure/platform/metal/strata, +/turf/open_space, +/area/tyrargo/indoors/engineering/upper) +"cDE" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/apartment/north_upper) +"cDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"cDH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"cDI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDJ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/museum_storage/upper) +"cDL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"cDM" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper) +"cDN" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/engineering/upper) +"cDO" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/upper) +"cDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDR" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/north_upper) +"cDS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cDT" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cDU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cDV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/floor/prison/floorscorched1, +/area/tyrargo/indoors/museum_storage/upper) +"cDW" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/museum_storage/upper) +"cDX" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/landing_zone_1) +"cDY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cDZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cEa" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cEb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cEc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"cEd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/largecrate/random/case/small{ + layer = 2.8; + pixel_y = -1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"cEe" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"cEf" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"cEg" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/north_upper) +"cEh" = ( +/obj/structure/stairs/multiz/down, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_upper) +"cEi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/engineering/upper) +"cEj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cEk" = ( +/turf/open_space, +/area/tyrargo/indoors/apartment/north_upper) +"cEl" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_upper) +"cEm" = ( +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"cEn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_upper) +"cEo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/upper) +"cEp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"cEq" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/indoors/apartment/north_upper) +"cEr" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/north_upper) +"cEs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/explosives, +/obj/item/explosive/grenade/high_explosive/m15, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"cEt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"cEu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"cEv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"cEw" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cEx" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/indoors/engineering/upper) +"cEy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"cEz" = ( +/turf/open/floor/prison/yellow/northeast, +/area/tyrargo/indoors/engineering/upper) +"cEA" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cEB" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/north_upper) +"cEC" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cED" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cEE" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/apartment/north_upper) +"cEF" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cEG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cEH" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"cEI" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/engineering/upper/external) +"cEJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/upper) +"cEK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/upper) +"cEL" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/engineering/upper/external) +"cEM" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cEN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"cEO" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cEP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"cEQ" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"cER" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"cES" = ( +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"cET" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"cEU" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/landing_zone_1/comms) +"cEV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cEW" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/apartment/north_upper) +"cEX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/engineering/upper/external) +"cEY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/engineering/upper/external) +"cEZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFa" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"cFd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/museum_storage/upper) +"cFe" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/engineering/upper/external) +"cFf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/engineering/upper/external) +"cFg" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/engineering/upper/external) +"cFh" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper/external) +"cFi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFm" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"cFn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"cFo" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"cFp" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"cFr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/bar/upper/external) +"cFs" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/bar/upper/external) +"cFt" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cFu" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/bar/upper/external) +"cFv" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/bar/upper/external) +"cFw" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/bar/upper/external) +"cFx" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/bar/upper/external) +"cFy" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/admin/upper/external) +"cFz" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/admin/upper/external) +"cFA" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/admin/upper/external) +"cFB" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/upper) +"cFC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"cFD" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"cFE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper/external) +"cFF" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper/external) +"cFG" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper/external) +"cFH" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/upper/external) +"cFI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/admin/upper) +"cFJ" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/admin/upper) +"cFK" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper) +"cFL" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/upper) +"cFM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/upper) +"cFN" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cFO" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/admin/upper/external) +"cFP" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"cFQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"cFR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cFS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"cFT" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"cFU" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/admin/upper/external) +"cFV" = ( +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"cFW" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cFX" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cFY" = ( +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cFZ" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cGa" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/bar/upper/external) +"cGb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"cGc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"cGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"cGe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cGf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"cGg" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"cGh" = ( +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"cGi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"cGj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"cGk" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/bar/upper/external) +"cGl" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cGm" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cGn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"cGo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"cGp" = ( +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cGq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"cGr" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cGs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cGt" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cGu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cGv" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"cGw" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/admin/upper/external) +"cGx" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/admin/upper/external) +"cGy" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cGA" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/admin/upper/external) +"cGB" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/bar/upper/external) +"cGC" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cGD" = ( +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"cGE" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"cGF" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cGG" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/bar/upper/external) +"cGH" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cGI" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cGJ" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cGK" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"cGL" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"cGM" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/upper/external) +"cGN" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/gararge/upper/external) +"cGO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"cGP" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cGQ" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/admin/upper) +"cGR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/admin/upper) +"cGS" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/admin/upper) +"cGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cGU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/upper/external) +"cGV" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/gararge/upper/external) +"cGW" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/gararge/upper/external) +"cGX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/gararge/upper/external) +"cGY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/admin/upper) +"cGZ" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"cHa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"cHb" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cHc" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/gararge/upper/external) +"cHd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cHe" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cHf" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/upper/external) +"cHg" = ( +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"cHh" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHj" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"cHl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHm" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHn" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/comms/upper) +"cHo" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/comms/upper) +"cHp" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/comms/upper) +"cHq" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/gararge/upper/external) +"cHr" = ( +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cHs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHt" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/comms/upper) +"cHu" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/comms/upper) +"cHv" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/comms/upper) +"cHw" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/gararge/upper/external) +"cHx" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"cHy" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"cHz" = ( +/obj/structure/platform/metal/strata, +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"cHA" = ( +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"cHB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"cHC" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"cHD" = ( +/obj/structure/stairs/multiz/down, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper) +"cHE" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"cHF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cHG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/upper/external) +"cHH" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/upper/external) +"cHI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/admin/upper) +"cHJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/admin/upper) +"cHK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"cHL" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/outdoors/colony_exterior/west) +"cHM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"cHN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cHO" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"cHP" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/admin/upper) +"cHQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/comms/upper) +"cHR" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/comms/upper) +"cHS" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/comms/upper) +"cHT" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"cHU" = ( +/obj/structure/platform/metal/strata/north, +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"cHV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"cHW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cHX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/upper/external) +"cHY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"cIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"cIb" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/admin/upper) +"cIc" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/gararge/upper/external) +"cId" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/gararge/upper/external) +"cIe" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/admin/upper) +"cIf" = ( +/turf/open_space, +/area/tyrargo/indoors/comms/upper) +"cIg" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper) +"cIh" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 1; + pixel_y = -34; + pixel_x = -21 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"cIi" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIj" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"cIk" = ( +/obj/structure/prop/vehicles/tank/longstreet/concussive{ + dir = 1; + pixel_x = -50 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIl" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = 32 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIm" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIn" = ( +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/tyrargo/outdoors/outskirts/river) +"cIo" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/army_staging) +"cIp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been fried via acid damage, and it will open fire on any targets within range."; + name = "UA-577 Gauss Turret"; + dir = 1; + faction_group = "USCM" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cIq" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIs" = ( +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb{ + pixel_y = -17; + dir = 1; + pixel_x = -50; + layer = 3.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIt" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIu" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/army_staging) +"cIv" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/army_staging) +"cIw" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/army_staging) +"cIx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_y = 11; + pixel_x = 8 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIy" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret{ + dir = 1; + pixel_y = -71; + pixel_x = -50 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIz" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/destroyed{ + dir = 4; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"cIA" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"cIB" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/army_staging) +"cIC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cID" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cIE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_y = 11; + pixel_x = 8 + }, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/hardpoint/ltb_cannon, +/obj/item/ammo_magazine/hardpoint/ltb_cannon, +/obj/item/ammo_magazine/hardpoint/ltb_cannon, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been fried via acid damage, and it will open fire on any targets within range."; + name = "UA-577 Gauss Turret"; + dir = 1; + faction_group = "USCM" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cII" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIJ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIK" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIL" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIM" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cIN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cIO" = ( +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIP" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIQ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cIS" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cIT" = ( +/obj/structure/prop/vehicles/tank/ifv{ + dir = 8; + pixel_y = -41; + pixel_x = -23 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cIU" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret/destroyed{ + pixel_y = -16; + pixel_x = -34; + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"cIV" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIX" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/tyrargo/outdoors/outskirts/river) +"cIY" = ( +/obj/effect/landmark/ert_spawns/groundside_army, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cIZ" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cJa" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"cJb" = ( +/obj/effect/landmark/ert_spawns/groundside_army, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJc" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJd" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJe" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJg" = ( +/obj/effect/vehicle_spawner/tank/fixed{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJh" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJi" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJj" = ( +/obj/structure/prop/vehicles/tank/ifv/destroyed{ + pixel_y = 2; + pixel_x = -25 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"cJk" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/landmark/ert_spawns/groundside_army, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJm" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJn" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"cJo" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"cJp" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJq" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJr" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/tyrargo/underground/oob_area) +"cJs" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJt" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/tyrargo/outdoors/outskirts/river) +"cJu" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/army_staging) +"cJv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/east) +"cJx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJz" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/door_control{ + pixel_y = 28; + needs_power = 0; + id = "us_army_ert" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -16; + pixel_y = 7 + }, +/obj/structure/prop/vehicles/tank/truck/broken{ + dir = 8; + pixel_y = -32 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJC" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJD" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 7; + pixel_x = -24; + desc = "Semiotic Standard denoting bunker network designation."; + name = "Bunker Network - Sector Epsilon 29" + }, +/obj/structure/sign/safety/two{ + pixel_y = -7; + pixel_x = -30 + }, +/obj/structure/sign/safety/nine{ + pixel_y = -7; + pixel_x = -18 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"cJE" = ( +/obj/structure/prop/fishing/line/long{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJF" = ( +/obj/structure/prop/dam/crane{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJG" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cJH" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = "us_army_ert"; + explo_proof = 1; + needs_power = 0; + unacidable = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cJI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cJJ" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 7; + pixel_x = -30; + desc = "Semiotic Standard denoting bunker network designation."; + name = "Bunker Network - Sector Epsilon 29" + }, +/obj/structure/sign/safety/two{ + pixel_y = -7; + pixel_x = -30 + }, +/obj/structure/sign/safety/nine{ + pixel_y = -7; + pixel_x = -18 + }, +/obj/structure/sign/safety/south{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor/corsat/browncorner/west, +/area/tyrargo/underground/bunker/south) +"cJK" = ( +/obj/structure/floodgate{ + icon_state = "0,2" + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/river) +"cJL" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"cJM" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"cJN" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/oob) +"cJO" = ( +/obj/structure/platform/metal/almayer/west, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/oob) +"cJP" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cJQ" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/tyrargo/outdoors/outskirts/river) +"cJR" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/tyrargo/outdoors/outskirts/river) +"cJS" = ( +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/outdoors/outskirts/river) +"cJT" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/tyrargo/outdoors/outskirts/river) +"cJU" = ( +/obj/structure/prop/rock{ + pixel_x = -2; + pixel_y = -1; + density = 0 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/tyrargo/outdoors/outskirts/river) +"cJV" = ( +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/outdoors/outskirts/river) +"cJW" = ( +/obj/structure/floodgate{ + icon_state = "0,3" + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/river) +"cJX" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"cJY" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/tyrargo/outdoors/outskirts/river) +"cJZ" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/tyrargo/outdoors/outskirts/river) +"cKa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"cKb" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/tyrargo/outdoors/outskirts/river) +"cKc" = ( +/obj/structure/prop/rock{ + pixel_x = -2; + pixel_y = -1; + density = 0 + }, +/turf/open/gm/river/desert/shallow_edge, +/area/tyrargo/outdoors/outskirts/river) +"cKd" = ( +/obj/structure/prop/rock{ + density = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/outdoors/outskirts/river) +"cKe" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/tyrargo/outdoors/outskirts/river) +"cKf" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cKg" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/tyrargo/outdoors/outskirts/river) +"cKh" = ( +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/gm/river/desert/shallow_edge, +/area/tyrargo/outdoors/outskirts/river) +"cKi" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/outdoors/outskirts/river) +"cKj" = ( +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/gm/river/desert/shallow_corner/east, +/area/tyrargo/outdoors/outskirts/river) +"cKk" = ( +/obj/structure/prop/rock{ + pixel_x = -2; + pixel_y = -1; + density = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/outdoors/outskirts/river) +"cKl" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"cKm" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/blocker/invisible_wall, +/obj/structure/closet/crate/ammo{ + name = "heap munitions crate"; + desc = "Crate filled with heap ammo. You know what to do with it."; + layer = 3.2; + pixel_y = 15; + pixel_x = -20 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"cKn" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/closet/crate/ammo{ + name = "heap munitions crate"; + desc = "Crate filled with heap ammo. You know what to do with it."; + layer = 3.2; + pixel_y = 3; + pixel_x = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cKo" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/hardpoint/turret_smoke, +/obj/item/ammo_magazine/hardpoint/turret_smoke, +/obj/item/ammo_magazine/hardpoint/m56_cupola, +/obj/item/ammo_magazine/hardpoint/m56_cupola, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cKp" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/oob) +"cKq" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/oob) +"cKr" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"cKs" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/landing_zone_2) +"cKt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"cKu" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"cKv" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cKw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cKx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"cKy" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cKz" = ( +/obj/structure/prop/hybrisa/vehicles/Ambulance{ + dir = 1; + pixel_x = 8; + pixel_y = -1; + bound_height = 32 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"cKA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = -15; + pixel_x = 2; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -25; + pixel_y = -2; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"cKB" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"cKC" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/upper) +"cKD" = ( +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"cKE" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cKF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central) +"cKG" = ( +/obj/item/storage/firstaid/regular, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cKH" = ( +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"cKI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cKJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"cKK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cKL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north) +"cKM" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/army_staging) +"cKN" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/army_staging) +"cKO" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/army_staging) +"cKP" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cKQ" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cKR" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"cKS" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/army_staging) +"cKT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cKU" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"cKV" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/army_staging) +"cKW" = ( +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/two{ + pixel_x = 45; + pixel_y = -8 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 32; + pixel_y = 7; + name = "Bunker Network - Sector Tango 12"; + desc = "Semiotic Standard denoting bunker network designation." + }, +/obj/structure/sign/safety/north{ + pixel_x = 45; + pixel_y = 7 + }, +/turf/open/floor/corsat/darkgreencorner/east, +/area/tyrargo/underground/bunker/north) +"cKX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cKY" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"cKZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"cLa" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLd" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLe" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLf" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"cLg" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLi" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cLn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLq" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLs" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLt" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cLu" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"cLv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cLy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLA" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "8" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cLB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLC" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"cLD" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"cLF" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"cLG" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"cLH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"cLI" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/no_tunnel) +"cLJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/road) +"cLK" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"cLL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cLM" = ( +/obj/structure/ladder{ + id = "bunker_lad"; + height = 2 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"cLN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cLO" = ( +/obj/structure/roof/hybrisa/signs/barsign{ + light_color = "#00AAFF"; + light_on = 1; + light_power = 4; + light_range = 6; + pixel_x = -12; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cLP" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"cLQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"cLR" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/plating, +/area/tyrargo/underground/power_substation) +"cLS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"cLT" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"cLU" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"cLV" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/south) +"cLW" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"cLX" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13; + explo_proof = 1 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cLY" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cLZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"cMa" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"cMb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cMc" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/tyrargo/underground/oob_area) +"cMd" = ( +/obj/item/device/healthanalyzer, +/obj/item/trash/uscm_mre{ + pixel_x = 12; + pixel_y = -7 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"cMe" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/regular, +/obj/item/bodybag/cryobag, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cMf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cMg" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"cMh" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"cMi" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"cMj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"cMk" = ( +/obj/structure/lz_sign/tyrargo_sign{ + light_color = "#FF0000"; + light_on = 1; + light_power = 2; + light_range = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1) +"cMl" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "9"; + pixel_x = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cMm" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"cMn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"cMo" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cMp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"cMq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"cMr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"cMs" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"cMt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cMu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/ammo_magazine/smartgun, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cMv" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall/upper) +"cMw" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8; + pixel_y = 2; + density = 0 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"cMx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall/upper) +"cMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cMz" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/mall/upper) +"cMA" = ( +/obj/structure/bed/chair/comfy/hybrisa/black{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"cMB" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"cMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"cME" = ( +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall/upper) +"cMF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"cMG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall/upper) +"cMH" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat{ + pixel_y = 4 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"cMI" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/coagulation/icon0_5, +/area/tyrargo/indoors/sewer_treatment/lower) +"cMJ" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall/upper) +"cMK" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"cML" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"cMM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/barricade/hesco, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cMN" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/indoors/engineering/ground) +"cMO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -1; + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"cMP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob) +"cMQ" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/east) +"cMR" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"cMS" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + dir = 4 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"cMT" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"cMU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall/upper) +"cMV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall/upper) +"cMW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cMX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"cMY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall/upper) +"cNb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"cNc" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cNd" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cNe" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"cNf" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNg" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/oob) +"cNi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/oob) +"cNj" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"cNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/oob) +"cNl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/tyrargo/oob) +"cNm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/curtain/red, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"cNn" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNo" = ( +/obj/structure/prop/hybrisa/vehicles/Colony_Crawlers/Crawler_Cargo{ + pixel_y = -4; + pixel_x = -2 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cNq" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/obj/structure/bed/chair/comfy/hybrisa/black{ + dir = 1; + layer = 3.1; + pixel_y = 12; + buckling_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"cNr" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"cNs" = ( +/turf/open/floor/light/off/purple, +/area/tyrargo/indoors/mall) +"cNt" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13; + explo_proof = 1 + }, +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNu" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/obj/structure/bed/chair/comfy/hybrisa/black{ + dir = 1; + layer = 3.1; + pixel_y = 12; + buckling_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"cNv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/indoors/mall) +"cNw" = ( +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/indoors/mall) +"cNx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNy" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall/upper) +"cNz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"cNA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"cNB" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"cNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"cND" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cNE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/mall) +"cNF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/mall) +"cNG" = ( +/turf/open/floor/prison/green, +/area/tyrargo/indoors/mall) +"cNH" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/oob) +"cNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/oob) +"cNJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"cNK" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + dir = 2 + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/oob) +"cNL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/mall) +"cNM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greencorner/west, +/area/tyrargo/indoors/mall) +"cNN" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cNO" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"cNP" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/turf/open/floor/hybrisa/metal/stripe_red/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"cNQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greencorner, +/area/tyrargo/indoors/mall) +"cNR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee{ + pixel_y = 13; + pixel_x = -5; + layer = 3.1 + }, +/obj/structure/largecrate/random{ + pixel_y = -1; + pixel_x = -10; + layer = 3.2 + }, +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/mall) +"cNS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"cNT" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"cNU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1; + pixel_x = 2; + pixel_y = 3 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cNV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/indoors/mall) +"cNW" = ( +/turf/open/floor/prison/green/northwest, +/area/tyrargo/indoors/mall) +"cNX" = ( +/turf/open/floor/prison/greencorner/east, +/area/tyrargo/indoors/mall) +"cNY" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cNZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall) +"cOa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cOb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greencorner/north, +/area/tyrargo/indoors/mall) +"cOc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/northeast, +/area/tyrargo/indoors/mall) +"cOd" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1; + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cOe" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + layer = 3; + pixel_x = -4; + pixel_y = -3 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"cOf" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"cOg" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/indoors/mall) +"cOh" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/mall) +"cOi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/mall) +"cOj" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + locked = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cOk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall) +"cOl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall) +"cOm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall) +"cOn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall) +"cOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall) +"cOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = -32 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = -54 + }, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_y = -57; + pixel_x = -17 + }, +/obj/effect/landmark/corpsespawner/hybrisa/sanitation, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall) +"cOq" = ( +/obj/structure/roof/hybrisa/signs/opensign2{ + pixel_y = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/mall/upper) +"cOs" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOt" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cOu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 2; + layer = 2.98; + pixel_y = 5 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cOv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/tyrargo/indoors/mall) +"cOw" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cOx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cOy" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cOA" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cOB" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall) +"cOC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cOD" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2" + }, +/turf/closed/shuttle/dropship3{ + icon_state = "37" + }, +/area/tyrargo/indoors/saipan) +"cOE" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"cOH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cOI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"cOJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_11"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cOK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"cOL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + pixel_x = -37 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"cOM" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = 1; + layer = 2.9; + dir = 1 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = -1; + pixel_y = 11; + dir = 4; + anchored = 1; + layer = 4.1 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"cON" = ( +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/tyrargo/indoors/mall) +"cOO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cOP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cOQ" = ( +/obj/structure/prop/vehicles/tank/truck/broken{ + dir = 8; + pixel_y = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cOR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOS" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cOT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"cOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cOV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cOW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cOX" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/tyrargo/indoors/mall) +"cOY" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cOZ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cPa" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 1; + pixel_y = 4; + layer = 2.97 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_ground) +"cPb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cPc" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cPd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -10; + pixel_y = 3; + layer = 2.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"cPe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_12"; + pixel_x = 7; + pixel_y = 12; + layer = 3.6 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cPf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/toy/prize/durand{ + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cPg" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/trash/candle, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cPh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cPi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall) +"cPj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall) +"cPk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall/upper) +"cPl" = ( +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall) +"cPm" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"cPn" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = -1; + pixel_y = 5; + dir = 4; + anchored = 1; + layer = 4.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"cPo" = ( +/obj/structure/roof/hybrisa/signs/pharmacy_sign, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall) +"cPp" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cPq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/blue/southeast, +/area/tyrargo/indoors/mall/upper) +"cPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cPs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/indoors/mall) +"cPt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/helmet_visor/night_vision, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cPu" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/tyrargo/indoors/mall) +"cPv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/whitegreenfull, +/area/tyrargo/indoors/mall) +"cPw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/prison/whitegreen/southwest, +/area/tyrargo/indoors/mall) +"cPx" = ( +/obj/item/tool/wrench{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/structure/medical_supply_link/green, +/turf/open/floor/prison/whitegreen, +/area/tyrargo/indoors/mall) +"cPy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreen, +/area/tyrargo/indoors/mall) +"cPz" = ( +/turf/open/floor/prison/whitegreen, +/area/tyrargo/indoors/mall) +"cPA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen, +/area/tyrargo/indoors/mall) +"cPB" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreen/southeast, +/area/tyrargo/indoors/mall) +"cPC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/oob) +"cPD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars/range/designator, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cPE" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/mall) +"cPF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/indoors/mall) +"cPG" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"cPH" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/mall) +"cPI" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/indoors/mall) +"cPJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/motiondetector/m717, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cPK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/tyrargo/indoors/mall) +"cPL" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cPM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull, +/area/tyrargo/indoors/mall) +"cPN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/prison/whitegreen/southwest, +/area/tyrargo/indoors/mall) +"cPO" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/tyrargo/indoors/mall) +"cPP" = ( +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cPQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cPR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cPS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cPT" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/turf/open/floor/prison/whitegreencorner, +/area/tyrargo/indoors/mall) +"cPU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/tyrargo/indoors/mall) +"cPV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/robotanalyzer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cPW" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/mall) +"cPX" = ( +/obj/structure/surface/table/almayer, +/obj/item/maintenance_jack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cPY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/mall) +"cPZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"cQa" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/geiger_counter, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cQb" = ( +/turf/open/floor/prison/whitegreen/west, +/area/tyrargo/indoors/mall) +"cQc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreenfull, +/area/tyrargo/indoors/mall) +"cQd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/tyrargo/indoors/mall) +"cQe" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cQf" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/firstaid/surgical/empty, +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cQg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/tyrargo/indoors/mall) +"cQh" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical{ + dir = 1 + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/north_ground) +"cQi" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/mall) +"cQj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/mall) +"cQk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/mall) +"cQl" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/indoors/mall) +"cQm" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob) +"cQn" = ( +/obj/structure/surface/table/almayer, +/obj/item/engi_upgrade_kit, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cQo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cQp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cQq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/tyrargo/indoors/mall) +"cQr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull, +/area/tyrargo/indoors/mall) +"cQs" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"cQt" = ( +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"cQu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreencorner/east, +/area/tyrargo/indoors/mall) +"cQv" = ( +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/prison/sterile_white, +/area/tyrargo/indoors/mall) +"cQw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall/upper) +"cQx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"cQy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"cQz" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"cQA" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison/whitegreen/northeast, +/area/tyrargo/indoors/mall) +"cQB" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"cQC" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cQD" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cQE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cQF" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cQG" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"cQH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cQI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/mall) +"cQJ" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cQK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/tyrargo/indoors/mall) +"cQL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cQM" = ( +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"cQN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/vehicles/tank/humvee/turret{ + dir = 8; + pixel_x = -33; + pixel_y = -23 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"cQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cQP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/whitegreen/northwest, +/area/tyrargo/indoors/mall) +"cQQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/indoors/mall) +"cQR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/tyrargo/indoors/mall) +"cQS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -7; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -1; + pixel_y = -1; + layer = 2.9 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"cQT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cQU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cQV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"cQW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cQX" = ( +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/fsb_south) +"cQY" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/indoors/mall) +"cQZ" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/tool/soap, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"cRa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"cRb" = ( +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/indoors/mall) +"cRc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/tunnel, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/north) +"cRd" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"cRe" = ( +/turf/open/floor/white, +/area/tyrargo/indoors/mall) +"cRf" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, +/turf/open/floor/white, +/area/tyrargo/indoors/mall) +"cRg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/tyrargo/indoors/mall) +"cRh" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/tool/candle, +/obj/item/tool/candle{ + pixel_x = 8 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"cRi" = ( +/obj/structure/bed/chair/comfy/hybrisa/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"cRj" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/mall/upper) +"cRk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cRl" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/mall/upper) +"cRm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/tyrargo/indoors/mall) +"cRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/tyrargo/indoors/mall) +"cRo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/tyrargo/indoors/mall) +"cRp" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/tyrargo/indoors/mall) +"cRq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/tyrargo/indoors/mall) +"cRr" = ( +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/tyrargo/indoors/mall) +"cRs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cRt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 10 + }, +/turf/open/floor/strata/green1, +/area/tyrargo/indoors/mall) +"cRu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cRv" = ( +/obj/item/tool/warning_cone{ + pixel_x = -6 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cRw" = ( +/turf/open/floor/kutjevo/tan, +/area/tyrargo/indoors/mall) +"cRx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/surface/table/almayer, +/obj/item/tool/soap{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/kutjevo/plate, +/area/tyrargo/indoors/mall) +"cRy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/plate, +/area/tyrargo/indoors/mall) +"cRz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/soap, +/turf/open/floor/kutjevo/plate, +/area/tyrargo/indoors/mall) +"cRA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/tyrargo/indoors/mall) +"cRB" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = 4; + pixel_y = 35 + }, +/obj/structure/sign/poster/music{ + pixel_x = -14; + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"cRC" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"cRD" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cRE" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"cRF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"cRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"cRH" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clothing/head/hairflower, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"cRI" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"cRJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cRK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/m37a{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cRL" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cRM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"cRN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"cRO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"cRP" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cRQ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cRR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/roof/hybrisa/signs/mechanicsign, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"cRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cRU" = ( +/obj/structure/roof/hybrisa/signs/mechanicsign, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/ground) +"cRV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cRW" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cRX" = ( +/turf/open_space, +/area/tyrargo/landing_zone_2/road) +"cRY" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/landing_zone_2) +"cRZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/outdoors/army_staging) +"cSa" = ( +/turf/open_space, +/area/tyrargo/outdoors/army_staging) +"cSb" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/outdoors/army_staging) +"cSc" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/central) +"cSd" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/oob) +"cSe" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/central) +"cSf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"cSg" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"cSh" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cSi" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/west) +"cSj" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cSk" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/central) +"cSl" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"cSm" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + pixel_y = -32; + layer = 3.2 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSn" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + pixel_y = -32; + layer = 3.2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSo" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSq" = ( +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSr" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + pixel_y = -32; + layer = 3.2 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSs" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cSt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cSu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/colorable{ + color = "#5a5a5a"; + pixel_y = -32 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSv" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet1_red"; + pixel_x = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cSx" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 4; + name = "synthethic potted plant"; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cSy" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSz" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSA" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSB" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + layer = 5; + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSE" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSF" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet2_red"; + pixel_x = 14; + layer = 2.9 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSG" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -4; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cSH" = ( +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cSI" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + icon_state = "chair_alt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2; + pixel_x = -32 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSJ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 9 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSK" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSL" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSN" = ( +/obj/structure/curtain/colorable{ + color = "#5a5a5a"; + pixel_x = -32 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cSO" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori1_red" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSP" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori3_red" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSQ" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet3_red"; + pixel_x = 14; + pixel_y = -20 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_y = 6 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + layer = 5; + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/mall/upper) +"cSR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cSS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/spacecash/c1000{ + pixel_y = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/colorable{ + color = "#5a5a5a"; + pixel_x = 32 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cSU" = ( +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSV" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cSY" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/curtain/colorable{ + color = "#5a5a5a"; + pixel_x = -32; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cSZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cTa" = ( +/obj/structure/bed/chair/comfy/hybrisa/blue{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cTb" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"cTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cTd" = ( +/turf/open_space, +/area/tyrargo/indoors/mall/upper) +"cTe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/mall/upper) +"cTf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall/upper) +"cTg" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cTh" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = 4; + pixel_y = 35 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cTi" = ( +/obj/structure/sign/poster/music{ + pixel_x = -12; + pixel_y = 34 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cTj" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"cTk" = ( +/obj/structure/sign/poster/hunk{ + pixel_x = 4; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cTl" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 5; + pixel_y = 12; + layer = 3.20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cTm" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 10; + pixel_x = 35 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/mall/upper) +"cTn" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall/upper) +"cTo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_tile, +/area/tyrargo/indoors/mall/upper) +"cTp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/orange_tile, +/area/tyrargo/indoors/mall/upper) +"cTq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/mall/upper) +"cTr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall/upper) +"cTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cTt" = ( +/turf/open/floor/strata/orange_tile, +/area/tyrargo/indoors/mall/upper) +"cTu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTw" = ( +/turf/open/floor/hybrisa/carpet/carpetbluedeco, +/area/tyrargo/indoors/mall/upper) +"cTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTy" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cTz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + layer = 2.98; + pixel_y = -4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -10; + pixel_y = 3; + layer = 2.1 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/mall/upper) +"cTB" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/museum_storage/upper) +"cTC" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/mall/upper) +"cTD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTH" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"cTI" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_south) +"cTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/mall/upper) +"cTM" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cTN" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"cTO" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetbluedeco, +/area/tyrargo/indoors/mall/upper) +"cTP" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cTR" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -10; + pixel_y = 3; + layer = 2.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/mall/upper) +"cTS" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"cTT" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/outdoors/outskirts/east) +"cTU" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cTV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall/upper) +"cTW" = ( +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall/upper) +"cTX" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall/upper) +"cTY" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/strata/red2, +/area/tyrargo/indoors/mall/upper) +"cTZ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -10; + pixel_y = 3; + layer = 2.1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/mall/upper) +"cUa" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cUb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUc" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cUd" = ( +/obj/structure/largecrate/supply/supplies, +/turf/open/floor/prison/darkbrown2/southeast, +/area/tyrargo/indoors/mall/upper) +"cUe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"cUf" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/prison/blue/southeast, +/area/tyrargo/indoors/mall/upper) +"cUg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/mall/upper) +"cUh" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUi" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/floor/prison/bluecorner/east, +/area/tyrargo/indoors/mall/upper) +"cUo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cUq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUr" = ( +/turf/closed/wall/prison, +/area/tyrargo/outdoors/outskirts_road/central) +"cUs" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUt" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUu" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"cUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bluecorner, +/area/tyrargo/indoors/mall/upper) +"cUw" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cUx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cUy" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUz" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUA" = ( +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUB" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper/external) +"cUC" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"cUD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"cUE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"cUF" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"cUG" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"cUH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUI" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUJ" = ( +/obj/structure/flora/tree/tyrargo/tree_2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUK" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUM" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkpurple2, +/area/tyrargo/indoors/mall/upper) +"cUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cUP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cUQ" = ( +/obj/item/shard, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"cUR" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUS" = ( +/obj/effect/decal/siding, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUT" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/indoors/mall/upper) +"cUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cUV" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/west) +"cUW" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cUX" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cUY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cUZ" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVa" = ( +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVb" = ( +/obj/item/stack/sandbags/small_stack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/landing_zone_1) +"cVd" = ( +/turf/open_space, +/area/tyrargo/landing_zone_1) +"cVe" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cVf" = ( +/obj/item/shard, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVg" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVh" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVi" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"cVk" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVl" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVm" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVn" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVo" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cVq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cVr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"cVs" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cVt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 19; + pixel_y = -7; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -1; + pixel_y = -6 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/mall/upper) +"cVu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = 19; + pixel_y = -7; + layer = 2.8 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = -3; + pixel_y = 4; + dir = 1; + anchored = 1; + layer = 4.1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/mall/upper) +"cVv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 19; + pixel_y = -7; + layer = 2.8 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/mall/upper) +"cVw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"cVx" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/mall/upper) +"cVy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/mall/upper) +"cVz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cVA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cVB" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cVC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cVD" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_north) +"cVE" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cVF" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"cVG" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north_west) +"cVH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/landing_zone_1/no_mans_land) +"cVI" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/landing_zone_1/west_trench) +"cVJ" = ( +/turf/open_space, +/area/tyrargo/landing_zone_1/no_mans_land) +"cVK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cVL" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -3; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -7; + dir = 1; + pixel_x = -14 + }, +/obj/item/mortar_shell/he{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cVM" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"cVN" = ( +/turf/closed/wall/prison, +/area/tyrargo/outdoors/outskirts/central) +"cVO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"cVP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cVQ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"cVR" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"cVS" = ( +/turf/open_space, +/area/tyrargo/landing_zone_1/comms) +"cVT" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"cVU" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"cVV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall) +"cVW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cVX" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cVY" = ( +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cVZ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 4; + pixel_x = -10 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cWa" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/sewer/south) +"cWb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"cWc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall) +"cWd" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -32; + pixel_x = 4; + layer = 2.9 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cWe" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"cWf" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_east) +"cWg" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"cWh" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"cWi" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWj" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"cWk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"cWl" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"cWm" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -4; + pixel_x = -3 + }, +/obj/structure/closet/crate/explosives, +/obj/item/mortar_shell/flare{ + pixel_x = 4 + }, +/obj/item/mortar_shell/incendiary{ + pixel_y = -7 + }, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cWn" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/west) +"cWo" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/east) +"cWp" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/west) +"cWq" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/west) +"cWr" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/west) +"cWs" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/west) +"cWt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/east) +"cWu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/east) +"cWv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/west) +"cWw" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"cWx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cWy" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cWz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cWA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"cWB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"cWC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"cWD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"cWE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"cWF" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"cWG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"cWH" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"cWI" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee{ + dir = 8; + pixel_y = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"cWJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWK" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWL" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWM" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8; + icon_state = "vehicle_seat_destroyed" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"cWN" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWO" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWP" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/colony_exterior/south_west) +"cWR" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -42; + pixel_y = 14 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/oob) +"cWS" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cWT" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cWU" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/mall/upper/external) +"cWV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"cWW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"cWX" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Purple{ + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cWY" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"cWZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"cXa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"cXb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"cXc" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"cXd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cXe" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Red{ + dir = 8; + pixel_y = -4; + pixel_x = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cXf" = ( +/obj/item/weapon/gun/shotgun/pump/m37a, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXg" = ( +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXh" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cXi" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cXj" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cXk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"cXl" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/landing_zone_2) +"cXm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"cXn" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"cXo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"cXp" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cXq" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cXr" = ( +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cXs" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"cXt" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"cXu" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/item/ammo_magazine/rifle/lmg/holo_target, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXv" = ( +/obj/item/ammo_magazine/rifle/lmg/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cXw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"cXx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"cXy" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"cXz" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cXA" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee{ + dir = 8; + pixel_y = -23 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXB" = ( +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/turret{ + pixel_x = -26; + pixel_y = -25 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXC" = ( +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cXE" = ( +/obj/item/reagent_container/food/drinks/flask/marine/army, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"cXF" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cXG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"cXH" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"cXI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cXJ" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"cXK" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"cXL" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"cXM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"cXN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cXO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper/burst, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"cXR" = ( +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office/burst, +/turf/open/floor/prison/bluecorner/north, +/area/tyrargo/indoors/mall/upper) +"cXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cXT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cXU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"cXV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"cXW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cXX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cXY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cXZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYa" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"cYb" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYc" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYd" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/spacecash/c200{ + pixel_y = 5 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYe" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"cYf" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"cYg" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/spacecash/c200{ + pixel_y = 5 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYh" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYi" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYj" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYk" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/toy/handcard/aceofspades{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"cYn" = ( +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYo" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYp" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 20 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 20 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYr" = ( +/obj/structure/barricade/handrail/type_b, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"cYs" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"cYt" = ( +/obj/structure/machinery/computer/hybrisa/misc/slotmachine{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/hybrisa/misc/slotmachine{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/computer/hybrisa/misc/slotmachine{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"cYw" = ( +/obj/structure/machinery/computer/hybrisa/misc/slotmachine{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"cYx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"cYy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"cYz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cYA" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_corner/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"cYB" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_corner, +/area/tyrargo/indoors/sewer_treatment/lower) +"cYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"cYD" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"cYE" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"cYF" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"cYG" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cYH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"cYI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"cYJ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cYK" = ( +/obj/structure/prop/vehicles/tank/bison/destroyed{ + dir = 8; + pixel_y = -1; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"cYL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"cYM" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"cYN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cYO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/oob) +"cYP" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"cYQ" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cYR" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"cYS" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cYT" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup" + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cYU" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"cYV" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"cYW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cYX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -32; + pixel_x = 4; + layer = 2.9 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cYY" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"cYZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/sewer/south) +"cZa" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"cZb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 15 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cZc" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/sewer/south) +"cZd" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/sewer/south) +"cZe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/sewer/south) +"cZf" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"cZg" = ( +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/underground/sewer/south) +"cZh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/sewer/south) +"cZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cZj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cZk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cZl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cZm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cZn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"cZo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/sewer/south) +"cZq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"cZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"cZt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"cZu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/lower) +"cZw" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/sewer/south) +"cZx" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/underground/sewer/south) +"cZy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/underground/sewer/south) +"cZz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"cZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"cZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"cZC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"cZD" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/underground/sewer/south) +"cZE" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/indoors/sewer_treatment/lower) +"cZF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZG" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/underground/sewer/south) +"cZH" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/underground/sewer/south) +"cZI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cZJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"cZK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"cZL" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"cZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"cZN" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"cZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"cZP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"cZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"cZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"cZT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/underground/power_substation) +"cZU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"cZV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"cZX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"cZY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/underground/sewer/south) +"cZZ" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"daa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -16 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dab" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/south) +"dad" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/underground/sewer/south) +"daf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/underground/sewer/south) +"dag" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/power_substation) +"dah" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"dai" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/power_substation) +"daj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/power_substation) +"dak" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"dal" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dam" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/underground/sewer/south) +"dan" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dao" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dap" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"daq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/underground/power_substation) +"dar" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/underground/power_substation) +"das" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dat" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dau" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 15 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/underground/sewer/south) +"daw" = ( +/obj/effect/blocker/water, +/obj/structure/filtration/collector_pipes{ + layer = 5; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"dax" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/sewer/south) +"day" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/weapon/gun/pistol/vp78/army{ + current_mag = null; + pixel_x = -5; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"daz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"daA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/underground/sewer/south) +"daB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"daC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"daD" = ( +/obj/structure/machinery/light/small, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"daE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"daF" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob) +"daG" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob) +"daH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"daI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"daJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"daK" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13; + explo_proof = 1 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"daL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"daM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"daN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"daO" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/oob) +"daP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"daQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"daR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"daS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"daT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"daU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/oob) +"daV" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"daW" = ( +/obj/structure/largecrate/supply/supplies/wy_emergency_food, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"daX" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/tyrargo/underground/sewer/south) +"daY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/tyrargo/underground/sewer/south) +"daZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"dba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"dbc" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbd" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/storage/backpack/molle/backpack/army, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbf" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"dbh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/underground/museum_carpark) +"dbi" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = 4 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dbj" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 22; + pixel_x = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"dbk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/underground/museum_carpark) +"dbl" = ( +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -28 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"dbn" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dbq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbr" = ( +/obj/item/prop{ + desc = "A manual, crew-operated mortar system intended to rain down 80mm goodness on anything it's aimed at. Uses an advanced targeting computer. This one has fired so many rounds the barrel is warped, leaving it non-functional"; + icon = 'icons/obj/structures/mortar.dmi'; + icon_state = "c_mortar_m402"; + name = "M402 mortar (non-functional)"; + dir = 8; + pixel_y = 18; + pixel_x = -14; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbs" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbt" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbu" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 22; + pixel_x = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dbv" = ( +/turf/open/floor/interior/wood/alt, +/area/tyrargo/oob) +"dbw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"dby" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"dbz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dbA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"dbB" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/museum_storage/ground) +"dbC" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dbD" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dbE" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"dbF" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Orange{ + dir = 8; + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dbH" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/museum_storage/upper) +"dbI" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/WeylandYutani{ + pixel_y = -12; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"dbK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbL" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/destroyed{ + dir = 4; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dbM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dbN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbO" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dbP" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + pixel_y = 5; + pixel_x = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/museum_carpark) +"dbS" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"dbT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbU" = ( +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/underground/museum_carpark) +"dbV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"dbW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dbX" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dbY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dbZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dca" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"dcb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/map_item, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dcc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/tyrargo/underground/sewer/north) +"dcd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrowncorners2, +/area/tyrargo/underground/sewer/north) +"dce" = ( +/obj/effect/landmark/map_item, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dcf" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dcg" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"dch" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dci" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"dcj" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/turf/open/floor/prison/yellow, +/area/tyrargo/oob) +"dck" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/turf/open/floor/prison/yellow, +/area/tyrargo/oob) +"dcl" = ( +/turf/open/floor/prison/yellow, +/area/tyrargo/oob) +"dcm" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 30 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"dcn" = ( +/obj/effect/landmark/map_item, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dco" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dcp" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"dcq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dcr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dcs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13; + explo_proof = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"dct" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"dcu" = ( +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"dcv" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 29 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"dcw" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"dcx" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"dcy" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/item/trash/uscm_mre{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dcz" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"dcA" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"dcB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2) +"dcC" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/no_tunnel) +"dcD" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"dcE" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"dcF" = ( +/obj/item/ammo_casing/shell, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"dcG" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"dcH" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dcI" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dcJ" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"dcK" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"dcL" = ( +/obj/item/reagent_container/blood/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"dcM" = ( +/mob/living/simple_animal/small/cat{ + name = "Holly"; + real_name = "Holly" + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"dcN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/museum_carpark) +"dcO" = ( +/turf/open/floor/plating/wood_broken2, +/area/tyrargo/landing_zone_1/ceiling) +"dcP" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 22 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"dcQ" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 21 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"dcR" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"dcS" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"dcT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"dcU" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"dcV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"dcW" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 30 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"dcX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"dcY" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"dcZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"dda" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ddb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"ddc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"ddd" = ( +/obj/structure/prop/almayer/hangar_stencil{ + pixel_y = -11; + pixel_x = -10 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"dde" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"ddf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"ddg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"ddh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ddi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ddj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ddk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ddl" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ddm" = ( +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ddn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/admin/ground) +"ddo" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ddp" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"ddq" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ddr" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"dds" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ddt" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/trash/plate, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ddu" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"ddv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"ddw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"ddx" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"ddy" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"ddz" = ( +/obj/item/ammo_magazine/rifle/lmg/heap{ + current_rounds = 0; + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/lmg/holo_target{ + pixel_y = -1; + current_rounds = 84 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"ddA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ddB" = ( +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"ddC" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"ddD" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"ddE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"ddF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"ddG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/coagulation/icon8_3, +/area/tyrargo/indoors/sewer_treatment/lower) +"ddH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"ddI" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer3, +/area/tyrargo/underground/sewer/south) +"ddJ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"ddK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 8; + pixel_y = 1; + pixel_x = -3 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"ddL" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ddM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ddN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"ddO" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"ddP" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"ddQ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/south) +"ddR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/south) +"ddS" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 7; + pixel_x = -30; + desc = "Semiotic Standard denoting bunker network designation."; + name = "Bunker Network - Sector Jericho 41" + }, +/obj/structure/sign/safety/south{ + pixel_x = -18; + pixel_y = 7 + }, +/obj/structure/sign/safety/four{ + pixel_x = -30; + pixel_y = -7 + }, +/obj/structure/sign/safety/one{ + pixel_x = -18; + pixel_y = -7 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/tyrargo/underground/bunker/south) +"ddT" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ddU" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"ddV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/yellowcorner, +/area/tyrargo/underground/sewer/north) +"ddW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/yellow, +/area/tyrargo/underground/sewer/north) +"ddX" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/yellow, +/area/tyrargo/underground/sewer/north) +"ddY" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"ddZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"dea" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/yellowcorner/north, +/area/tyrargo/underground/sewer/north) +"deb" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/underground/sewer/north) +"dec" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"ded" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"dee" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"def" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"deg" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"deh" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"dei" = ( +/obj/structure/lz_sign/tyrargo_sign/lz2/alt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"dej" = ( +/obj/structure/lz_sign/tyrargo_sign/city{ + light_on = 1; + light_power = 2; + light_range = 2; + light_color = "#40BFFF" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"dek" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"del" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/reagent_dispensers/tank/fuel{ + layer = 2.9 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"dem" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/plastic/breaching_charge/rubber, +/obj/item/explosive/plastic/breaching_charge/rubber, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/security/ground) +"den" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"deo" = ( +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/tiretrack, +/obj/structure/prop/vehicles/tank/bison/open{ + dir = 4; + pixel_y = -30 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"dep" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"deq" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"der" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/army_staging) +"des" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"det" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/army_staging) +"deu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/east) +"dev" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/oob) +"dew" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2) +"dex" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 19 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"dey" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"dez" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/landing_zone_2) +"deA" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"deB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"deC" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"deD" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/smg/mp5/mp5a5{ + current_mag = null + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"deE" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"deF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"deG" = ( +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"deH" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"deI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"deJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/shield/riot, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"deK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 6; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 2; + layer = 2.98; + pixel_y = 5 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"deL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"deM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"deN" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"deO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -8; + pixel_x = -6 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"deP" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"deQ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"deR" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"deS" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"deT" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 2 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"deU" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"deV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"deW" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"deX" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"deY" = ( +/obj/structure/prop/vehicles/tank/bison/open{ + dir = 4; + pixel_y = -28; + pixel_x = -13 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"deZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfa" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open"; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfb" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office/burst, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfc" = ( +/obj/structure/prop/hybrisa/vehicles/Ambulance{ + dir = 1; + pixel_x = 8; + pixel_y = -1; + bound_height = 32 + }, +/obj/structure/bed/roller, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfe" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dff" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfh" = ( +/obj/item/trash/used_stasis_bag, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfi" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfj" = ( +/obj/item/trash/uscm_mre, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfk" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfl" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfm" = ( +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfn" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfo" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfp" = ( +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + pixel_x = 10 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfq" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open"; + pixel_y = -8 + }, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office/burst, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfr" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dft" = ( +/obj/item/storage/briefcase{ + pixel_x = 26; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfu" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfv" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfx" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfy" = ( +/obj/item/trash/uscm_mre, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfz" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfA" = ( +/obj/structure/prop/tyrargo/traffic_signal, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfC" = ( +/obj/item/storage/briefcase/stowaway, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfD" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfE" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfF" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfG" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfH" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfI" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfJ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfK" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/item/storage/box/packet/high_explosive{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfL" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/item/weapon/shield/riot, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfM" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfN" = ( +/obj/structure/closet/bodybag/cryobag, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfO" = ( +/obj/structure/closet/bodybag/cryobag, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfP" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/turret{ + dir = 8; + pixel_x = -33; + pixel_y = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"dfR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfS" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/turf/open/floor/coagulation/icon7_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"dfT" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 2; + layer = 2.98; + pixel_y = 5 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dfX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/landing_zone_2) +"dfY" = ( +/obj/item/device/healthanalyzer, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dfZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/landing_zone_2) +"dga" = ( +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgb" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 22; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgc" = ( +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgd" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier"; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dge" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 6; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 1 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgf" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgh" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgj" = ( +/obj/item/storage/briefcase{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 17; + pixel_x = -10 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgl" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgm" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 2; + layer = 2.98; + pixel_y = -12 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgp" = ( +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgq" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgr" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgs" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgt" = ( +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgu" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/trash/uscm_mre, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgv" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_y = 21; + pixel_x = -5 + }, +/obj/structure/prop/vehicles/tank/truck{ + dir = 1; + pixel_y = -7 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgx" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgy" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgz" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/item/trash/uscm_mre{ + pixel_x = 12; + pixel_y = -7 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgA" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgB" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgC" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgD" = ( +/obj/structure/tent/med, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgE" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -14; + pixel_y = -1; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgF" = ( +/obj/structure/tent/med, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgG" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgH" = ( +/obj/structure/tent/med, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 10 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgI" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -12; + pixel_y = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgJ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgK" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgL" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgM" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgN" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/autoinjector/full{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgP" = ( +/obj/item/ammo_magazine/smg/mp5{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgQ" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgR" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty2{ + icon_state = "bigrollerempty2_up"; + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgS" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/blood/empty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgU" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgV" = ( +/obj/structure/surface/table/almayer, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgW" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgX" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"dgY" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dgZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/colony_streets/south_west) +"dha" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhb" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/clothing/mask/gas/swat, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhd" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhe" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 1; + pixel_y = -4; + pixel_x = -17 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhi" = ( +/obj/item/prop/colony/used_flare, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhj" = ( +/obj/item/weapon/gun/smg/mp5/mp5a5{ + current_mag = null + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhk" = ( +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhl" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhm" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/storage/briefcase{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhn" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dho" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = -2; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 17 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"dhq" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/item/ammo_casing/bullet, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhr" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhs" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/item/weapon/shield/riot, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dht" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dhv" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhw" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/item/ammo_magazine/smg/mp5{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhx" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhy" = ( +/obj/effect/decal/hybrisa/road/road_stop, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhz" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhA" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Purple{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhB" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhC" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhD" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/item/ammo_magazine/smg/mp5{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhE" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/closet/crate/medical, +/obj/item/stack/medical/advanced/ointment/upgraded, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhF" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhG" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Turquoise{ + dir = 1; + layer = 6; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dhH" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = 4; + pixel_x = -5 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhI" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/vehicles/tank/ifv{ + dir = 8; + pixel_y = -28 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhJ" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhK" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhL" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhM" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhN" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhO" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Cop, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhP" = ( +/obj/item/clothing/mask/gas/swat, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/weapon/gun/smg/mp5/mp5a5{ + current_mag = null + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhR" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_x = 5 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 28 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"dhW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"dhX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"dhY" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"dhZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/floodgate{ + icon_state = "0,3" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"dia" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/floodgate{ + icon_state = "0,2" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"dib" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/west{ + pixel_y = 27; + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"dic" = ( +/obj/structure/floodgate{ + icon_state = "0,3" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_2/east_trench) +"did" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"die" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dif" = ( +/obj/item/weapon/baton, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dig" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/obj/effect/mist/steam{ + pixel_x = -15; + pixel_y = -14 + }, +/obj/effect/mist/steam{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dii" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"dij" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dik" = ( +/obj/structure/girder, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dil" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"dim" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"din" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dip" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/obj/effect/mist/steam{ + pixel_x = -15; + pixel_y = -14 + }, +/obj/effect/mist/steam{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"diq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 5 + }, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"dir" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = -10 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_y = 8; + pixel_x = 10 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dis" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dit" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 10 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"diu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/baton, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"div" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier"; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"diw" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier"; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier"; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"diy" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Light_Blue, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"diz" = ( +/obj/item/device/healthanalyzer, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"diA" = ( +/obj/item/weapon/baton, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"diB" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Cop, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"diC" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -10; + pixel_y = 23 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central_south) +"diD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/baton, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"diE" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"diF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"diG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"diH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"diI" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"diJ" = ( +/obj/effect/mist/steam{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"diK" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/east) +"diL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/east) +"diM" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"diN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"diO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/east) +"diP" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"diQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"diR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/east) +"diS" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_streets/east) +"diT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/east) +"diU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/east) +"diV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/east) +"diW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/east) +"diX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/east) +"diY" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_streets/east) +"diZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"dja" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"djb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/east) +"djc" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"djd" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"dje" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"djf" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"djg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/east) +"djh" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"dji" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north) +"djj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"djk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north) +"djl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"djm" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Black{ + icon_state = "meridian_black_damage_5"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"djn" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"djo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"djp" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"djq" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"djr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"djs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"djt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"dju" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"djv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/engineering/upper/external) +"djw" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/landing_zone_2) +"djx" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/landing_zone_2) +"djy" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/landing_zone_2) +"djz" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/landing_zone_2) +"djA" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/landing_zone_2) +"djB" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djC" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djD" = ( +/obj/structure/largecrate, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = 21 + }, +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djG" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/underground/power_substation) +"djH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = 21 + }, +/obj/structure/largecrate/random/secure, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djJ" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djK" = ( +/obj/structure/largecrate/guns/merc, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"djL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"djM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/generator, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"djO" = ( +/obj/structure/largecrate/empty/case, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djP" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djQ" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"djR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"djS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/largecrate/empty/case, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"djT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/sewer/south) +"djU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"djV" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"djW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"djX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"djY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"djZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -26 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"dka" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"dkb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dkc" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"dkd" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"dke" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dkf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dkg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -42; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"dkh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/landing_zone_1/comms) +"dki" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/landing_zone_1) +"dkj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"dkk" = ( +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/engineering/upper/external) +"dkl" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark2{ + layer = 2; + explo_proof = 1; + pixel_y = -13; + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"dkm" = ( +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"dkn" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dko" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dkp" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dkq" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"dks" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkt" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/no_tunnel) +"dku" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkv" = ( +/obj/structure/largecrate/empty/secure, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkw" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"dky" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkz" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkA" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"dkB" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dkC" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkD" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkE" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkF" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.75 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.73 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkG" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkH" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 40 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"dkI" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_tunnel) +"dkL" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/wood, +/area/tyrargo/landing_zone_1) +"dkM" = ( +/obj/item/stack/medical/splint/random_amount{ + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"dkN" = ( +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1; + layer = 3; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"dkO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/ointment/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dkP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dkQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dkR" = ( +/obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dkS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dkT" = ( +/obj/item/stack/medical/bruise_pack/random_amount{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dkU" = ( +/obj/item/stack/medical/bruise_pack/random_amount{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"dkV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/medical/bruise_pack/random_amount{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"dkW" = ( +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount{ + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"dkX" = ( +/obj/item/prop/alien/hugger, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_west) +"dkY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dkZ" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dla" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"dlb" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"dlc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_tunnel) +"dld" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"dle" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/m56d, +/obj/item/device/m56d_gun, +/obj/item/device/m56d_post, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"dlf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/vehicles/tank/humvee/transport{ + dir = 4; + pixel_y = -6; + pixel_x = -3 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"dlg" = ( +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"dlh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/emergency{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"dli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"dlj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"dlk" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"dll" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"dlm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"dln" = ( +/obj/item/storage/surgical_tray/empty, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_ground) +"dlo" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dlp" = ( +/obj/structure/closet/crate/green, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "government_resin" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dlq" = ( +/obj/structure/largecrate/supply/supplies/wy_emergency_food, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"dlr" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -12; + dir = 8; + pixel_y = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"dls" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -12; + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"dlt" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -12; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"dlu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dlv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dlw" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = 32 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dlx" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"dly" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2/no_tunnel) +"dlz" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"dlA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dlB" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 3; + pixel_x = 10 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dlC" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dlD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_east) +"dlE" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/stack/barbed_wire, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dlF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"dlG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"dlH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"dlI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"dlJ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"dlK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"dlL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/east) +"dlM" = ( +/obj/structure/prop/hybrisa/misc/firebarreloff, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"dlN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"dlO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sandbags, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"dlP" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stack/medical/bruise_pack/random_amount{ + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"dlQ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrownfull2, +/area/tyrargo/indoors/sewer_treatment/upper) +"dlR" = ( +/obj/item/spacecash/c1000, +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"dlS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen/blue/clicky, +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"dlT" = ( +/obj/item/paper, +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"dlU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dlV" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dlW" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dlX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dlY" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dlZ" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dma" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dmb" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"dmc" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/security/upper) +"dmd" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dme" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dmf" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"dmg" = ( +/obj/item/tool/warning_cone{ + pixel_y = 4; + pixel_x = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmh" = ( +/obj/item/tool/warning_cone{ + pixel_y = 21; + pixel_x = -5 + }, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -36 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmi" = ( +/turf/open/floor/strata/green3/north, +/area/tyrargo/indoors/market/ground) +"dmj" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13; + pixel_x = -5 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmk" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/item/tool/warning_cone{ + pixel_y = -4; + pixel_x = -17 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dml" = ( +/obj/item/tool/warning_cone{ + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"dmm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_y = -4; + pixel_x = 4 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dmn" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/item/tool/warning_cone{ + pixel_y = 18; + pixel_x = -25 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dmo" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmp" = ( +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmq" = ( +/obj/item/tool/warning_cone, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_y = 21; + pixel_x = -5 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"dms" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmt" = ( +/obj/item/prop/colony/canister{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dmu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"dmv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/misc/power_cell, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmw" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"dmy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmz" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -25; + pixel_y = 26 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"dmA" = ( +/obj/structure/closet/crate/green, +/obj/item/ammo_magazine/m56d, +/obj/item/reagent_container/hypospray/autoinjector/emergency, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"dmB" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/green, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmE" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = -3; + pixel_y = 9; + dir = 4; + anchored = 1; + layer = 4.1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -2 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -32 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmH" = ( +/obj/item/stack/sandbags, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmI" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmJ" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 32; + pixel_x = -15 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmL" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dmM" = ( +/obj/item/prop/helmetgarb/rosary{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dmN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/power_cell/empty, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/landing_zone_1/comms) +"dmO" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"dmP" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"dmQ" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"dmR" = ( +/obj/structure/barricade/hesco, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"dmS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/ert_spawns/groundside_army, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"dmT" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"dmU" = ( +/obj/item/trash/used_stasis_bag, +/obj/effect/landmark/corpsespawner/hybrisa/weymart/burst, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dmV" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dmW" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dmX" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + layer = 2; + explo_proof = 1; + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"dmY" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dmZ" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dna" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"dnb" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnc" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnd" = ( +/obj/structure/barricade/hesco, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/hesco, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/watchtower, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"dng" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"dnh" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_x = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dni" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dnj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/closet/crate/green, +/obj/item/weapon/gun/smg/m39/army, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"dnk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnn" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dno" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnp" = ( +/obj/item/stack/barbed_wire, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dns" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnu" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -2; + layer = 2.98; + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sandbags, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnw" = ( +/obj/structure/flora/wood/trunk2{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dnx" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnz" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dnA" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/reagent_container/blood/empty, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -9; + layer = 2.8; + pixel_x = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dnB" = ( +/obj/structure/barricade/hesco, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dnC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dnD" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dnE" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"dnF" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"dnG" = ( +/obj/structure/barricade/hesco, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dnH" = ( +/obj/structure/flora/tree/tyrargo/tree_3, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"dnI" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"dnJ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"dnK" = ( +/obj/structure/barricade/hesco, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"dnL" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"dnM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/engineering/ground) +"dnN" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/item/tool/warning_cone{ + pixel_y = 10; + pixel_x = -8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"dnO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_ground) +"dnP" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/item/tool/warning_cone{ + pixel_y = 14; + pixel_x = -1 + }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/engineering/ground) +"dnQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"dnR" = ( +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/engineering/ground) +"dnS" = ( +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/obj/structure/noticeboard{ + icon_state = "notices_4"; + desc = null; + name = "sticky notes"; + pixel_x = -32 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"dnT" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dnU" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"dnV" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dnW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"dnX" = ( +/obj/item/tool/warning_cone{ + pixel_y = 14; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dnY" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dnZ" = ( +/obj/effect/decal/siding, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"doa" = ( +/obj/item/tool/warning_cone{ + pixel_y = 10; + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dob" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"doc" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"dod" = ( +/obj/item/prop/colony/used_flare, +/obj/item/tool/warning_cone{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"doe" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"dof" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dog" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13; + pixel_x = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"doh" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"doi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "8" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"doj" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"dok" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back{ + layer = 2.99 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"dol" = ( +/obj/structure/prop/hybrisa/vehicles/car_pileup{ + pixel_x = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"dom" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"don" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"doo" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dop" = ( +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31; + layer = 6.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"doq" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = 30; + layer = 6.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dor" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -36 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dos" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dot" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_east) +"dou" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999 + }, +/obj/effect/landmark/ert_spawns/groundside_army, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"dov" = ( +/obj/effect/landmark/corpsespawner/hybrisa/scientist_xenobiologist, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"dow" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dox" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 6; + pixel_y = 10; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 4; + pixel_y = -4; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"doy" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"doz" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"doA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_x = -32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"doB" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"doC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"doD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Ambulance{ + bound_height = 32 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"doE" = ( +/obj/structure/closet/crate/science, +/obj/effect/landmark/objective_landmark/science, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"doF" = ( +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"doG" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/closet/crate/medical, +/obj/item/stack/medical/splint/nano, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"doH" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"doI" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"doJ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/bed/roller/hospital/bloody, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"doK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/trash/green, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"doL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"doM" = ( +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"doN" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = 32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"doO" = ( +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"doP" = ( +/obj/structure/barricade/hesco{ + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -5; + pixel_x = -5 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"doQ" = ( +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_x = 32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"doR" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_x = -32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"doS" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 1; + pixel_y = 4; + layer = 2.97 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/south_ground) +"doT" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/museum_storage/ground) +"doU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"doV" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + dir = 4; + pixel_x = -5 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"doW" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"doX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/trash/blue, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"doY" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + dir = 4; + pixel_y = 8; + pixel_x = -8; + layer = 3.2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"doZ" = ( +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"dpa" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dpb" = ( +/obj/structure/prop/hybrisa/misc/trash/blue, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dpc" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -32 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpe" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = 18; + pixel_x = -25 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpf" = ( +/obj/item/tool/warning_cone{ + pixel_y = 9; + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpg" = ( +/obj/item/tool/warning_cone{ + pixel_y = -1; + pixel_x = -14 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dph" = ( +/obj/effect/decal/siding, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpi" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 32; + pixel_x = -15 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier"; + pixel_y = -2 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/tool/warning_cone{ + pixel_y = 12; + pixel_x = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpm" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = 32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dpq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"dpt" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"dpu" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpv" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_y = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpw" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/turf/open/floor/coagulation/icon2_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"dpx" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + dir = 4; + pixel_y = 8; + pixel_x = -8; + layer = 3.2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpy" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Turquoise{ + dir = 1; + layer = 6; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpz" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dpA" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dpB" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"dpC" = ( +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"dpD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + dir = 4; + pixel_x = -8; + layer = 3.1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpE" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"dpF" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"dpG" = ( +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 30; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"dpH" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"dpI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/oob/outdoors) +"dpJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpM" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dpN" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dpO" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange, +/obj/effect/landmark/nightmare{ + insert_tag = "bar_resin" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dpP" = ( +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 8; + pixel_x = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 32; + pixel_x = -15 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dpR" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"dpS" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"dpT" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -17; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"dpU" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"dpV" = ( +/obj/structure/closet/bodybag{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpW" = ( +/obj/structure/closet/bodybag, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"dpX" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = -11; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_y = 8; + pixel_x = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dpY" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier"; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"dpZ" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 6; + pixel_y = 10; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dqa" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 7; + pixel_y = 2; + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dqb" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = 8; + pixel_x = -4 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dqc" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -32 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"dqe" = ( +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = -32; + pixel_x = -15 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"dqf" = ( +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = -32; + pixel_x = -15 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dqg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"dqh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -17; + pixel_x = 11 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"dqi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 28 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dqj" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dqk" = ( +/obj/structure/closet/crate/science, +/obj/item/stack/medical/advanced/bruise_pack/upgraded, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"dqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"dqn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/science, +/obj/effect/landmark/objective_landmark/science, +/obj/item/stack/medical/advanced/bruise_pack/upgraded, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north_west) +"dqo" = ( +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 8; + pixel_x = 11 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"dqp" = ( +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 32; + pixel_x = 3 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"dqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 30; + pixel_x = -14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"dqr" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/turf/open/floor/coagulation/icon8_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqs" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqt" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqu" = ( +/turf/open/floor/coagulation/icon0_5, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqv" = ( +/turf/open/floor/coagulation/icon1_1, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqw" = ( +/obj/structure/filtration/coagulation{ + icon_state = "2,1" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqx" = ( +/obj/structure/filtration/coagulation{ + icon_state = "6,1" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqy" = ( +/turf/open/floor/coagulation/icon7_1, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqz" = ( +/turf/open/floor/coagulation/icon8_3, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqA" = ( +/obj/structure/filtration/coagulation{ + icon_state = "2,1" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqB" = ( +/obj/structure/filtration/coagulation{ + icon_state = "6,1" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqC" = ( +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqD" = ( +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqE" = ( +/turf/open/floor/coagulation/icon8_6, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqF" = ( +/obj/structure/filtration/coagulation{ + icon_state = "1,2" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqG" = ( +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Cop, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"dqI" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dqJ" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/underground/sewer/south) +"dqK" = ( +/obj/structure/filtration/coagulation_arm{ + density = 0; + explo_proof = 1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqL" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"dqM" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dqN" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/underground/sewer/south) +"dqO" = ( +/turf/open/floor/coagulation/icon0_4, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqP" = ( +/turf/open/floor/coagulation/icon8_4, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqQ" = ( +/obj/structure/filtration/flacculation_arm{ + density = 0; + explo_proof = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqR" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dqS" = ( +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"dqT" = ( +/obj/structure/filtration/machine_96x96/disinfection{ + layer = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqU" = ( +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqV" = ( +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqW" = ( +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqX" = ( +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dqY" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/sewer/south) +"dqZ" = ( +/obj/structure/filtration/coagulation{ + icon_state = "2,7" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dra" = ( +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drb" = ( +/obj/structure/filtration/coagulation{ + icon_state = "2,7" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drc" = ( +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drd" = ( +/turf/open/floor/coagulation/icon1_7, +/area/tyrargo/indoors/sewer_treatment/lower) +"dre" = ( +/obj/structure/filtration/coagulation{ + icon_state = "3,7" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drf" = ( +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drg" = ( +/turf/open/floor/coagulation/icon7_7, +/area/tyrargo/indoors/sewer_treatment/lower) +"drh" = ( +/turf/open/floor/coagulation/icon8_7, +/area/tyrargo/indoors/sewer_treatment/lower) +"dri" = ( +/obj/structure/filtration/coagulation{ + icon_state = "3,7" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drj" = ( +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drk" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/tyrargo/indoors/sewer_treatment/lower) +"drl" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/tyrargo/indoors/sewer_treatment/lower) +"drm" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1"; + bound_height = 64; + layer = 6 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"drn" = ( +/turf/open/floor/coagulation/icon4_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"dro" = ( +/obj/structure/filtration/machine_96x96/filtration{ + layer = 5 + }, +/turf/open/floor/coagulation/icon5_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"drp" = ( +/turf/open/floor/coagulation/icon6_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"drq" = ( +/turf/open/floor/coagulation/icon7_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"drr" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/tyrargo/indoors/sewer_treatment/lower) +"drs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/flask/marine/army, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"drt" = ( +/turf/open/floor/hybrisa/metal/stripe_red/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"dru" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/tyrargo/indoors/sewer_treatment/lower) +"drv" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"drw" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"drx" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/item/device/flashlight/lamp/tripod/grey, +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 3.03 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dry" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"drz" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/turf/open/floor/coagulation/icon0_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"drA" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/turf/open/floor/coagulation/icon2_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"drB" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/turf/open/floor/coagulation/icon8_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"drC" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"drD" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drE" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"drG" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river/desert/shallow_edge/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"drH" = ( +/obj/structure/filtration/collector_pipes{ + layer = 3.1; + pixel_y = 8; + pixel_x = 2 + }, +/turf/open/floor/coagulation/icon0_5, +/area/tyrargo/indoors/sewer_treatment/lower) +"drI" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drJ" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"drL" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drM" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drN" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 1; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"drP" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drQ" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drR" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drS" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"drT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river/desert/shallow_edge/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"drU" = ( +/obj/structure/filtration/collector_pipes{ + layer = 3.1; + pixel_y = -8; + pixel_x = 2 + }, +/turf/open/floor/coagulation/icon0_5, +/area/tyrargo/indoors/sewer_treatment/lower) +"drV" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/transport{ + dir = 1; + pixel_y = -3; + pixel_x = -16 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"drW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -5 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"drX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drY" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"drZ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsa" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "distribution"; + density = 0; + explo_proof = 1 + }, +/turf/open/floor/coagulation/icon5_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsb" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsd" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dse" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsf" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsg" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river/desert/shallow_edge/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/coagulation/icon8_3, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsj" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsk" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_edge/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsm" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"dsn" = ( +/obj/effect/blocker/water, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/oob) +"dso" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsp" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/river/desert/shallow_edge/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsq" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/shallow_edge/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsr" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dss" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dst" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsu" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsw" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsy" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsz" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsA" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsB" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/reagent_scanner, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsD" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsE" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dsF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsH" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"dsJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/dropper{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 17; + layer = 3.03 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsK" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/obj/structure/filtration/collector_pipes{ + layer = 3.1; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/north, +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsM" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/north, +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsN" = ( +/turf/open/floor/prison/green, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/glass/beaker{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/northwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsR" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 3 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 3 + }, +/obj/structure/filtration/collector_pipes{ + layer = 5; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsV" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsW" = ( +/obj/item/storage/fancy/vials, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/dropper{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/glass/beaker/vial{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas{ + pixel_y = -1; + pixel_x = 7 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 17; + layer = 3.03 + }, +/obj/item/reagent_container/glass/beaker/vial{ + pixel_x = -40 + }, +/obj/item/device/reagent_scanner, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dsZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filtration/collector_pipes{ + layer = 5; + pixel_x = 8; + pixel_y = 13 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dta" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dtb" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549"; + pixel_x = -3 + }, +/obj/structure/sign/safety/water{ + pixel_y = 31; + desc = "Semiotic Standard denoting the presence of a release valve for the sewer water. The power to control this switch is found east of this room." + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dtc" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble7{ + pixel_x = -4 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/sewer_treatment/lower) +"dtd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/vials, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dte" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/beakers{ + pixel_y = 10; + pixel_x = -6 + }, +/obj/structure/sign/safety/chem_lab{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dtf" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 32; + pixel_x = 2 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/sewer_treatment/lower) +"dtg" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble5{ + pixel_x = -8 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/sewer_treatment/lower) +"dth" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/lower) +"dti" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hefa_cult_decals/d96{ + color = 880808 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtj" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/item/tool/candle{ + pixel_y = -5; + pixel_x = -12 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtk" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/item/tool/candle{ + pixel_y = 9; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtl" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtm" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dtn" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/item/tool/candle{ + pixel_x = -10; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dto" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtp" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtq" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtr" = ( +/obj/structure/mineral_door/wood{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dts" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/restraint/adjustable/cable, +/obj/item/restraint/adjustable/cable, +/obj/item/weapon/baton/cattleprod, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dtt" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtu" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/obj/item/tool/candle{ + pixel_y = 2; + pixel_x = -12 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtv" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/obj/item/tool/candle{ + pixel_y = -5 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtw" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/item/clothing/accessory/poncho/black, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/oob) +"dtx" = ( +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dty" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_container/blood/empty, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dtz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dtA" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/apartment) +"dtB" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dtC" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/mall) +"dtD" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dtE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dtF" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + layer = 5; + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 9 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtG" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtH" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet1_red"; + pixel_x = 14 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtI" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat{ + pixel_x = -5 + }, +/obj/structure/machinery/light/red{ + light_color = "#FF7373" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtJ" = ( +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtK" = ( +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8; + density = 0; + pixel_x = 32 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_y = 12; + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 9 + }, +/obj/item/spacecash/c100{ + pixel_x = -8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtL" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtM" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"dtN" = ( +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dtO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dtP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_7"; + explo_proof = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dtQ" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dtR" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dtS" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dtT" = ( +/obj/structure/prop/hybrisa/misc/trash/blue, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 5; + pixel_x = -12 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dtU" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori1_red"; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtV" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori3_red"; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtW" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet3_red"; + pixel_x = 14; + pixel_y = -8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtX" = ( +/obj/structure/bed/chair/comfy/hybrisa/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtY" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + layer = 5; + pixel_x = 1; + pixel_y = -7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dtZ" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dua" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dub" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"duc" = ( +/obj/structure/machinery/door/airlock/almayer/generic/rusted, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dud" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/spacecash/c10{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"due" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"duf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dug" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"duh" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "csplatter1"; + pixel_y = 4; + pixel_x = -10 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dui" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"duj" = ( +/obj/structure/bed/chair/comfy/hybrisa/red{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"duk" = ( +/obj/structure/bed/chair/comfy/hybrisa/red, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dul" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/mall) +"dum" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dun" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"duo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dup" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"duq" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dur" = ( +/obj/structure/machinery/vending/cigarette/koorlander, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dus" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dut" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/mall) +"duu" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"duv" = ( +/obj/structure/platform_decoration/stone/sandstone/west, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"duw" = ( +/obj/structure/platform/stone/sandstone/north, +/obj/structure/bed/chair/comfy/hybrisa/red{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"dux" = ( +/obj/structure/platform_decoration/stone/sandstone/east, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"duy" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + locked = 1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"duz" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/mall) +"duA" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"duB" = ( +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/far, +/obj/item/weapon/gun/energy/rxfm5_eva, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"duC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/coffeecup, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"duD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"duE" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/smg/mp5, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"duF" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/ammo_magazine/smg/mp5{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"duG" = ( +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"duH" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"duI" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/tool/soap/deluxe, +/obj/structure/curtain/open/shower, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/underground/apartment) +"duJ" = ( +/obj/structure/platform/stone/sandstone/east, +/obj/structure/bed/chair/comfy/hybrisa/red{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"duK" = ( +/obj/item/clothing/under/swimsuit/purple{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/spacecash/c20{ + pixel_y = -6; + pixel_x = -3 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"duL" = ( +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"duM" = ( +/obj/item/spacecash/c1{ + pixel_y = -4; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"duN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"duO" = ( +/obj/structure/platform/stone/sandstone/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet1_red"; + pixel_x = 14 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"duP" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_x = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"duQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"duR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_x = -1; + light_color = "#96DED1"; + light_on = 1; + light_range = 1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"duS" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"duT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_upper) +"duU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"duV" = ( +/obj/structure/cable/white{ + icon_state = "1-5"; + level = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"duW" = ( +/obj/structure/cable/white{ + icon_state = "2-8"; + level = 2; + pixel_y = 15 + }, +/obj/structure/cable/white{ + icon_state = "1-9"; + level = 2; + pixel_y = -16; + pixel_x = 15 + }, +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"duX" = ( +/obj/structure/cable/white{ + icon_state = "2-4"; + level = 2; + pixel_y = 13; + pixel_x = -18 + }, +/obj/structure/cable/white{ + icon_state = "2-8"; + level = 2; + pixel_y = 13; + pixel_x = 9 + }, +/obj/structure/cable/white{ + icon_state = "1-9"; + level = 2; + pixel_y = -17; + pixel_x = 9 + }, +/obj/structure/cable/white{ + icon_state = "2-4"; + level = 2; + pixel_y = 14; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"duY" = ( +/obj/structure/cable/white{ + icon_state = "2-8"; + level = 2; + pixel_y = 14; + pixel_x = -12 + }, +/obj/structure/cable/white{ + icon_state = "4-5"; + level = 2; + pixel_y = -16; + pixel_x = -27 + }, +/obj/structure/cable/white{ + icon_state = "5-8"; + level = 2; + pixel_x = 5; + pixel_y = -16 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"duZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/explosive/plastic/hybrisa/mining{ + name = "large mining charge"; + icon_state = "custom_plastic_explosive_locked"; + pixel_x = 15; + pixel_y = -4; + desc = "Used to put holes in specific areas without too much extra hole. Why it's planted in a bathroom? Who knows." + }, +/obj/structure/cable/white{ + icon_state = "2-10"; + level = 2; + pixel_y = 11 + }, +/obj/structure/cable/white{ + icon_state = "1-5"; + level = 2; + pixel_y = -20; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dva" = ( +/obj/structure/prop/hybrisa/misc/pole{ + color = "#acb1b7"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dvb" = ( +/obj/item/spacecash/c20{ + pixel_y = -6; + pixel_x = -3 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dvc" = ( +/obj/item/spacecash/c1{ + pixel_y = -3; + pixel_x = -4 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dvd" = ( +/obj/structure/platform/stone/sandstone/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet2_red"; + pixel_x = 14; + layer = 2.9 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"dve" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dvf" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/underground/engineering) +"dvg" = ( +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + layer = 5; + pixel_x = -7; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dvi" = ( +/obj/structure/prop/hybrisa/misc/detonator{ + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dvj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dvk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dvl" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dvm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dvn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/museum_carpark) +"dvo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dvp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/surface/rack, +/obj/item/storage/toolkit/empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvr" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dvs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dvv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = -32; + pixel_x = 16 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dvy" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dvz" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 38 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dvA" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dvB" = ( +/obj/item/clothing/under/swimsuit/green{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dvC" = ( +/obj/structure/platform/stone/sandstone/west, +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet3_red"; + pixel_x = 14; + pixel_y = -8 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/mall) +"dvD" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori1_black"; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dvE" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori2_black"; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dvF" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori3_black"; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dvG" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dvH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dvI" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/shuttle/escapepod/floor0/north, +/area/tyrargo/underground/engineering) +"dvJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/engineering) +"dvK" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dvL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/engineering) +"dvM" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/engineering) +"dvN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dvO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/shuttle/escapepod/floor0/north, +/area/tyrargo/underground/engineering) +"dvP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dvQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dvR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/shuttle/escapepod/floor0/west, +/area/tyrargo/underground/engineering) +"dvS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/shuttle/escapepod/floor0/north, +/area/tyrargo/underground/engineering) +"dvT" = ( +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dvU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dvV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dvW" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dvX" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 3; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dvY" = ( +/obj/structure/bed/bedroll, +/obj/item/bedsheet/brown, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dvZ" = ( +/obj/item/clothing/ears/earmuffs{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/trash/hybrisa/cuppa_joes_static/empty_cup{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/hybrisa/cuppa_joes_static/lid, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dwa" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/telescreenbrokespark{ + pixel_y = 32 + }, +/obj/structure/surface/table, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dwb" = ( +/obj/structure/surface/table, +/obj/item/trash/hybrisa/cuppa_joes_static/empty_cup_stack{ + pixel_y = 20; + pixel_x = 8 + }, +/obj/item/trash/hybrisa/cuppa_joes_static/empty_cup{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/trash/hybrisa/cuppa_joes_static/lid{ + pixel_y = 2; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dwc" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dwd" = ( +/obj/structure/bed{ + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dwe" = ( +/obj/structure/curtain/red, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dwg" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dwh" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/shuttle/escapepod/north, +/area/tyrargo/underground/engineering) +"dwi" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/obj/structure/terminal{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/engineering) +"dwj" = ( +/obj/structure/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dwk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dwm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dwn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/shuttle/escapepod/north, +/area/tyrargo/underground/engineering) +"dwp" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat, +/area/tyrargo/underground/engineering) +"dwq" = ( +/turf/open/floor/hybrisa/metal/grated, +/area/tyrargo/underground/engineering) +"dwr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/shuttle/escapepod/floor1, +/area/tyrargo/underground/engineering) +"dws" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwt" = ( +/obj/structure/sign/safety/rewire{ + desc = "Semiotic Standard denoting the nearby presence of a power substation."; + name = "power substation semiotic"; + pixel_x = 34 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/south) +"dwu" = ( +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/apartment) +"dwv" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/device/defibrillator/synthetic{ + pixel_y = 2 + }, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/apartment) +"dww" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/computer/disk_reader{ + dir = 1; + pixel_y = -3 + }, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/apartment) +"dwx" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = 26; + light_range = 1 + }, +/turf/open/shuttle/escapepod/floor2/north, +/area/tyrargo/underground/apartment) +"dwy" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dwz" = ( +/obj/item/stool{ + pixel_y = 14 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dwA" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dwB" = ( +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/shuttle/escapepod/floor1/east, +/area/tyrargo/underground/engineering) +"dwD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2; + pixel_x = -1 + }, +/turf/open/shuttle/escapepod/floor1/east, +/area/tyrargo/underground/engineering) +"dwE" = ( +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dwF" = ( +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dwG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/blocker/water, +/turf/open/shuttle/escapepod/floor1/east, +/area/tyrargo/underground/engineering) +"dwH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/colony{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dwI" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dwJ" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dwK" = ( +/obj/structure/terminal{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dwL" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/apartment) +"dwM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dwN" = ( +/obj/structure/surface/table, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dwO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dwP" = ( +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dwQ" = ( +/obj/structure/platform/stone/sandstone/west, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dwR" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dwS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dwU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 2 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwV" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/hybrisa/metal/grated, +/area/tyrargo/underground/engineering) +"dwW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dwX" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 32 + }, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dwY" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/power/breakerbox, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/apartment) +"dwZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dxa" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dxb" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid{ + dir = 2 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dxc" = ( +/obj/structure/platform_decoration/stone/sandstone/north, +/obj/structure/closet/hybrisa, +/obj/item/clothing/under/swimsuit/black, +/obj/item/clothing/under/swimsuit/black, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dxd" = ( +/obj/structure/closet/hybrisa, +/obj/item/clothing/under/swimsuit/green, +/obj/item/clothing/under/swimsuit/green, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dxe" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/shuttle/escapepod/floor2, +/area/tyrargo/underground/engineering) +"dxf" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/shuttle/escapepod/east, +/area/tyrargo/underground/engineering) +"dxg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/shuttle/escapepod/east, +/area/tyrargo/underground/engineering) +"dxh" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/escapepod/east, +/area/tyrargo/underground/engineering) +"dxi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/shuttle/escapepod/floor2, +/area/tyrargo/underground/engineering) +"dxj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dxk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/underground/engineering) +"dxl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/shuttle/escapepod/floor0, +/area/tyrargo/underground/engineering) +"dxm" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/stairs{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxn" = ( +/obj/structure/stairs{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxo" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxp" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxq" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxr" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti1, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"dxs" = ( +/obj/structure/machinery/door/airlock/almayer/generic/rusted{ + dir = 2 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dxt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dxx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxy" = ( +/turf/open/shuttle/escapepod/floor1/west, +/area/tyrargo/underground/apartment) +"dxz" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/turf/open/shuttle/escapepod/floor0/west, +/area/tyrargo/underground/apartment) +"dxA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/barricade/handrail/strata{ + dir = 8; + layer = 3 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dxC" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dxD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dxE" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dxF" = ( +/obj/item/device/camera{ + pixel_y = 14; + pixel_x = 4 + }, +/obj/item/stool{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dxG" = ( +/obj/effect/acid_hole{ + icon_state = "hole_1" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/mall) +"dxH" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -24; + pixel_y = 3; + desc = "A large piece of cheap printed paper. There seems to be a subtle hole cut out in it.." + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dxI" = ( +/obj/item/stool{ + pixel_y = 4; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dxJ" = ( +/obj/item/stool{ + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dxK" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dxL" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dxM" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dxN" = ( +/obj/structure/prop/hybrisa/misc/urinal{ + pixel_x = -28 + }, +/obj/structure/tunnel/maint_tunnel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dxO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/yellow3, +/area/tyrargo/underground/engineering) +"dxP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxQ" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/tool/pen/red/clicky, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxR" = ( +/obj/structure/machinery/big_computers/computerbrown/computer1, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxS" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxT" = ( +/obj/structure/machinery/big_computers/computerbrown/computer5, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxV" = ( +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxW" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxX" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dxY" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/apartment) +"dxZ" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat, +/area/tyrargo/underground/apartment) +"dya" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/apartment) +"dyb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/barricade/handrail/strata{ + dir = 8; + layer = 3 + }, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble6{ + pixel_y = 12; + pixel_x = 3 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/apartment) +"dyc" = ( +/turf/open/floor/corsat, +/area/tyrargo/underground/apartment) +"dyd" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/apartment) +"dye" = ( +/obj/structure/closet/toolcloset, +/obj/item/stack/cable_coil/random, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/apartment) +"dyf" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_x = -18 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dyg" = ( +/obj/structure/machinery/photocopier, +/obj/structure/surface/table, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dyh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dyi" = ( +/obj/structure/surface/table, +/obj/item/storage/photo_album{ + desc = "A photo album filled with photos of strippers, all taken from a hole in a wall." + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dyj" = ( +/obj/structure/closet/cabinet, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dyk" = ( +/obj/structure/bed{ + pixel_y = 12 + }, +/obj/item/bedsheet/colorable{ + color = "#798675"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dyl" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dym" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/facepaint/sunscreen_stick{ + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dyn" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"dyo" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced/black, +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dyp" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/facepaint/lipstick, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dyq" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/facepaint, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dyr" = ( +/obj/structure/closet/hybrisa, +/obj/item/clothing/under/swimsuit/red, +/obj/structure/machinery/light/red{ + light_color = "#FF7373"; + dir = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dys" = ( +/obj/structure/closet/hybrisa, +/obj/item/facepaint/clown, +/obj/item/clothing/under/swimsuit/black, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dyt" = ( +/obj/structure/prop/hybrisa/misc/urinal{ + pixel_x = -28 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dyu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dyv" = ( +/obj/structure/machinery/big_computers/messaging_server/brown, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dyw" = ( +/obj/structure/machinery/big_computers/computerbrown/computer4, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dyx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/powercell{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/spawner/random/toolbox{ + layer = 4; + pixel_y = 13 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dyy" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/yellow3/west, +/area/tyrargo/underground/engineering) +"dyz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/tyrargo/underground/engineering) +"dyA" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dyB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dyC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/toolbox/electrical{ + pixel_y = 1; + pixel_x = -1 + }, +/obj/effect/spawner/random/powercell{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dyD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dyE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dyF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dyG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dyH" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dyI" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dyJ" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dyK" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dyL" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/north) +"dyM" = ( +/obj/structure/machinery/vending/snack, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dyO" = ( +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyP" = ( +/obj/item/clothing/shoes/galoshes{ + pixel_y = -4; + pixel_x = 6 + }, +/obj/item/tool/warning_cone{ + layer = 5; + pixel_y = 6; + pixel_x = -13 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyQ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical/green, +/obj/item/clothing/head/beret/jan{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyS" = ( +/obj/structure/bed/chair/janicart, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyT" = ( +/obj/structure/reagent_dispensers/tank/water, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dyU" = ( +/obj/structure/surface/table, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/east, +/area/tyrargo/underground/apartment) +"dyV" = ( +/obj/structure/surface/table, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/northwest, +/area/tyrargo/underground/apartment) +"dyW" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/west, +/area/tyrargo/underground/apartment) +"dyX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dyY" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dyZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/east, +/area/tyrargo/underground/apartment) +"dza" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"dzb" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/west, +/area/tyrargo/underground/apartment) +"dzc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/item/weapon/gun/rifle/sniper/svd{ + pixel_y = 9 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_y = -6; + pixel_x = 5 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_y = -6 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_y = -6; + pixel_x = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dzd" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dze" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/electronics, +/obj/item/storage/pouch/shotgun/large, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dzf" = ( +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dzg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dzh" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dzi" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dzj" = ( +/obj/structure/tunnel/maint_tunnel, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28 + }, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/underground/engineering) +"dzk" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/engineering) +"dzl" = ( +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dzm" = ( +/obj/structure/closet/toolcloset, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dzn" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dzo" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/engineering) +"dzp" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/mech_bay_recharge_floor, +/area/tyrargo/underground/engineering) +"dzq" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dzr" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dzs" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink, +/area/tyrargo/underground/apartment) +"dzt" = ( +/obj/structure/bed/chair/comfy/hybrisa/blue, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/northeast, +/area/tyrargo/underground/apartment) +"dzu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/north, +/area/tyrargo/underground/apartment) +"dzv" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"dzw" = ( +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dzx" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dzy" = ( +/obj/structure/bed{ + pixel_y = -12 + }, +/obj/item/bedsheet/hop{ + pixel_y = -12 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_x = 9; + pixel_y = 21; + layer = 2.9 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/north, +/area/tyrargo/underground/apartment) +"dzz" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/item/ammo_magazine/smg/pps43{ + pixel_y = 12 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/ammo_magazine/smg/pps43{ + pixel_y = 12; + pixel_x = 8 + }, +/obj/item/ammo_magazine/smg/pps43{ + pixel_y = 12; + pixel_x = -8 + }, +/obj/item/weapon/gun/smg/pps43{ + pixel_y = -4 + }, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dzA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dzB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dzC" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dzD" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dzE" = ( +/obj/structure/prop/power_transformer{ + density = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dzF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dzG" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dzH" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dzI" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dzJ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/underground/engineering) +"dzK" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/underground/engineering) +"dzL" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/underground/engineering) +"dzM" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/sign/poster/corporate{ + layer = 3; + pixel_y = 32 + }, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dzN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dzO" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" + }, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.7 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/weapon/gun/rifle/ak4047{ + pixel_x = 0; + pixel_y = -7 + }, +/obj/item/ammo_magazine/rifle/ak4047{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/ammo_magazine/rifle/ak4047{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/ammo_magazine/rifle/ak4047{ + pixel_x = 9; + pixel_y = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dzP" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dzQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dzR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dzS" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/underground/engineering) +"dzT" = ( +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -28 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dzU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dzV" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dzW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -13; + dir = 8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = -2; + layer = 2.98 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dzX" = ( +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dzY" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dzZ" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAd" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal/autoname, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dAe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green1, +/area/tyrargo/underground/mall) +"dAf" = ( +/obj/structure/reagent_dispensers/tank/water, +/obj/effect/blocker/water, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dAg" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dAh" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dAi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + autoname = 1; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dAj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + autoname = 1; + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/engineering) +"dAk" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/sewer/north) +"dAl" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dAm" = ( +/obj/item/tool/mop{ + pixel_y = 20; + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/tool/wet_sign{ + pixel_x = 1; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAn" = ( +/obj/structure/closet/crate/trashcart{ + opened = 1; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAo" = ( +/obj/structure/surface/table, +/obj/item/pizzabox/pizza_galaxy, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAp" = ( +/obj/structure/prop/tyrargo/large_tents/small, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_x = 13 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dAq" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 3; + pixel_x = 16 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dAr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 12; + layer = 3.20; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dAs" = ( +/obj/structure/surface/table, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dAt" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dAu" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dAv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dAw" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced, +/obj/item/tool/soap/deluxe, +/obj/structure/curtain/open/shower, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/underground/apartment) +"dAx" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dAy" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dAz" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dAB" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"dAC" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/sewer/north) +"dAD" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/market/upper) +"dAE" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dAF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/item/pizzabox/mystery, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"dAG" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dAH" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32; + light_color = "#850000"; + light_on = 1; + light_range = 1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dAI" = ( +/obj/structure/largecrate/random/barrel/black{ + pixel_x = 4; + pixel_y = 7; + layer = 3.1 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/engineering) +"dAJ" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble2{ + light_color = "#00ff9f"; + light_on = 1; + light_power = 2; + light_range = 3; + pixel_y = 12; + pixel_x = -5 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dAK" = ( +/obj/effect/blocker/water, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/engineering) +"dAL" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dAM" = ( +/obj/structure/bed/bedroll{ + pixel_y = -1; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dAN" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dAO" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dAP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dAQ" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/almayer/north, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dAR" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"dAS" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/engineering) +"dAT" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dAU" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/underground/engineering) +"dAV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dAW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dAX" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/colonist/workwear/pink, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dAY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dAZ" = ( +/obj/structure/bedsheetbin, +/obj/item/reagent_container/glass/rag{ + desc = "A pile of clothing, these need washing..."; + name = "pile of clothing"; + color = "#37485b"; + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dBa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"dBb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = -2; + pixel_x = 8 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBf" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBg" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/carpet/carpetred, +/area/tyrargo/underground/apartment) +"dBh" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetred, +/area/tyrargo/underground/apartment) +"dBi" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full{ + density = 0 + }, +/obj/item/storage/box/tomato, +/obj/item/storage/box/tomato, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/snacks/flour{ + pixel_y = 8; + pixel_x = -8; + layer = 2.9 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"dBl" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/dough{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8; + pixel_x = -6 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/obj/item/tool/kitchen/pizzacutter{ + pixel_y = -6 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -25; + pixel_x = -7 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -25; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = -4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBp" = ( +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBq" = ( +/obj/structure/roof/hybrisa/signs/miscvert7sign{ + pixel_y = 6; + pixel_x = -4; + light_on = 1; + light_color = "#e24e1a"; + light_power = 4; + light_range = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dBr" = ( +/obj/item/tool/mop{ + pixel_y = 20; + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/tool/wet_sign{ + pixel_x = 1; + pixel_y = -9 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dBs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/engineering) +"dBt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/underground/engineering) +"dBu" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dBv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dBw" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/engineering) +"dBx" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/engineering) +"dBy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/engineering) +"dBz" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dBA" = ( +/obj/item/clothing/under/bluepyjamas{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dBB" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dBC" = ( +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBD" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBE" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dBF" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetred, +/area/tyrargo/underground/apartment) +"dBG" = ( +/obj/item/paper/janitor, +/obj/item/bedsheet/ce{ + color = "#b54b3d" + }, +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = -12 + }, +/obj/item/bedsheet/ce{ + color = "#b54b3d"; + pixel_y = -12 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetred, +/area/tyrargo/underground/apartment) +"dBH" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/entertainment{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBI" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dBJ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dBK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/flamer/survivor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dBL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dBM" = ( +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 38 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dBN" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dBO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dBP" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 10; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_y = -20; + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dBQ" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dBR" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -5 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dBS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = -8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"dBT" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dBU" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dBV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/pizzabox/pizza_galaxy/mystery/stack{ + pixel_y = 8 + }, +/obj/item/pizzabox/pizza_galaxy{ + pixel_y = 12 + }, +/obj/item/pizzabox/pizza_galaxy{ + pixel_y = 16 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBX" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"dBY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dBZ" = ( +/obj/structure/prop/power_transformer{ + density = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dCa" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/underground/engineering) +"dCb" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard/medium_stack, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/underground/engineering) +"dCc" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dCd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "csplatter1" + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/key{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dCe" = ( +/obj/item/coin/iron{ + pixel_y = 7; + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dCf" = ( +/obj/item/prop/alien/hugger{ + pixel_x = -2; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dCg" = ( +/obj/effect/decal/siding, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"dCh" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dCi" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal/autoname, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dCj" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dCk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/north) +"dCl" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dCm" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dCn" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dCo" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty"; + pixel_y = 13; + pixel_x = 6 + }, +/obj/item/reagent_container/glass/rag{ + desc = "A towel for drying yourself."; + icon = 'icons/obj/items/hunter/pred_gear.dmi'; + icon_state = "polishing_rag"; + name = "towel"; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dCp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/microwave{ + pixel_y = 12; + layer = 3.20; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dCq" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dCr" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dCs" = ( +/obj/structure/roof/hybrisa/signs/pizzasign{ + light_color = "#FF9100"; + light_on = 1; + light_power = 4; + light_range = 4; + dir = 1; + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dCt" = ( +/turf/open/floor/strata/green4/east, +/area/tyrargo/underground/mall) +"dCu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/green4/west, +/area/tyrargo/underground/mall) +"dCv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dCw" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = 9 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/underground/engineering) +"dCx" = ( +/obj/structure/machinery/floodlight{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dCy" = ( +/obj/structure/machinery/atm, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/apartment) +"dCz" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dCA" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/corsat/officetiles, +/area/tyrargo/underground/mall) +"dCB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/meatpizzaslice, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_y = 11; + pixel_x = -5 + }, +/turf/open/floor/corsat/officetiles, +/area/tyrargo/underground/mall) +"dCC" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt"; + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/corsat/officetiles, +/area/tyrargo/underground/mall) +"dCD" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 10; + pixel_y = 17 + }, +/turf/open/floor/corsat/officetiles, +/area/tyrargo/underground/mall) +"dCE" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt"; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/corsat/officetiles, +/area/tyrargo/underground/mall) +"dCF" = ( +/turf/open/floor/strata/green4, +/area/tyrargo/underground/mall) +"dCG" = ( +/turf/open/floor/strata/green4/north, +/area/tyrargo/underground/mall) +"dCH" = ( +/obj/structure/bed/bedroll{ + dir = 9; + layer = 3.0; + pixel_x = 10; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_container/syringe{ + icon_state = "broken"; + pixel_y = -2; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dCI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14; + pixel_x = -14 + }, +/obj/item/stool, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/syringe{ + icon_state = "broken" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCK" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCL" = ( +/obj/item/stool, +/obj/item/reagent_container/food/drinks/bottle/rum, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti1{ + pixel_y = -58 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCM" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 11 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/prop/alien/hugger, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dCO" = ( +/obj/structure/bed/bedroll{ + dir = 5; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -6; + pixel_x = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dCP" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "csplatter1" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dCR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCS" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dCT" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/mall) +"dCU" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/mall) +"dCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"dCW" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/underground/engineering) +"dCX" = ( +/obj/structure/reagent_dispensers/tank/fuel{ + anchored = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dCY" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dCZ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/platingdmg3, +/area/tyrargo/underground/apartment) +"dDa" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/pizzabox/pizza_galaxy, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/beer_pack, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDc" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8; + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dDe" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dDf" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/underground/engineering) +"dDg" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dDh" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dDi" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/underground/engineering) +"dDj" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dDk" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDl" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dDm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dDn" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori1_black"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDo" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_hori3_black"; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dDq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/belt/utility/full, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dDr" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/ground) +"dDs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/hardhat{ + pixel_x = -5 + }, +/obj/item/ammo_magazine/flamer_tank/survivor/empty{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dDt" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/underground/engineering) +"dDu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/obj/effect/blocker/water, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/engineering) +"dDv" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "csplatter1"; + pixel_y = 1; + pixel_x = 8 + }, +/obj/item/reagent_container/syringe{ + icon_state = "broken"; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti5, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDw" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDx" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDy" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 7 + }, +/obj/effect/spawner/random/pills/highchance, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/tool/warning_cone{ + layer = 5; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti3, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDA" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 5; + layer = 3.1 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 3; + pixel_x = 3; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 4; + pixel_x = 7 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dDB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dDC" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/underground/sewer/north) +"dDD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/greencorner/west, +/area/tyrargo/underground/sewer/north) +"dDE" = ( +/obj/effect/decal/cleanable/flour, +/obj/effect/blocker/water, +/turf/open/floor/prison/greencorner, +/area/tyrargo/underground/sewer/north) +"dDF" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/oob) +"dDH" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dDI" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dDJ" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dDK" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkredcorners2/west, +/area/tyrargo/underground/sewer/north) +"dDL" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkredcorners2, +/area/tyrargo/underground/sewer/north) +"dDM" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dDN" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dDO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dDP" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dDQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/tool/warning_cone{ + pixel_y = 10; + pixel_x = -8 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dDR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"dDS" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dDT" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dDU" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dDV" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dDW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/oob) +"dDX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dDY" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dDZ" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dEa" = ( +/obj/effect/blocker/water, +/turf/open/floor/platingdmg3, +/area/tyrargo/underground/sewer/north) +"dEb" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkredcorners2/east, +/area/tyrargo/underground/sewer/north) +"dEc" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/underground/sewer/north) +"dEd" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/underground/sewer/north) +"dEe" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEf" = ( +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer3, +/area/tyrargo/underground/sewer/north) +"dEg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dEh" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/underground/sewer/north) +"dEi" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + pixel_y = 13; + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -7; + layer = 1; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = -7; + pixel_x = -8; + layer = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEj" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + pixel_y = 15; + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = 7; + layer = 1; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = 5; + pixel_y = -4; + layer = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEk" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_x = 3; + pixel_y = 8; + layer = 2; + explo_proof = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEl" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEm" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = 4; + pixel_x = 7; + layer = 1; + explo_proof = 1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEn" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEo" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark{ + pixel_y = 9; + pixel_x = -6; + density = 0; + unacidable = 1; + can_block_movement = 0; + explo_proof = 1 + }, +/obj/structure/prop/invuln/rope{ + pixel_x = -7 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/north) +"dEp" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/north) +"dEq" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + pixel_y = 9; + pixel_x = -27; + can_block_movement = 0; + density = 0; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/prop/invuln/rope{ + pixel_x = 8; + pixel_y = -16 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/north) +"dEr" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark2{ + layer = 2; + explo_proof = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_y = 10 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEs" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_x = 15; + layer = 2; + explo_proof = 1; + density = 0 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700" + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEt" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + layer = 2; + explo_proof = 1; + density = 0 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dEu" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dEv" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer3, +/area/tyrargo/oob) +"dEw" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/oob) +"dEx" = ( +/obj/structure/prop/brazier/campfire, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -31; + pixel_y = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"dEy" = ( +/obj/item/stool, +/obj/item/toy/plush/therapy/orange{ + name = "mole-shaped plushie"; + desc = "A suspiciously mole-shaped plushie, colored in an orange hue. It is staring at you. How did it get there?!" + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"dEz" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/oob) +"dEA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"dEB" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"dEC" = ( +/obj/structure/prop/tyrargo/traffic_signal, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dED" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"dEE" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"dEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"dEG" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -12 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dEH" = ( +/obj/structure/bed/chair/comfy/hybrisa/black{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dEI" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dEJ" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/ground) +"dEK" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/ground) +"dEL" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"dEM" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"dEN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/apartment/south_ground) +"dEO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dEP" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/apartment/south_ground) +"dEQ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/prop/cash_register/off{ + pixel_y = 8; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dER" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/spacecash/c1{ + pixel_y = -4; + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dES" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/spacecash/c10, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dET" = ( +/obj/structure/bed/chair/comfy/hybrisa/black, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dEU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/hybrisa/black, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dEV" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/mall) +"dEW" = ( +/obj/structure/curtain/red, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dEX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/indoors/mall) +"dEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall) +"dEZ" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall) +"dFa" = ( +/turf/open/floor/light/off/red, +/area/tyrargo/indoors/mall) +"dFb" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/mall) +"dFc" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/asphalt/cement, +/area/tyrargo/indoors/mall) +"dFd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"dFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/machinery/vending/cigarette/koorlander{ + pixel_x = -4; + layer = 3 + }, +/turf/open/floor/prison/green/northeast, +/area/tyrargo/indoors/mall) +"dFf" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"dFg" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dFh" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"dFi" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dFj" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/apartment/north_ground) +"dFk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/terminal{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/ground) +"dFl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east{ + start_charge = 30 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"dFm" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall) +"dFn" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/north_ground) +"dFo" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dFp" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/invuln/static_corpse/afric_zimmer/trooper{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"dFq" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"dFr" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"dFs" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"dFt" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = -15; + pixel_x = 2; + explo_proof = 1 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/indoors/bar/ground) +"dFw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/indoors/bar/ground) +"dFx" = ( +/obj/structure/platform_decoration/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFy" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFz" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"dFA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"dFB" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFC" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFD" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"dFE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark2{ + pixel_x = -1; + pixel_y = -2; + unacidable = 1; + density = 0; + can_block_movement = 0; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"dFF" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"dFG" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"dFH" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFJ" = ( +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/underground/museum_carpark) +"dFK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFL" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFM" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/mirror{ + pixel_y = -31 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dFN" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dFO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dFQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"dFR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dFS" = ( +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dFT" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dFU" = ( +/obj/item/stack/cable_coil/cut{ + icon_state = "coil2"; + color = "#550d0d" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFV" = ( +/obj/item/tool/weldingtool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti1, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = -30 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dFZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dGa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dGb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dGc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dGe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dGf" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dGg" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGh" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGi" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGj" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = 16; + pixel_y = -7 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGl" = ( +/obj/structure/largecrate/empty/secure{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti4{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGm" = ( +/obj/structure/largecrate/empty/secure{ + pixel_y = 4; + layer = 4; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dGn" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -3; + pixel_x = -20 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dGo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dGp" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -19; + pixel_y = 29 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dGq" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dGr" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 26 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/south) +"dGs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGu" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central) +"dGv" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dGw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dGx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dGy" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"dGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"dGA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 3; + pixel_x = 8 + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -18; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dGB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"dGD" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dGE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dGF" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGH" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dGI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/south) +"dGJ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dGK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dGM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "5-9"; + level = 2 + }, +/obj/structure/mirror{ + pixel_y = -31 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dGN" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/tool/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/item/explosive/plastic/hybrisa/mining{ + name = "large mining charge"; + icon_state = "custom_plastic_explosive_locked"; + pixel_x = 15; + pixel_y = -4; + desc = "Used to put holes in specific areas without too much extra hole. Why it's planted in a bathroom? Who knows." + }, +/obj/structure/cable/white{ + icon_state = "2-8"; + level = 2; + pixel_y = 14; + pixel_x = -1 + }, +/obj/structure/cable/white{ + icon_state = "1-5"; + level = 2; + pixel_y = -20; + layer = 3.1 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/underground/apartment) +"dGO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dGP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dGQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 3; + pixel_x = -8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -8; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGS" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 26 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"dGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -15; + pixel_y = 15 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dGV" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dGX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 15; + anchored = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dGY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -1; + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dGZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -1; + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHb" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/decal/cleanable/dirt, +/obj/item/pizzabox/pizza_galaxy{ + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dHc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dHd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dHe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHh" = ( +/obj/structure/sign/poster/corporate, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/apartment) +"dHi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/green, +/obj/item/storage/box/m94/signal, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHk" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/underground/apartment) +"dHl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dHm" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -1; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dHn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHp" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dHq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dHs" = ( +/obj/item/stool{ + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dHt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dHv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"dHw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHx" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dHy" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/mirror{ + pixel_y = -31 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dHz" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dHE" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_x = 32; + pixel_y = 27 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dHF" = ( +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"dHG" = ( +/obj/structure/sign/safety/bathmens{ + pixel_y = 27; + pixel_x = 32 + }, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dHH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"dHI" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/south_upper) +"dHJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 4.12; + pixel_y = 17; + pixel_x = 10 + }, +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 36 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dHL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dHM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/south) +"dHN" = ( +/obj/item/fuel_cell/used{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/shuttle/escapepod/floor1/west, +/area/tyrargo/underground/apartment) +"dHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dHP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dHQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dHR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dHS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bathwomens{ + pixel_x = 32; + pixel_y = 27 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dHT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dHV" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dHW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dHX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 4; + pixel_x = 19 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dHY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dHZ" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dIb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 9; + layer = 3.1 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIc" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/underground/apartment) +"dId" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dIe" = ( +/obj/structure/prop/hybrisa/misc/urinal{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dIf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_y = 17; + pixel_x = 33 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dIg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"dIh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dIi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stool{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIm" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_5{ + light_on = 0; + light_power = 0; + light_range = 0 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dIn" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti6{ + pixel_x = 21 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dIo" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dIp" = ( +/obj/effect/decal/cleanable/flour, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dIq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -26 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dIr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar/red{ + pixel_y = 6 + }, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIs" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dIt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dIv" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/magazine/large, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dIx" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIy" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dIA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dIB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dIC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dID" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dIE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dIG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dIH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink, +/area/tyrargo/underground/apartment) +"dII" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dIL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIM" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 26 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"dIN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dIO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -19 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dIP" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/clothing/accessory/poncho/green{ + pixel_x = 5 + }, +/obj/item/clothing/accessory/poncho/green{ + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"dIR" = ( +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/obj/item/storage/pouch/first_responder, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/underground/mall) +"dIS" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dIT" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dIU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dIV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 1; + pixel_x = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dIW" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dIX" = ( +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dIY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian/burst, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dIZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office/burst, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJa" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -25; + pixel_x = 6 + }, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/io{ + pixel_y = 15; + pixel_x = -29 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJc" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJe" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = 30; + layer = 6.1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -8; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/mirror{ + pixel_y = -31 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dJi" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dJj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dJk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dJl" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dJm" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = -8 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/mall) +"dJn" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJq" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dJr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dJs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dJt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dJu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dJv" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/north) +"dJw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dJx" = ( +/obj/structure/sign/poster/wylogo{ + pixel_x = 28 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/underground/apartment) +"dJz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/propaganda{ + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dJA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dJB" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/atm{ + icon = 'icons/obj/structures/props/atm.dmi'; + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/underground/mall) +"dJC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/green1, +/area/tyrargo/underground/mall) +"dJD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dJE" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/corsat, +/area/tyrargo/underground/mall) +"dJF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat, +/area/tyrargo/underground/mall) +"dJG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/sanitation/burst, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/north) +"dJI" = ( +/obj/structure/sign/poster/music{ + pixel_x = -31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/bible{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dJK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dJL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"dJM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 12; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dJN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper/burst, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dJO" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/weapon/gun/rifle/m41a/army, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dJP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/mall) +"dJQ" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6; + pixel_x = 5 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/mall) +"dJR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/pizza_galaxy/burst, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"dJS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filtration/collector_pipes{ + icon_state = "upper_2"; + layer = 5 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dJT" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 4.12; + pixel_y = 2; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dJU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dJV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dJW" = ( +/obj/structure/prop/hybrisa/misc/blood/blood2{ + layer = 3.5; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dJX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2{ + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dJY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = 10; + layer = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dJZ" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dKa" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 12; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dKb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKc" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"dKd" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dKe" = ( +/obj/structure/sign/poster/pinup, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/apartment) +"dKf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dKg" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dKh" = ( +/obj/item/trash/chunk, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dKi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dKj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dKk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dKl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKm" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKn" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dKp" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dKq" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -18; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dKr" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = -1; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/robot, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKt" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKu" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 26 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/north) +"dKw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKy" = ( +/obj/item/reagent_container/syringe{ + icon_state = "broken" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKz" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dKB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_y = -31 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dKC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKG" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dKI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/underground/apartment) +"dKJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dKK" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"dKL" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = 4; + pixel_y = 35 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dKM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/apartment) +"dKN" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12; + pixel_x = -12 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dKR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green4/east, +/area/tyrargo/underground/mall) +"dKS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green4/west, +/area/tyrargo/underground/mall) +"dKT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dKU" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 5 + }, +/turf/open/floor/strata/green4/east, +/area/tyrargo/underground/mall) +"dKV" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/north) +"dKW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dKX" = ( +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31; + layer = 6.1 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 8; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dKY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"dKZ" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 40 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 13; + pixel_x = -5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLa" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLb" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/green4/north, +/area/tyrargo/underground/mall) +"dLd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/green4, +/area/tyrargo/underground/mall) +"dLf" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dLg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dLh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dLi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dLj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/indoors/bunker/central_south) +"dLk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/apartment) +"dLl" = ( +/turf/open/floor/platingdmg1, +/area/tyrargo/underground/apartment) +"dLm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/platingdmg3, +/area/tyrargo/underground/apartment) +"dLn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dLo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/security/ground) +"dLp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 8 + }, +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dLq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 3; + pixel_x = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dLx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dLy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dLB" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 5; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/c_tube{ + pixel_x = -18 + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dLE" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"dLF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/apartment) +"dLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dLH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 5; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = -11 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLJ" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/underground/apartment) +"dLK" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/apartment) +"dLL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dLM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dLN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/syringe{ + icon_state = "broken" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/green4/west, +/area/tyrargo/underground/mall) +"dLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dLS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/green4/west, +/area/tyrargo/underground/mall) +"dLT" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dLU" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = 16; + pixel_y = -7 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/platingdmg3, +/area/tyrargo/underground/apartment) +"dLW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 6; + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 22; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dLZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4"; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/underground/apartment) +"dMd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/underground/apartment) +"dMe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/m37a, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dMf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMg" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/mall) +"dMh" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/mall) +"dMi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/strata/green4, +/area/tyrargo/underground/mall) +"dMk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/strata/green4/north, +/area/tyrargo/underground/mall) +"dMl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dMn" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 36 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/north) +"dMo" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMp" = ( +/obj/item/trash/chunk{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 3; + pixel_x = 3; + pixel_y = 20 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 3; + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dMs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/obj/effect/blocker/water, +/turf/open/floor/platingdmg1, +/area/tyrargo/underground/apartment) +"dMt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/platingdmg3, +/area/tyrargo/underground/apartment) +"dMu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/pimp{ + pixel_y = 34; + pixel_x = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti7{ + pixel_x = 19; + pixel_y = -3 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 18; + layer = 3.1 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/syringe/drugs{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dMz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti1{ + pixel_x = 4 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 11 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/underground/apartment) +"dMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti2{ + pixel_x = -10 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dME" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dMF" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 3; + pixel_y = 15; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMG" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/apartment) +"dMH" = ( +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_x = 11 + }, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMI" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti6{ + pixel_x = 21 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 7 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/tequila{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/ad{ + layer = 4; + pixel_x = 31; + pixel_y = 5 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"dML" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 3; + pixel_y = 20; + layer = 2.9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMM" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = -8 + }, +/obj/structure/sign/poster/corporate{ + layer = 2.9; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMN" = ( +/obj/structure/sign/poster/blacklight{ + pixel_x = 32 + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/north) +"dMP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + layer = 3; + pixel_x = 3; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/underground/apartment) +"dMT" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 2; + pixel_y = 20 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 5; + layer = 3.1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMU" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti4{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"dMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/apartment) +"dMW" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 16; + pixel_x = -7 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dMY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/spacecash/c10{ + pixel_y = -5; + pixel_x = 4 + }, +/obj/item/spacecash/c1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/spacecash/c1{ + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dMZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dNa" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/sign/safety/maint{ + pixel_y = -24; + pixel_x = 14 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dNb" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNc" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkredcorners2/west, +/area/tyrargo/underground/sewer/north) +"dNe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNg" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNh" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNi" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2, +/area/tyrargo/underground/sewer/north) +"dNj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/yellow, +/area/tyrargo/underground/sewer/north) +"dNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dNm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4"; + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dNq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNr" = ( +/obj/structure/shuttle/part/dropship3/right_outer_wing_connector, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"dNs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_11" + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNx" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + layer = 3; + pixel_x = -4; + pixel_y = -3 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNy" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 22; + pixel_x = 12 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dNz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_11" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dNA" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 1; + icon_state = "trash_11" + }, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/north) +"dNB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_y = 18; + pixel_x = -25 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dND" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = 12; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dNI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNK" = ( +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dNL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNM" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/destroyed, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/north_ground) +"dNN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = -2; + pixel_x = -8 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNU" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNV" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dNY" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkredcorners2/east, +/area/tyrargo/underground/sewer/north) +"dNZ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/underground/sewer/north) +"dOa" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dOb" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dOc" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/underground/sewer/north) +"dOd" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dOe" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 17; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dOf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green3/east, +/area/tyrargo/indoors/mall) +"dOg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/green3/west, +/area/tyrargo/indoors/mall) +"dOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dOi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/strata/green1, +/area/tyrargo/indoors/mall) +"dOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/green3/west, +/area/tyrargo/indoors/mall) +"dOk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/strata/green1, +/area/tyrargo/indoors/mall) +"dOl" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dOm" = ( +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"dOn" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/ground) +"dOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/indoors/bar/ground) +"dOp" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dOq" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1; + layer = 3; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dOr" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + layer = 3.9; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dOs" = ( +/obj/effect/blocker/water, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/apartment) +"dOt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti3, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"dOu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti4, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"dOv" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/museum_carpark) +"dOw" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"dOx" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dOy" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dOz" = ( +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dOA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dOB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dOC" = ( +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dOD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dOE" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dOF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dOG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/supply/supplies/wy_emergency_food, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dON" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/underground/apartment) +"dOO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dOS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dOV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dOX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/grated, +/area/tyrargo/underground/engineering) +"dOY" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_x = -33 + }, +/turf/open/shuttle/escapepod/north, +/area/tyrargo/underground/engineering) +"dOZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPa" = ( +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -29 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"dPb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dPc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dPd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/engineering) +"dPe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dPf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dPk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"dPl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/wirecutters{ + pixel_y = 26 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPo" = ( +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"dPp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/underground/engineering) +"dPq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPr" = ( +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dPs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/yellow3, +/area/tyrargo/underground/engineering) +"dPt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/turf/open/floor/strata/yellow3/west, +/area/tyrargo/underground/engineering) +"dPu" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard/small_stack{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dPx" = ( +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"dPy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dPz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dPA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/engineering) +"dPB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dPC" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = -33 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dPD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dPE" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dPF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dPG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/underground/engineering) +"dPH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/underground/engineering) +"dPI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dPJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/engineering) +"dPK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dPL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dPM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dPN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPP" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dPS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dPT" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPU" = ( +/obj/effect/decal/siding, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/obj/effect/decal/siding, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dPX" = ( +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dPY" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dPZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dQa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dQb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dQc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQe" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/power_apart) +"dQf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dQg" = ( +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -28 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQi" = ( +/obj/structure/bedsheetbin, +/obj/item/clothing/under/blackskirt{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/underground/apartment) +"dQj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dQk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dQl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/apartment) +"dQm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti6, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dQn" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = 9 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQo" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dQp" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/underground/engineering) +"dQs" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = -33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dQt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dQv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dQx" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6; + pixel_x = 1 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQy" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQA" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQB" = ( +/obj/effect/decal/siding, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dQC" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dQE" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = -32 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/engineering) +"dQF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dQG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dQH" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/underground/engineering) +"dQJ" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dQL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/engineering) +"dQM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dQN" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32; + light_color = "#850000"; + light_on = 1; + light_range = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"dQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dQR" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQS" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dQU" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = -33 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dQV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"dQW" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dQX" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"dQY" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"dQZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 29 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/apartment) +"dRa" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti3, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dRb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti1, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dRc" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/underground/sewer/north) +"dRd" = ( +/obj/effect/blocker/water, +/turf/open/floor/platingdmg1, +/area/tyrargo/underground/sewer/north) +"dRe" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg3/west, +/area/tyrargo/underground/sewer/north) +"dRf" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/platingdmg1, +/area/tyrargo/oob) +"dRg" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/oob) +"dRh" = ( +/obj/item/ammo_magazine/pistol/vp78/heap{ + current_rounds = 0; + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dRi" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dRj" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/turf/open/floor/plating, +/area/tyrargo/oob) +"dRk" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/turf/open/floor/platingdmg3, +/area/tyrargo/oob) +"dRl" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/turf/open/floor/plating, +/area/tyrargo/oob) +"dRm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/tyrargo/oob) +"dRn" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/oob) +"dRo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/oob) +"dRp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/oob) +"dRq" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/turf/open/floor/plating, +/area/tyrargo/oob) +"dRr" = ( +/turf/open/floor/plating, +/area/tyrargo/oob) +"dRs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"dRt" = ( +/obj/structure/filtration/collector_pipes{ + layer = 3.1; + pixel_y = 8; + pixel_x = 2 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"dRu" = ( +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/engineering/ground) +"dRv" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crash_underground" + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"dRw" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = -28; + light_range = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"dRx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dRy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/metal/grated, +/area/tyrargo/underground/engineering) +"dRz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -11 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"dRA" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_y = -31 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dRB" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dRC" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/mall) +"dRD" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dRE" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/obj/structure/prop/hybrisa/misc/trash/blue, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dRF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/green1, +/area/tyrargo/underground/mall) +"dRG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/mall) +"dRH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRI" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -2; + pixel_y = -14 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"dRJ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRK" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRM" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/blocker/water, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -11 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/tyrargo/underground/engineering) +"dRR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/effect/blocker/water, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dRW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRX" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 5; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dRZ" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dSa" = ( +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dSb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSc" = ( +/obj/structure/closet/firecloset, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSe" = ( +/obj/structure/reagent_dispensers/tank/water, +/turf/open/floor/corsat/spiralplate, +/area/tyrargo/underground/mall) +"dSf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"dSg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -11 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/engineering) +"dSh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dSi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dSj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dSk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSl" = ( +/turf/open/floor/corsat/spiralplate, +/area/tyrargo/underground/mall) +"dSm" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dSn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dSo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSq" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/mall) +"dSr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -6; + pixel_y = 5; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"dSs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 3; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/floor/corsat/spiralplate, +/area/tyrargo/underground/mall) +"dSt" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/corsat/spiralplate, +/area/tyrargo/underground/mall) +"dSu" = ( +/obj/structure/largecrate/empty/secure, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = -12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + pixel_y = 10 + }, +/turf/open/floor/corsat/spiralplate, +/area/tyrargo/underground/mall) +"dSv" = ( +/obj/structure/largecrate/machine/recycler, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/spiralplate, +/area/tyrargo/underground/mall) +"dSw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = -11 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"dSx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"dSy" = ( +/obj/structure/prop/hybrisa/misc/trash/green, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = 2; + pixel_y = 11 + }, +/turf/open/floor/prison/blue/southwest, +/area/tyrargo/underground/mall) +"dSz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/tyrargo/underground/mall) +"dSA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/blue, +/area/tyrargo/underground/mall) +"dSB" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 10; + density = 0 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/underground/mall) +"dSC" = ( +/turf/open/floor/prison/blue/east, +/area/tyrargo/underground/mall) +"dSD" = ( +/turf/open/floor/prison/blue/west, +/area/tyrargo/underground/mall) +"dSE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSF" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSG" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSI" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet1_black"; + pixel_x = 13 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"dSK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 9; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/tyrargo/underground/mall) +"dSL" = ( +/obj/structure/sign/poster/art{ + pixel_y = 32; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSM" = ( +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSN" = ( +/obj/structure/bed/sofa/hybrisa/sofa/black{ + icon_state = "couch_vet3_black"; + pixel_x = 13 + }, +/obj/structure/sign/poster/ad{ + layer = 4; + pixel_x = 4; + pixel_y = 32 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSO" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSP" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSQ" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/underground/mall) +"dSR" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/oob) +"dSS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/underground/sewer/north) +"dST" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dSU" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/tyrargo/landing_zone_2) +"dSV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/marshalls{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dSW" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 33 + }, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall) +"dSX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/io{ + pixel_y = 4; + pixel_x = -35 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dSY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 36 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dSZ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"dTa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_magazine/pistol/vp78/heap{ + current_rounds = 0; + pixel_x = -1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dTb" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"dTc" = ( +/turf/open/floor/strata/green3/north, +/area/tyrargo/indoors/mall) +"dTd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -12; + pixel_y = 17 + }, +/obj/structure/sign/poster/safety{ + pixel_y = 32; + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dTe" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dTf" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dTg" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dTh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"dTi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/green1, +/area/tyrargo/indoors/mall) +"dTj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/green1, +/area/tyrargo/indoors/mall) +"dTk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/hunk{ + pixel_x = -36; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"dTl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/indoors/mall) +"dTm" = ( +/turf/open/hybrisa/street/cement3, +/area/tyrargo/underground/museum_carpark) +"dTn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/mall) +"dTo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/sign/poster/blacklight{ + pixel_x = 32 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"dTp" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall/upper) +"dTq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/cans/souto{ + icon_state = "blank_can_crushed"; + pixel_x = -11; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/underground/mall) +"dTr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/oob) +"dTs" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = 26; + light_range = 1 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor1/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"dTt" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"dTu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble2{ + light_color = "#00ff9f"; + light_on = 1; + light_power = 2; + light_range = 3; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_east) +"dTv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"dTw" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/admin/ground) +"dTx" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble4{ + pixel_x = -12 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"dTy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/south_west) +"dTz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/bunker/north) +"dTA" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_color = "#00ff9f"; + light_on = 1; + light_power = 2; + light_range = 3; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"dTB" = ( +/obj/structure/device/broken_piano, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"dTC" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"dTD" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"dTE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTF" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = -28; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTI" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTK" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTL" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/coagulation/icon8_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTM" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTN" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTO" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTP" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTQ" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTR" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTS" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTT" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTV" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTW" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -21 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTX" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 3.03 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTY" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dTZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUa" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/tyrargo/deep, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUb" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUc" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUd" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUe" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUf" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUg" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUh" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUi" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUj" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUl" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUm" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUn" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUp" = ( +/obj/structure/sign/safety/water{ + pixel_x = -20 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUq" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 34 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUu" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/oob) +"dUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUw" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUx" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUy" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/obj/structure/sign/safety/manualopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/chem_lab{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUz" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/obj/structure/sign/safety/hvac{ + pixel_y = 34; + pixel_x = 14 + }, +/obj/structure/sign/safety/water{ + pixel_y = 34; + desc = "Semiotic Standard denoting the presence of a release valve for the sewer water. The power to control this switch is found east of this room." + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUA" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUC" = ( +/obj/structure/largecrate/supply/floodlights, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUD" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUE" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUM" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crash_surface" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"dUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUP" = ( +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUQ" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUS" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUV" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUW" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUX" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUY" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/effect/blocker/water, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble6{ + pixel_x = 2 + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/sewer_treatment/lower) +"dUZ" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = -31 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"dVa" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/obj/structure/machinery/light/red{ + light_color = "#FF7373" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/mall) +"dVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dVc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/apartment) +"dVd" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dVe" = ( +/obj/structure/machinery/light/red{ + light_color = "#FF7373"; + dir = 8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dVf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dVg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/red{ + light_color = "#FF7373"; + dir = 1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dVh" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = -31 + }, +/turf/open/shuttle/escapepod/west, +/area/tyrargo/underground/apartment) +"dVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/red{ + light_color = "#FF7373" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dVj" = ( +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dVk" = ( +/obj/structure/machinery/light/red{ + light_color = "#FF7373"; + dir = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/underground/mall) +"dVl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dVm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dVn" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"dVo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dVp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/underground/mall) +"dVq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water/toxic/Group_1, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/apartment) +"dVr" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_5{ + light_on = 0; + light_power = 0; + light_range = 0 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"dVs" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_2) +"dVt" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"dVu" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"dVv" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob) +"dVw" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/oob) +"dVx" = ( +/obj/effect/blocker/water, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/oob) +"dVy" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dVz" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dVA" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dVB" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dVC" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_streets/south_east) +"dVD" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts/river) +"dVE" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dVF" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dVG" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dVH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dVI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dVJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVK" = ( +/obj/structure/machinery/light/small, +/obj/structure/closet/crate/supply, +/obj/item/stack/sandbags_empty/full, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVL" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -3; + pixel_x = -20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVM" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -3; + pixel_x = -20 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/sewer/south) +"dVN" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dVO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dVQ" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + dir = 8; + layer = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/maint{ + pixel_x = 36 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 36 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVS" = ( +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVT" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVU" = ( +/obj/structure/closet/crate/construction, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"dVV" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dVW" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dVX" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dVY" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dVZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWa" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWc" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWf" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWg" = ( +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWh" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWi" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dWj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWk" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"dWl" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWm" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWn" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWq" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWr" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWs" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dWu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"dWv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_x = 11; + pixel_y = -13 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"dWx" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 12; + pixel_x = 7 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/mall) +"dWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/mall) +"dWA" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/mall) +"dWB" = ( +/obj/structure/machinery/light/red{ + light_color = "#FF7373" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/mall) +"dWC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dWD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/south_upper) +"dWE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dWG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWH" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 9 + }, +/obj/item/spacecash/ewallet{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWJ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/bottle/tequila{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWK" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWM" = ( +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWO" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dWP" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 17; + pixel_y = 15 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWQ" = ( +/obj/structure/machinery/light/red{ + light_color = "#FF7373"; + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/red{ + light_color = "#FF7373"; + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWS" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/oob) +"dWT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWU" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = -10; + density = 0 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/machinery/light/red{ + light_color = "#FF7373" + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dWX" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 7 + }, +/obj/item/spacecash/ewallet{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWY" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dWZ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dXa" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/cognac{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/underground/mall) +"dXb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dXc" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dXd" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dXe" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dXf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dXg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dXh" = ( +/obj/structure/closet/hybrisa, +/obj/item/clothing/under/swimsuit/purple, +/obj/item/clothing/under/swimsuit/purple, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dXi" = ( +/obj/structure/closet/hybrisa, +/obj/item/clothing/under/swimsuit/red, +/obj/item/clothing/under/swimsuit/red, +/turf/open/floor/hybrisa/tile/tileblackcheckered, +/area/tyrargo/underground/mall) +"dXj" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"dXk" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dXl" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + layer = 4; + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"dXm" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXn" = ( +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dXo" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"dXq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dXs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/poster/safety{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dXu" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"dXv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"dXw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXx" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXy" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/rag{ + desc = "A pile of clothing, these need washing..."; + name = "pile of clothing"; + color = "#37485b"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_container/glass/rag{ + desc = "A pile of clothing, these need washing..."; + name = "pile of clothing"; + color = "#a44e24"; + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dXz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXA" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/colonist/workwear/blue, +/obj/item/reagent_container/glass/rag{ + desc = "A pile of clothing, these need washing..."; + name = "pile of clothing"; + color = "#37485b"; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/underground/apartment) +"dXB" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXC" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXD" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dXE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dXF" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dXG" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXH" = ( +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXK" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXL" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXN" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13 + }, +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dXO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dXP" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"dXS" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXT" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXW" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"dXX" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dXY" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/north) +"dXZ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"dYa" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"dYb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/indoors/mall) +"dYc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYe" = ( +/obj/structure/bed/chair/comfy/hybrisa/black, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYf" = ( +/obj/structure/bed/chair/comfy/hybrisa/black, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/mall) +"dYl" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 12; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/fsb_north) +"dYm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/io{ + pixel_x = -28; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/mall/upper) +"dYn" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYo" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/outdoors/outskirts_road/central) +"dYp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -11; + pixel_x = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYq" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -11; + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYs" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dYt" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dYu" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dYv" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 12; + pixel_y = 20; + layer = 2.9 + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 16; + layer = 2.8; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + layer = 6.1; + pixel_x = -30 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYx" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"dYy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYz" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dYA" = ( +/obj/structure/reagent_dispensers/tank/fuel{ + layer = 2.9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dYB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dYC" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYD" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 18; + pixel_y = 2; + layer = 2.98; + dir = 1 + }, +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYE" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYF" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYG" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"dYH" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYI" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"dYK" = ( +/obj/structure/largecrate/random{ + layer = 3.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dYL" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dYM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dYN" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"dYO" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYP" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dYQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts_road/central) +"dYR" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"dYS" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/indoors/power_substation_outskirt) +"dYU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/hardhat{ + pixel_x = -5 + }, +/obj/item/tool/weldpack{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/power_substation_outskirt) +"dYV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/power_substation_outskirt) +"dYW" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/power_substation_outskirt) +"dYX" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dYY" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_x = -32 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dYZ" = ( +/obj/item/tool/warning_cone{ + layer = 4; + pixel_x = 4; + pixel_y = 18 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dZa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZb" = ( +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dZc" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dZd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"dZe" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dZf" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZg" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/power_substation_outskirt) +"dZh" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/power_substation_outskirt) +"dZi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/power_substation_outskirt) +"dZj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/power_substation_outskirt) +"dZk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/power_substation_outskirt) +"dZl" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dZm" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/m37a{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dZn" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/apartment/north_upper) +"dZo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dZp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/central) +"dZq" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZs" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"dZt" = ( +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dZu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dZv" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZw" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZx" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"dZy" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"dZz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + autoname = 1; + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZA" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown_Cargo_Barrels{ + dir = 1; + pixel_y = -8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZC" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dZI" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dZJ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 11 + }, +/obj/item/stack/medical/bruise_pack/random_amount{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dZK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 9; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dZL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/corporate{ + pixel_x = -26 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZO" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/almayer/north, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"dZP" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"dZQ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZR" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/uscm_mre, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"dZS" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"dZT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZU" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"dZX" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dZY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/mre/empty, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dZZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/m15, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"eaa" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eab" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = -33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"eac" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/strata/multi_tiles, +/area/tyrargo/indoors/power_substation_outskirt) +"ead" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"eae" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/strata/multi_tiles, +/area/tyrargo/indoors/power_substation_outskirt) +"eaf" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/power_substation_outskirt) +"eag" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/power_substation_outskirt) +"eah" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eai" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaj" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eak" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eal" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eam" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ean" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eao" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"eap" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eaq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -10; + pixel_y = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ear" = ( +/obj/effect/decal/siding, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"eas" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/central) +"eat" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"eau" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/power_substation_outskirt) +"eav" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/strata/multi_tiles, +/area/tyrargo/indoors/power_substation_outskirt) +"eaw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/tyrargo/indoors/power_substation_outskirt) +"eax" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/power_substation_outskirt) +"eay" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/power_substation_outskirt) +"eaz" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaA" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaB" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaC" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaD" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eaE" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eaF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eaG" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"eaH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/power_substation_outskirt) +"eaI" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/power_substation_outskirt) +"eaJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/power_substation_outskirt) +"eaK" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaM" = ( +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eaN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"eaO" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eaP" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eaQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eaR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"eaS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/power_substation_outskirt) +"eaT" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/power_substation_outskirt) +"eaU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaV" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eaW" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eaX" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"eaY" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = -6; + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -2; + pixel_y = 12; + layer = 2.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"eaZ" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"eba" = ( +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"ebb" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"ebc" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/reagent_dispensers/tank/fuel{ + layer = 2.9 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/power_substation_outskirt) +"ebd" = ( +/obj/item/tool/wirecutters{ + pixel_y = 26 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/power_substation_outskirt) +"ebe" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/power_substation_outskirt) +"ebf" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/power_substation_outskirt) +"ebg" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ebh" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ebi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 2; + pixel_y = -3; + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"ebk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -11; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"ebl" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -19; + pixel_y = -3; + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 2; + pixel_y = -3; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"ebm" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + light_on = 1; + light_color = "#96DED1"; + light_range = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/indoors/power_substation_outskirt) +"ebn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/power_substation_outskirt) +"ebo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/power_substation_outskirt) +"ebp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/power_substation_outskirt) +"ebq" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_x = -32 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebr" = ( +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ebs" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"ebt" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"ebu" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebv" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal2"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebw" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eby" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ebz" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ebA" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -4; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ebB" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -3; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -7; + dir = 1; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ebC" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ebE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -10; + pixel_x = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -5; + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ebF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebG" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"ebI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"ebJ" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"ebK" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/up, +/obj/structure/prop/invuln/rope{ + pixel_x = -7 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/south) +"ebL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark{ + pixel_y = 9; + pixel_x = -6; + density = 0; + unacidable = 1; + can_block_movement = 0; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/south) +"ebM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/south) +"ebN" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark{ + pixel_y = 9; + pixel_x = -6; + density = 0; + unacidable = 1; + can_block_movement = 0; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/south) +"ebO" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -6; + layer = 1; + explo_proof = 1 + }, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/sewer/south) +"ebP" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = 8; + pixel_y = -16 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"ebQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"ebR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ebS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/sewer/south) +"ebT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"ebU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/underground/sewer/south) +"ebV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ebW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/south) +"ebX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/south) +"ebY" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ebZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"eca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"ecb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"ecc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ece" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ech" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"eci" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"ecj" = ( +/obj/structure/cable/orange{ + icon_state = "4-5"; + pixel_x = -2; + pixel_y = -6; + level = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"eck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ecl" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"ecm" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecn" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"eco" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecp" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecq" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"ecs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"ect" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"ecu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"ecv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"ecw" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"ecx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"ecy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"ecz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"ecA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"ecB" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"ecC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"ecD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/green4, +/area/tyrargo/underground/mall) +"ecE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"ecF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"ecG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"ecH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/north) +"ecI" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"ecJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/north) +"ecK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"ecL" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"ecM" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"ecN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"ecO" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"ecP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/north) +"ecQ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"ecR" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"ecS" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"ecT" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = -28; + pixel_x = -2; + explo_proof = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/ground) +"ecU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/stairs/multiz/down, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -7; + pixel_y = 4; + explo_proof = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/ground) +"ecV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/stairs/multiz/down, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = -27; + pixel_x = 2; + explo_proof = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/ground) +"ecW" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/prop/hybrisa/boulders/large_boulderdark{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_y = -29; + pixel_x = 2; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + density = 0; + unacidable = 1; + can_block_movement = 0; + pixel_x = -25; + pixel_y = -2; + explo_proof = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/ground) +"ecX" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"ecY" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"ecZ" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"eda" = ( +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edb" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edc" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edd" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"ede" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edf" = ( +/obj/structure/barricade/deployable, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"edg" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"edh" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"edi" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edj" = ( +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edk" = ( +/obj/structure/prop/tyrargo/gen{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8"; + pixel_y = -6; + level = 2; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"edl" = ( +/obj/structure/platform_decoration/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edm" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edn" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/cable/orange{ + icon_state = "5-9"; + pixel_y = -19; + level = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"edo" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"edp" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"edq" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_east) +"edr" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1 + }, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_east) +"eds" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"edt" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = 11; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"edu" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_y = 11; + pixel_x = 6 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"edv" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = -15; + pixel_y = -11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"edw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -15; + pixel_y = -11 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"edx" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"edy" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"edz" = ( +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"edA" = ( +/obj/structure/prop/tyrargo/gen{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "2-10"; + pixel_x = -3; + pixel_y = 11; + level = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"edB" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/sewer_treatment/lower) +"edC" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"edD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"edE" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"edF" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/power_substation) +"edG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edH" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti7, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/underground/sewer/south) +"edJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/water, +/obj/structure/machinery/dispersal_initiator/floodgate, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"edK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"edL" = ( +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"edM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/sewer_treatment/lower) +"edN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edO" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/sewer/south) +"edP" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid{ + dir = 2 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edQ" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/power_substation) +"edR" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"edT" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/power_substation) +"edU" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/sewer/south) +"edV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"edX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"edY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"edZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"eea" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/power_substation) +"eeb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/underground/power_substation) +"eec" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"eed" = ( +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer3, +/area/tyrargo/underground/sewer/south) +"eee" = ( +/obj/effect/blocker/water, +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"eef" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/sewer_treatment/lower) +"eeg" = ( +/obj/effect/blocker/water, +/obj/effect/blocker/water, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/underground/sewer/south) +"eeh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/sewer/south) +"eei" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"eej" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eek" = ( +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/museum_carpark) +"eel" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eem" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"een" = ( +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/museum_carpark) +"eeo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"eep" = ( +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/tyrargo/underground/mall) +"eeq" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eer" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/blocker/water, +/turf/open/shuttle/escapepod/floor1/east, +/area/tyrargo/underground/engineering) +"ees" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"eet" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"eeu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/blocker/water, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"eev" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony, +/obj/effect/blocker/water, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/engineering) +"eew" = ( +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/apartment) +"eex" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/underground/engineering) +"eey" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/underground/engineering) +"eez" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/engineering) +"eeA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/mall) +"eeB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/museum_carpark) +"eeC" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eeD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating, +/area/tyrargo/underground/apartment) +"eeE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/engineering) +"eeF" = ( +/obj/structure/machinery/door/airlock/maintenance/colony, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"eeG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"eeH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/syringe{ + icon_state = "broken" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"eeI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/underground/apartment) +"eeJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/underground/apartment) +"eeK" = ( +/obj/effect/blocker/water, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/north) +"eeL" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/sewer_treatment/lower) +"eeM" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/filtration_button/floodgate{ + layer = 4; + pixel_y = 25; + light_on = 1; + light_range = 2; + desc = "Activates the filtration mechanism. This switch is powered via the underground power-subnet APC, located to the east of this area." + }, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"eeN" = ( +/obj/effect/blocker/water, +/obj/structure/filtration/collector_pipes{ + layer = 5; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/underground/sewer/south) +"eeO" = ( +/obj/effect/blocker/water, +/obj/structure/filtration/collector_pipes{ + layer = 5; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/gm/river/desert/tyrargo/deep/covered, +/area/tyrargo/underground/sewer/north) +"eeP" = ( +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/power_substation) +"eeQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/underground/power_substation) +"eeR" = ( +/turf/open/shuttle/escapepod/floor3/north, +/area/tyrargo/underground/power_substation) +"eeS" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/power_substation) +"eeT" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 0 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/powercell{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/power_substation) +"eeU" = ( +/turf/open/shuttle/escapepod/floor1, +/area/tyrargo/underground/power_substation) +"eeV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/underground/power_substation) +"eeW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/power_substation) +"eeX" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/plating, +/area/tyrargo/underground/power_substation) +"eeY" = ( +/obj/structure/prop/power_transformer{ + density = 1 + }, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = -33 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/power_substation) +"eeZ" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/power_substation) +"efa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor3, +/area/tyrargo/underground/power_substation) +"efb" = ( +/turf/open/shuttle/escapepod/floor2, +/area/tyrargo/underground/power_substation) +"efc" = ( +/turf/open/shuttle/escapepod/east, +/area/tyrargo/underground/power_substation) +"efd" = ( +/turf/open/shuttle/escapepod/floor0, +/area/tyrargo/underground/power_substation) +"efe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/underground/power_substation) +"eff" = ( +/obj/structure/prop/power_transformer{ + density = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/power_substation) +"efg" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 17; + pixel_x = 32 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/underground/power_substation) +"efh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/plating_stripedcorner/north, +/area/tyrargo/underground/power_substation) +"efi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/spawner/random/toolbox{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/tyrargo/underground/power_substation) +"efj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating_striped/north, +/area/tyrargo/underground/power_substation) +"efk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/obj/effect/spawner/random/technology_scanner{ + pixel_x = -6 + }, +/turf/open/floor/almayer/plating_stripedcorner, +/area/tyrargo/underground/power_substation) +"efl" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -30; + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/power_substation) +"efm" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/floor/strata/multi_tiles, +/area/tyrargo/underground/power_substation) +"efn" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/underground/power_substation) +"efo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/underground/power_substation) +"efp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles, +/area/tyrargo/underground/power_substation) +"efq" = ( +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/lattice, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = 32; + light_range = 1; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/tyrargo/underground/power_substation) +"efr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = -28; + light_range = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"efs" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/power_substation) +"eft" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28; + pixel_x = -7 + }, +/obj/structure/sign/safety/east{ + pixel_x = 14; + pixel_y = -30; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"efu" = ( +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28; + pixel_x = -7 + }, +/obj/structure/sign/safety/east{ + pixel_x = 14; + pixel_y = -30; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"efv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = -28 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"efw" = ( +/obj/effect/blocker/water, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = 28 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"efx" = ( +/obj/effect/blocker/water, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -29 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"efy" = ( +/obj/structure/sign/safety/water{ + pixel_y = -6; + desc = "Semiotic Standard denoting the presence of a release valve for the sewer water. The power to control this switch is found east of this room."; + pixel_x = 34 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"efz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"efA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/lower) +"efB" = ( +/obj/effect/blocker/water, +/obj/structure/sign/safety/water{ + pixel_y = -31; + desc = "Semiotic Standard denoting the presence of a release valve for the sewer water. The power to control this switch is found east of this room."; + pixel_x = 14 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/underground/sewer/south) +"efC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/underground/apartment) +"efD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/apartment) +"efE" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/mall) +"efF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"efG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"efH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"efI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/medical_doctor_corpse/burst, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"efJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"efK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office/burst, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"efL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/weymart/burst, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall) +"efM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"efN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"efO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitegreen/north, +/area/tyrargo/indoors/mall) +"efP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"efQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"efR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall) +"efS" = ( +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/tyrargo/indoors/mall) +"efT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall) +"efU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"efV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"efW" = ( +/obj/effect/decal/hybrisa/road/lines5{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"efX" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"efY" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"efZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"ega" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/museum_carpark) +"egc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egd" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines5, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"ege" = ( +/obj/effect/decal/hybrisa/road/lines5, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egf" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Red{ + dir = 8; + pixel_y = -13; + pixel_x = -2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/underground/museum_carpark) +"egi" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/blocker/water, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"egj" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egk" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"egm" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Box_Vans/Maintenance_Blue{ + pixel_y = -16; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egn" = ( +/obj/structure/machinery/light/spot{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"ego" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egp" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/closed/wall/strata_outpost, +/area/tyrargo/underground/museum_carpark) +"egq" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/south_ground) +"egr" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Desat_Blue{ + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egs" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egt" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Meridian/Brown{ + pixel_y = -10 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egu" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Turquoise{ + dir = 1; + pixel_y = 5; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egv" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egw" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/prop/hybrisa/vehicles/Box_Vans/White{ + dir = 1; + pixel_y = -16 + }, +/obj/effect/decal/cleanable/blood/oil{ + pixel_y = -11 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"egy" = ( +/turf/open/floor/hybrisa/metal/stripe_red, +/area/tyrargo/indoors/sewer_treatment/ground) +"egz" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/structure/prop/hybrisa/vehicles/Box_Vans/Hyperdyne{ + pixel_x = 3; + pixel_y = 18 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egA" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Green{ + pixel_x = -2; + dir = 4; + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egB" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"egC" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Pink{ + pixel_y = 2; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egD" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"egE" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egF" = ( +/obj/effect/blocker/water, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/underground/museum_carpark) +"egG" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/underground/museum_carpark) +"egI" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/underground/museum_carpark) +"egJ" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/museum_carpark) +"egK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = -14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"egM" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/museum_carpark) +"egN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/museum_carpark) +"egO" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"egP" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"egQ" = ( +/obj/structure/girder, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"egR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"egS" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"egT" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"egU" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_x = -26 + }, +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/tyrargo/oob) +"egV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"egW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Meridian/Turquoise{ + dir = 1; + pixel_y = -8; + icon_state = "meridian_turquoise_damage_3"; + health = 1250; + layer = 6; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"egX" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/south_east) +"egY" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_x = -26; + layer = 6 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"egZ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/prop/hybrisa/vehicles/Meridian/Orange{ + dir = 8 + }, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/outdoors/colony_streets/south_east) +"eha" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_x = -26; + layer = 6 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + pixel_y = 3; + light_color = "#FF7700"; + pixel_x = 10 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_y = 10 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ehb" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Purple{ + dir = 1 + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ehc" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = -4; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ehd" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ehe" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_x = -26; + layer = 6 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_y = 10 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -7; + pixel_y = 18; + layer = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ehf" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ehg" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ehh" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ehi" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"ehj" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_x = -26; + layer = 6 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ehk" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"ehl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_east) +"ehm" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_x = -26; + layer = 6 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"ehn" = ( +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_x = -26 + }, +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/tyrargo/oob) +"eho" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"ehp" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehq" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/black{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"ehr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"ehs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eht" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ehu" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"ehv" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/asphalt/cement, +/area/tyrargo/indoors/museum_storage/ground) +"ehw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"ehx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"ehy" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"ehz" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical{ + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"ehA" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/obj/structure/machinery/light/spot, +/obj/structure/stairs/multiz/down{ + layer = 1; + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehB" = ( +/obj/structure/stairs/multiz/down{ + layer = 1; + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehC" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/prop/rock{ + pixel_x = -2; + pixel_y = -1; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"ehD" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/west) +"ehE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/museum_storage/ground) +"ehF" = ( +/obj/structure/stairs/multiz/down{ + layer = 1; + dir = 8 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"ehH" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"ehI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shuttle/part/dropship3/transparent/left_outer_bottom_wing{ + density = 0 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"ehJ" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehK" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehL" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_y = -1; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehM" = ( +/obj/effect/decal/hybrisa/road/lines5, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehN" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"ehO" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehP" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Green{ + pixel_x = -6; + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehQ" = ( +/obj/effect/decal/hybrisa/road/lines5, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehR" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/ground) +"ehS" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -6; + health = 999999; + explo_proof = 1; + acid_damage = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"ehT" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"ehU" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"ehV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"ehX" = ( +/obj/item/reagent_container/blood/empty, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ehY" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"ehZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eia" = ( +/obj/structure/prop/vehicles/tank/longstreet/module/artillerymod{ + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/prop/vehicles/tank/longstreet/secondary/glauncher{ + dir = 8; + layer = 3.5; + pixel_y = -11; + pixel_x = -24 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eib" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eic" = ( +/obj/effect/decal/hybrisa/road/lines5{ + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eid" = ( +/obj/effect/decal/hybrisa/road/lines5{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eie" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"eif" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -2 + }, +/obj/structure/stairs/multiz/up, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eig" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1{ + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eih" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eii" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + layer = 3.1; + pixel_y = -3; + pixel_x = 11 + }, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + layer = 3.1; + pixel_y = -21; + pixel_x = 11 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"eij" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"eik" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eil" = ( +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eim" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"ein" = ( +/obj/structure/surface/table/reinforced{ + layer = 3 + }, +/obj/structure/machinery/door_control{ + id = "tyrargo_carpark_north"; + name = "Carpark Entrance Barrier" + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"eio" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/museum_storage/ground) +"eip" = ( +/obj/structure/surface/table/reinforced{ + layer = 3 + }, +/obj/structure/machinery/door/window/eastleft{ + dir = 1; + name = "Security Desk"; + closed_layer = 2.9; + layer = 2.9 + }, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"eiq" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "tyrargo_carpark_north"; + name = "\improper Barrier"; + vehicle_resistant = 1; + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eir" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/museum_storage/ground) +"eis" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/hybrisa/medical, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"eit" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"eiu" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/ground) +"eiv" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/museum_storage/ground) +"eiw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"eix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/sign/poster/ad{ + layer = 4; + pixel_x = 4; + pixel_y = 32 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/museum_storage/ground) +"eiy" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/museum_storage/ground) +"eiz" = ( +/obj/structure/shuttle/part/dropship3/transparent/upper_right_wing, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/museum_storage/ground) +"eiA" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/indoors/museum_storage/ground) +"eiB" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiD" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eiE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/oob/outdoors) +"eiF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiG" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiH" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiI" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/structure/prop/vehicles/tank/miltruck/wheeled/destroyed{ + dir = 8; + pixel_y = -21; + pixel_x = -6; + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiJ" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiK" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiL" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eiM" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_x = 1; + pixel_y = 27 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiN" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiO" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiP" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiQ" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/vehicles/Meridian/Black{ + icon_state = "meridian_black_damage_5"; + explo_proof = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiR" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiS" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"eiT" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiU" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 1; + pixel_x = -23; + pixel_y = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiV" = ( +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiW" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/WeylandYutani{ + icon_state = "meridian_wy_damage_5"; + health = 250; + layer = 5.1; + pixel_y = -4 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eiX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/truck/broken{ + dir = 8; + pixel_y = -32 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/north_east) +"eiZ" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + layer = 5.3; + light_color = "#FF7700" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eja" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"ejb" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"ejc" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 7; + pixel_y = 11; + desc = "A traffic signal denoting the nearby presence of a military airbase."; + name = "Military airbase traffic signal" + }, +/obj/structure/sign/safety/west{ + pixel_y = 27; + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"ejd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north_east) +"eje" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"ejf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ejg" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/colony_streets/east) +"ejh" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"eji" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ejj" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ejk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ejl" = ( +/obj/effect/landmark/xeno_hive_spawn, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ejm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ejn" = ( +/obj/item/prop/alien/hugger, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"ejo" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejp" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/east) +"ejq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/museum_storage/upper) +"ejr" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/upper) +"ejs" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"ejt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/museum_storage/upper) +"eju" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"ejv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/tyrargo/indoors/saipan) +"ejw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/museum_storage/upper) +"ejx" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"ejy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/upper) +"ejz" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/museum_storage/upper) +"ejA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejB" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejC" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejD" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejE" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejF" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejG" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejH" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejI" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejJ" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejK" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejL" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejM" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejN" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejO" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejR" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejS" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejT" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejV" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejW" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/west) +"ejY" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ejZ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eka" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ekb" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ekc" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ekd" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eke" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ekf" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"ekg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_1/no_mans_land) +"ekj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "carshop_resin" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"ekk" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"ekl" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_east) +"ekm" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/west) +"ekn" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_3" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eko" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "bar_resin_upper" + }, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"ekp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/effect/landmark/nightmare{ + insert_tag = "carshop_resin_upper" + }, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"ekq" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "heyst_surface" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ekr" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "heyst_above" + }, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/central) +"eks" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crash_aboveground" + }, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/central) +"ekt" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 2 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eku" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty{ + opacity = 0 + }, +/area/tyrargo/oob) +"ekv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/oob_area) +"ekw" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"ekx" = ( +/obj/structure/largecrate/black_market/confiscated_weaponry, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/oob_area) +"eky" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"ekz" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/oob_area) +"ekA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"ekB" = ( +/obj/item/weapon/gun/rifle/m41a/army, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"ekC" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/oob_area) +"ekD" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/oob_area) +"ekE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ekF" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ekG" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/oob_area) +"ekH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/redcorner/west, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekI" = ( +/obj/structure/cable/white{ + icon_state = "2-5"; + pixel_y = -4; + pixel_x = -4; + level = 2 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3; + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3; + pixel_x = -2 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -1; + dir = 1; + pixel_x = -8 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekM" = ( +/obj/structure/cable/white{ + icon_state = "9-10"; + pixel_x = 20; + pixel_y = -5; + level = 2 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekN" = ( +/obj/structure/cable/white{ + icon_state = "2-4"; + level = 2; + pixel_y = -5; + pixel_x = 5 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekO" = ( +/obj/structure/prop/hybrisa/misc/detonator{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"ekP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"ekQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"ekR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ekS" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/oob_area) +"ekT" = ( +/turf/open/floor/corsat/purple/west, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"ekU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/bunker/ammo_dump_connection) +"ekV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"ekW" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ekX" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ekY" = ( +/turf/open/floor/corsat/purple/west, +/area/tyrargo/underground/oob_area) +"ekZ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"ela" = ( +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"elb" = ( +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/oob_area) +"elc" = ( +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"eld" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/yellow, +/area/tyrargo/underground/oob_area) +"ele" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/yellow/southeast, +/area/tyrargo/underground/oob_area) +"elf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"elg" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/tyrargo/underground/oob_area) +"elh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"eli" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"elj" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/oob_area) +"elk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"ell" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/yellow/north, +/area/tyrargo/underground/oob_area) +"elm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/yellow/north, +/area/tyrargo/underground/oob_area) +"eln" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/greencorner, +/area/tyrargo/underground/oob_area) +"elo" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"elp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"elq" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"els" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall) +"elt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"elu" = ( +/obj/structure/girder, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"elv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp78/army/heap, +/obj/item/weapon/gun/pistol/vp78/army/heap, +/obj/item/weapon/gun/pistol/vp78/army/heap, +/obj/item/weapon/gun/pistol/vp78/army/heap, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"elw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/m39/army/heap, +/obj/item/weapon/gun/smg/m39/army/heap, +/obj/item/weapon/gun/smg/m39/army/heap, +/obj/item/weapon/gun/smg/m39/army/heap, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"elx" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ely" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41a/army/full, +/obj/item/weapon/gun/rifle/m41a/army/full, +/obj/item/weapon/gun/rifle/m41a/army/full, +/obj/item/weapon/gun/rifle/m41a/army/full, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"elz" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/oob_area) +"elA" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats{ + pixel_x = -27; + pixel_y = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_east) +"elB" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elC" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"elD" = ( +/turf/open/floor/corsat/green, +/area/tyrargo/underground/oob_area) +"elE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/corsat/green, +/area/tyrargo/underground/oob_area) +"elF" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"elG" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 15; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"elH" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/admin/upper) +"elI" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/green, +/area/tyrargo/underground/oob_area) +"elJ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/obj/item/ammo_magazine/rifle/heap, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"elK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"elL" = ( +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"elM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"elN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldpack, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"elO" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"elP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/oob_area) +"elQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/green/north, +/area/tyrargo/underground/oob_area) +"elR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elS" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elT" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"elU" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/green/north, +/area/tyrargo/underground/oob_area) +"elV" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -3; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elW" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elX" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/tool/screwdriver, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elY" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"elZ" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -3; + pixel_x = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ema" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/white/west, +/area/tyrargo/underground/oob_area) +"emb" = ( +/turf/open/floor/corsat/white/west, +/area/tyrargo/underground/oob_area) +"emc" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/white/east, +/area/tyrargo/underground/oob_area) +"eme" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"emf" = ( +/turf/open/floor/corsat/white/east, +/area/tyrargo/underground/oob_area) +"emg" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 7; + pixel_y = -4 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"emh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown, +/area/tyrargo/underground/bunker/south) +"emi" = ( +/turf/open/floor/corsat/red, +/area/tyrargo/underground/oob_area) +"emj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/oob_area) +"emk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"eml" = ( +/obj/item/tool/wirecutters/tactical, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emm" = ( +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/oob_area) +"emn" = ( +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/oob_area) +"emo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emp" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emq" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"ems" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"emt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"emu" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"emv" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"emw" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"emx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"emy" = ( +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/oob_area) +"emz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purplecorner, +/area/tyrargo/underground/oob_area) +"emA" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 12; + pixel_x = 10 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/oob_area) +"emC" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -3; + dir = 4 + }, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emD" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"emE" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emF" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = -1; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"emG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/north, +/area/tyrargo/underground/oob_area) +"emH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"emI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/north) +"emJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/redcorner/north, +/area/tyrargo/underground/bunker/north) +"emK" = ( +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/weapon/gun/pistol/vp78/army/heap, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emO" = ( +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/north) +"emP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/prop/invuln/static_corpse/afric_zimmer/trooper{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emS" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emT" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emU" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emV" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/m56d, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"emW" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"emX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ore_box, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"emY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"emZ" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"ena" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3; + dir = 4; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"enb" = ( +/obj/structure/prop/hybrisa/misc/detonator{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/cable/white{ + icon_state = "5-8"; + level = 2; + pixel_x = 16; + pixel_y = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/north) +"enc" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 32; + pixel_y = 7; + name = "Bunker Network - Sector Bravo 07"; + desc = "Semiotic Standard denoting bunker network designation." + }, +/obj/structure/sign/safety/north{ + pixel_x = 45; + pixel_y = 7 + }, +/obj/structure/sign/safety/zero{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/seven{ + pixel_x = 45; + pixel_y = -8 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/bunker/north) +"end" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"ene" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3; + dir = 4; + pixel_x = -2 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"enf" = ( +/obj/structure/cable/white{ + icon_state = "9-10"; + pixel_x = 12; + level = 2 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"eng" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"enh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/north) +"eni" = ( +/obj/structure/cable/white{ + icon_state = "4-5"; + level = 2; + pixel_y = -17; + pixel_x = -20 + }, +/obj/structure/cable/white{ + icon_state = "2-10"; + level = 2; + pixel_y = 11; + pixel_x = 7 + }, +/obj/structure/cable/white{ + icon_state = "1-9"; + level = 2; + pixel_y = -16; + pixel_x = 6 + }, +/obj/structure/cable/white{ + icon_state = "1-6"; + pixel_x = -23; + pixel_y = 14; + level = 2 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"enj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/corsat/red/west, +/area/tyrargo/underground/oob_area) +"enk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"enl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/oob_area) +"enm" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_y = -5; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"enn" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"eno" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"enp" = ( +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/oob_area) +"enq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"enr" = ( +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ens" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"ent" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/oob_area) +"enu" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/tyrargo/underground/oob_area) +"env" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"enw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a/army, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"enx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"eny" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"enz" = ( +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/oob_area) +"enA" = ( +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"enB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"enC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/oob_area) +"enD" = ( +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/oob_area) +"enE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/tyrargo/underground/oob_area) +"enF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"enG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/oob_area) +"enH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/brown/west, +/area/tyrargo/underground/oob_area) +"enI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/oob_area) +"enJ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"enK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"enL" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"enM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/item/ammo_magazine/pistol/vp78/heap{ + current_rounds = 0; + pixel_x = -10; + pixel_y = 1 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"enN" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"enO" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"enP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/brown/east, +/area/tyrargo/underground/oob_area) +"enQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"enR" = ( +/turf/open/floor/corsat/purplecorner, +/area/tyrargo/underground/oob_area) +"enS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/tyrargo/underground/oob_area) +"enT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"enU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"enV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purplecorner/east, +/area/tyrargo/underground/oob_area) +"enW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purplecorner/north, +/area/tyrargo/underground/oob_area) +"enX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/yellowcorner/east, +/area/tyrargo/underground/oob_area) +"enY" = ( +/turf/open/floor/corsat/yellow/north, +/area/tyrargo/underground/oob_area) +"enZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/tyrargo/underground/oob_area) +"eoa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/tyrargo/underground/oob_area) +"eob" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/west, +/area/tyrargo/underground/oob_area) +"eoc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner, +/area/tyrargo/underground/oob_area) +"eod" = ( +/turf/open/floor/corsat/brown, +/area/tyrargo/underground/oob_area) +"eoe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purplecorner/west, +/area/tyrargo/underground/oob_area) +"eof" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"eog" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/north, +/area/tyrargo/underground/oob_area) +"eoh" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/tyrargo/underground/oob_area) +"eoi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 5; + pixel_y = 15; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eoj" = ( +/turf/open/floor/corsat/yellow/west, +/area/tyrargo/underground/bunker/south) +"eok" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/west, +/area/tyrargo/underground/oob_area) +"eol" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/oob_area) +"eom" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"eon" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoo" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/purple/east, +/area/tyrargo/underground/oob_area) +"eop" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/purplecorner, +/area/tyrargo/underground/oob_area) +"eoq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/greencorner/east, +/area/tyrargo/underground/oob_area) +"eor" = ( +/obj/item/clothing/head/cavalry{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/open/floor/plating/kutjevo, +/area/tyrargo/underground/mall) +"eos" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = -6; + pixel_y = 9 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"eot" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3; + dir = 4; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eou" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eov" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eow" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"eox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"eoy" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/tyrargo/underground/oob_area) +"eoz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/west, +/area/tyrargo/underground/oob_area) +"eoA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/east, +/area/tyrargo/underground/oob_area) +"eoB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"eoC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/oob_area) +"eoD" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/tyrargo/underground/oob_area) +"eoE" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"eoF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/oob_area) +"eoG" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/toy/blink{ + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_ground) +"eoH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"eoI" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -3; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eoJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"eoK" = ( +/obj/effect/glowshroom, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoL" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/oob_area) +"eoM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoN" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoO" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -3; + pixel_x = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoP" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eoQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoR" = ( +/obj/effect/alien/weeds/weedwall, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eoS" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eoT" = ( +/obj/effect/alien/weeds, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eoU" = ( +/obj/effect/alien/weeds, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eoV" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eoW" = ( +/obj/effect/acid_hole{ + icon_state = "hole_1" + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/oob_area) +"eoX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"eoY" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"eoZ" = ( +/obj/effect/alien/weeds, +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"epa" = ( +/obj/effect/alien/weeds, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"epb" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"epc" = ( +/obj/effect/alien/weeds, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 7 + }, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_x = 11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"epd" = ( +/turf/open/floor/corsat/bluecorner, +/area/tyrargo/underground/oob_area) +"epe" = ( +/turf/open/floor/corsat/blue/southeast, +/area/tyrargo/underground/oob_area) +"epf" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/oob_area) +"epg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/oob_area) +"eph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/oob_area) +"epi" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = 1; + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"epj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/oob_area) +"epk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue, +/area/tyrargo/underground/bunker/north) +"epl" = ( +/turf/open/floor/corsat/blue/northwest, +/area/tyrargo/underground/oob_area) +"epm" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 9 + }, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/oob_area) +"epn" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"epo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/oob_area) +"epp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/clothing/head/helmet/marine/rto/army{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/oob_area) +"epq" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/weapon/gun/rifle/lmg/army{ + current_mag = null + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"epr" = ( +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/bunker/north) +"eps" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"ept" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/turf/open/floor/corsat/blue/north, +/area/tyrargo/underground/oob_area) +"epu" = ( +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_x = 11 + }, +/obj/item/ammo_magazine/rifle/lmg/heap{ + pixel_x = 13; + pixel_y = -13 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 2; + light_power = 3; + pixel_y = 29 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"epv" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 7 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"epw" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/stick3, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/east) +"epy" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob) +"epz" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epA" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epB" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epC" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/coast/dirt/forestdir/south, +/area/tyrargo/outdoors/outskirts/east) +"epE" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epF" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epG" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"epH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/outskirts/east) +"epI" = ( +/turf/open/floor/corsat/arrow_north, +/area/tyrargo/underground/oob_area) +"epJ" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/tyrargo/underground/oob_area) +"epK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreencorner, +/area/tyrargo/underground/oob_area) +"epL" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"epM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"epN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"epO" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/tyrargo/underground/oob_area) +"epP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/darkgreencorner/east, +/area/tyrargo/underground/oob_area) +"epQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/oob_area) +"epR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"epS" = ( +/turf/open/floor/corsat/redcorner/north, +/area/tyrargo/underground/oob_area) +"epT" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"epU" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"epV" = ( +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"epW" = ( +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"epX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"epY" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/oob/outdoors) +"epZ" = ( +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/oob/outdoors) +"eqa" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eqb" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob) +"eqc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"eqd" = ( +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/oob/outdoors) +"eqe" = ( +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/oob/outdoors) +"eqf" = ( +/obj/structure/prop/hybrisa/misc/trash/green{ + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"eqg" = ( +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"eqh" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ + dir = 1; + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/oob/outdoors) +"eqi" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats/empty{ + dir = 1; + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/oob/outdoors) +"eqj" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eqk" = ( +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eql" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eqm" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob/outdoors) +"eqn" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eqo" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eqp" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob/outdoors) +"eqq" = ( +/obj/structure/machinery/colony_floodlight/street{ + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"eqr" = ( +/obj/structure/machinery/colony_floodlight/street{ + pixel_y = 12; + layer = 4.12 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"eqs" = ( +/obj/structure/machinery/colony_floodlight/traffic/alt{ + dir = 8; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eqt" = ( +/turf/closed/wall/hybrisa/colony, +/area/tyrargo/oob/outdoors) +"equ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + dir = 1; + pixel_x = -4 + }, +/turf/open/floor/hybrisa/metal/grated/north, +/area/tyrargo/oob/outdoors) +"eqv" = ( +/turf/open/floor/hybrisa/metal/grated/east, +/area/tyrargo/oob/outdoors) +"eqw" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"eqx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"eqy" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"eqz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/oob/outdoors) +"eqA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/oob/outdoors) +"eqB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/oob/outdoors) +"eqC" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/oob/outdoors) +"eqD" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eqE" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob) +"eqF" = ( +/obj/structure/surface/table/reinforced, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob) +"eqG" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/oob) +"eqH" = ( +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"eqI" = ( +/obj/effect/decal/siding, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"eqJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"eqK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"eqL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 3 + }, +/obj/effect/decal/siding, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"eqM" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark/boulder_dark3{ + unacidable = 1; + unslashable = 1; + desc = "A huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + explo_proof = 1 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder2{ + unacidable = 1; + unslashable = 1; + desc = "Part of a huge rock pileup. It's looks unstable, best not touch it."; + name = "huge rock pileup"; + pixel_y = -13; + explo_proof = 1 + }, +/turf/open/gm/river/desert/tyrargo/deep/no_slowdown, +/area/tyrargo/oob) +"eqN" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"eqO" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 10 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -12; + pixel_y = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"eqP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"eqQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"eqR" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = 29 + }, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"eqS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"eqT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/oob) +"eqU" = ( +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eqV" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"eqW" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob) +"eqX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eqY" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"eqZ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"era" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erb" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"erc" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erd" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.92 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"ere" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erf" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.5 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erg" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erh" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eri" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erj" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erk" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erl" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erm" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"ern" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"ero" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erp" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + layer = 5.1 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -8; + pixel_y = 5; + layer = 4.9 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -28; + pixel_y = 5; + layer = 5 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/colony_exterior/south_west) +"err" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"ers" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_x = -25; + pixel_y = 10; + layer = 5.5 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"ert" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/obj/structure/flora/tree/dead/tree_5{ + pixel_x = -24; + pixel_y = 5; + layer = 5.3 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 7; + layer = 5.2 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eru" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4; + layer = 5.8 + }, +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erv" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erw" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4; + layer = 5.5 + }, +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25; + layer = 5.6 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"ery" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erz" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erA" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erB" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erC" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = 4; + pixel_x = -25 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erD" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erE" = ( +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/landing_zone_1/no_mans_land) +"erF" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.75 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.73 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"erG" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erH" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erI" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"erK" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erL" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"erN" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"erO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"erP" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erQ" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erR" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erS" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"erU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"erV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"erW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"erX" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"erY" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"erZ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"esb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"esc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esd" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards an underground ammo dump."; + name = "underground ammo dump sign" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards an underground ammo dump."; + name = "underground ammo dump sign" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"ese" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esf" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esg" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"esi" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/stone/tyrargo/north, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"esk" = ( +/obj/effect/landmark/ert_spawns/groundside_army, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"esl" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"esn" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eso" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esp" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"esr" = ( +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"ess" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"est" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"esv" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esw" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esx" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esz" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/tyrargo/oob) +"esA" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esB" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"esD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esF" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esG" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = -3; + pixel_y = 9; + dir = 4; + anchored = 1; + layer = 4.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"esJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esK" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esL" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"esM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esN" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esO" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/stone/tyrargo/west, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"esP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/road) +"esQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"esU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"esX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"esZ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eta" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"etb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"etd" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ete" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"etf" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"etg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eth" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eti" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"etj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"etk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"etl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"etm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"etn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eto" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"etq" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/west, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/river) +"etr" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ets" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ett" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etu" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etv" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"etx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 5; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ety" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/central) +"etB" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etC" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/stone/tyrargo/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"etD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"etE" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14; + pixel_x = -14 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"etG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etI" = ( +/obj/item/trash/used_stasis_bag, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"etJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"etK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"etN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"etO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"etP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"etQ" = ( +/obj/item/trash/used_stasis_bag, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_streets/south_east) +"etR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"etS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"etT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"etV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"etW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 4; + pixel_y = 3; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"etX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"etY" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"etZ" = ( +/obj/item/trash/uscm_mre, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eua" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = -14; + pixel_y = -10 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eub" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"euc" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 10; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"eud" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eue" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"euf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"eug" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"euh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_y = -11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eui" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"euj" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/north_ground) +"euk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eul" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 10; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eum" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"eun" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 19; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"euo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eup" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"euq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -7; + pixel_y = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eur" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = -14; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eus" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eut" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"euu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 2; + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"euv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"euw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eux" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"euy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"euz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"euA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "17"; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"euB" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"euC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"euD" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"euE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"euF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"euG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"euH" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"euI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"euJ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"euK" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Green{ + pixel_x = -2; + dir = 4; + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"euL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euM" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euO" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euQ" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euS" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"euT" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"euU" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"euV" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 7; + pixel_y = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -3; + pixel_y = -13; + dir = 1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"euW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"euY" = ( +/obj/structure/prop/tyrargo/boards/boards_1, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = -2; + pixel_x = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"euZ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"eva" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evb" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evc" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 13; + pixel_x = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evd" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eve" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evf" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evg" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evh" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"evk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"evl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evm" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evn" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evt" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"evx" = ( +/obj/structure/flora/tree/tyrargo/tree_3, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"evy" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"evz" = ( +/obj/structure/flora/tree/tyrargo/tree_3, +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"evA" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"evB" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evC" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/marine/fluff/steelpoint{ + layer = 3.01 + }, +/obj/item/clothing/suit/storage/marine/fluff/steelpoint{ + desc = "A next generation body armor system intended for Marines fighting against xenomorphs, the system is coated in a unique acid resistant polymer coating, as well as enhanced ballistics protection."; + armor_bio = 40; + armor_melee = 25; + armor_internaldamage = 30; + armor_bullet = 25 + }, +/obj/item/clothing/head/helmet/marine/fluff/steelpoint{ + layer = 3.04; + desc = "A next generation combat helmet intended to be paired with the M4-X armor. The full faced helmet provides complete light ballistic-resistant protection alongside enchanced acid resistance."; + armor_bio = 40; + armor_bullet = 25; + armor_internaldamage = 30; + armor_melee = 25 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/oob/outdoors) +"evD" = ( +/turf/open/floor/carpet, +/area/tyrargo/oob/outdoors) +"evE" = ( +/obj/structure/flora/wood/trunk2, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evF" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/oob) +"evG" = ( +/obj/structure/prop/almayer/ship_memorial{ + name = "slab of commendation"; + desc = "A moderately polished slab dedicated to those who have aided in the creation of this colony and its surrounding environs, including kyogen, zenith, cuberound and all the many others who have given aid. Thank you, I mean it." + }, +/turf/open/floor/carpet, +/area/tyrargo/oob/outdoors) +"evH" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/tyrargo/oob/outdoors) +"evJ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/gold_clock{ + pixel_y = 39 + }, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"evK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"evL" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/tyrargo/oob) +"evM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evN" = ( +/obj/structure/flora/wood/trunk1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"evO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evP" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evR" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"evS" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17"; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evT" = ( +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"evU" = ( +/turf/open/gm/coast/dirt/forestdir/south, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"evV" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"evW" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "13" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"evX" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evY" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"evZ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewa" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewb" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewd" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "19"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewe" = ( +/obj/structure/flora/wood/trunk2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewf" = ( +/turf/open/gm/coast/dirt/forestdir/west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewg" = ( +/turf/open/gm/river/tyrargo, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/coast/dirt/forestdir/east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewi" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewj" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewk" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ewl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewm" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewn" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9; + pixel_y = -7; + pixel_x = 17 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/coast/dirt/forestdir/east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewo" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ewp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/wood/stick3{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewq" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1; + pixel_x = 17 + }, +/turf/open/gm/coast/dirt/forestdir/east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ews" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewt" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewu" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eww" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewx" = ( +/obj/structure/flora/wood/stick4, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewy" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewz" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewB" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewC" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewD" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewE" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewF" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewG" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewH" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9; + pixel_y = 8; + pixel_x = -7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewJ" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ewK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewL" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewM" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewN" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewO" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewP" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewQ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewR" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/flora/wood/stick1, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewT" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ewU" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ewV" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -13 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewW" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewX" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ewY" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17"; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ewZ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -4; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/west) +"exa" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"exb" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"exc" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"exd" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"exe" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"exf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"exg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"exh" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"exi" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -25; + dir = 8; + pixel_x = 7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_y = -8; + pixel_x = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/fsb_north) +"exj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/fsb_north) +"exk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/no_tunnel) +"exl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"exm" = ( +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2/no_tunnel) +"exn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2/no_tunnel) +"exo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2/no_tunnel) +"exp" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exq" = ( +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2) +"exr" = ( +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"exs" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"ext" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"exu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"exv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"exw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -1; + pixel_y = -8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exz" = ( +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"exA" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exB" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/ground) +"exC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"exE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exH" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exI" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exJ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"exK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16; + pixel_x = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"exL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"exM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"exN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"exO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"exP" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"exQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"exS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exT" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/sign/banners/united_americas_flag_worn{ + pixel_y = 38 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_2) +"exU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"exV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2) +"exW" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"exX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"exZ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"eya" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyc" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"eyd" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eye" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eyf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eyg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12; + pixel_x = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"eyh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"eyi" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2) +"eyk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2) +"eym" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eyn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/bar/ground) +"eyo" = ( +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2) +"eyp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"eyq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"eyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"eys" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyt" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eyv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"eyw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"eyx" = ( +/obj/item/ammo_casing/bullet, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"eyy" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eyz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2) +"eyA" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eyB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eyC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyD" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eyE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 4; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/east) +"eyN" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick3, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/east) +"eyS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/rope{ + pixel_x = 14; + pixel_y = 14 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/east) +"eyT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 19 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyW" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -14; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eyX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eyZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eza" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"ezb" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezd" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob/outdoors) +"eze" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -11; + pixel_y = 36 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezf" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezg" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezh" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = -2; + layer = 5.7 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -6; + pixel_y = 12; + layer = 5.5 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"ezi" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"ezj" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 1; + layer = 5.4 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"ezk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"ezl" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"ezm" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"ezn" = ( +/obj/structure/flora/tree/tyrargo, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"ezo" = ( +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 4.4 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 4.3 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"ezp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/east) +"ezr" = ( +/turf/open/gm/coast/dirt/forestdir/south, +/area/tyrargo/outdoors/outskirts/east) +"ezs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -13 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = 3; + pixel_x = 14 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/oob/outdoors) +"ezt" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -5; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"ezu" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"ezv" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -5; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/south_east, +/area/tyrargo/oob/outdoors) +"ezw" = ( +/turf/open/gm/coast/dirt/forestdir/south, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/coast/dirt/forestdir/west, +/area/tyrargo/outdoors/outskirts/east) +"ezz" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east, +/area/tyrargo/outdoors/outskirts/east) +"ezA" = ( +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/outskirts/east) +"ezB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = 3; + pixel_x = 14 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/north_west, +/area/tyrargo/oob/outdoors) +"ezC" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -4; + pixel_x = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = -10 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -13 + }, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"ezD" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -4; + pixel_x = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = -10 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east, +/area/tyrargo/oob/outdoors) +"ezE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezF" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_west, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/coast/dirt/forestdir/east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezJ" = ( +/turf/open/gm/coast/dirt/forestdir/east, +/area/tyrargo/outdoors/outskirts/east) +"ezK" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"ezL" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -18; + pixel_y = -20; + layer = 5.93 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"ezM" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezN" = ( +/turf/open/gm/coast/dirt/forestdir/west, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezO" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/south_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezQ" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ezU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -6; + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"ezV" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/south_east, +/area/tyrargo/outdoors/outskirts/east) +"ezW" = ( +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/outskirts/east) +"ezX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ezY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"ezZ" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eAa" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"eAb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/outdoors/outskirts/east) +"eAc" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_west, +/area/tyrargo/outdoors/outskirts/east) +"eAd" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eAe" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAf" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAg" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAh" = ( +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAi" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAj" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eAk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/east) +"eAl" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/outdoors/outskirts/east) +"eAm" = ( +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/flora/wood/trunk2{ + pixel_y = 13; + pixel_x = -3 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAo" = ( +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/east) +"eAp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 15; + pixel_y = -7 + }, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"eAq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/forestdir/south, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "17"; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"eAt" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_y = -11 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/outskirts/east) +"eAv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = 3; + pixel_x = 14 + }, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"eAw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -4; + pixel_x = -1 + }, +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAx" = ( +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAz" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/west) +"eAA" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAB" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAC" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAD" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eAF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/south_west, +/area/tyrargo/oob/outdoors) +"eAG" = ( +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"eAH" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 4.8 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 6; + layer = 4.7 + }, +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAI" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/oob/outdoors) +"eAL" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"eAM" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAN" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/flora/wood/trunk2{ + pixel_x = -9; + pixel_y = -15 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAO" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAP" = ( +/obj/structure/flora/wood/stick1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"eAQ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eAR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/outdoors/outskirts/east) +"eAS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = 3; + pixel_x = 14 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"eAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eAU" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -4; + pixel_x = -1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/coast/dirt/forestbeachcorner2/north_west, +/area/tyrargo/oob/outdoors) +"eAW" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -4; + pixel_x = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = -10 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -4; + pixel_x = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/river/tyrargo, +/area/tyrargo/oob/outdoors) +"eAX" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eAY" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eAZ" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central_south) +"eBa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eBb" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBc" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eBd" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"eBe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = -14; + pixel_y = -10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBf" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eBg" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eBh" = ( +/obj/structure/flora/wood/stick3, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eBi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eBj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBk" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eBl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eBm" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 5; + pixel_y = 8; + dir = 4; + layer = 4.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eBn" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eBo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eBp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/flora/wood/stick4, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eBq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eBr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBt" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eBu" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eBv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/east) +"eBw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/east) +"eBx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eBy" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17"; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eBz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/east) +"eBA" = ( +/obj/structure/closet/crate/green, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eBB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"eBC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eBD" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "13" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"eBE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eBF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/east) +"eBG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eBH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_y = 43; + pixel_x = -10 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/east) +"eBI" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eBK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eBL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eBM" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "8" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eBN" = ( +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eBO" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"eBP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eBQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eBR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eBS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eBT" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eBU" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eBV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eBW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eBX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/forestdir/west, +/area/tyrargo/outdoors/outskirts/east) +"eBY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"eBZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCa" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eCc" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"eCd" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"eCe" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCf" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "12" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCg" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "19"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCh" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCi" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob/outdoors) +"eCj" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCk" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCl" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCm" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"eCp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_1) +"eCr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCs" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCt" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCu" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eCx" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eCy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_1) +"eCz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCA" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCC" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/east) +"eCE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/grated/east, +/area/tyrargo/oob/outdoors) +"eCF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -10; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"eCG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCH" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/landing_zone_1) +"eCJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCL" = ( +/obj/structure/flora/wood/stick4, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCM" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eCQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eCR" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"eCS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCT" = ( +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/landing_zone_1) +"eCU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 7; + pixel_x = -10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCV" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eCW" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = -8; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCX" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCY" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eCZ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eDa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = 32; + pixel_y = -3 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/central) +"eDb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/central) +"eDc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/grated, +/area/tyrargo/oob/outdoors) +"eDd" = ( +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"eDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/oob/outdoors) +"eDf" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"eDg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/landing_zone_1/no_mans_land) +"eDh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDi" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_1) +"eDj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDk" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eDm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eDn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eDo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1/no_mans_land) +"eDp" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1/no_mans_land) +"eDq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDr" = ( +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_1) +"eDs" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDt" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "8" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eDu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "8" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eDv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDx" = ( +/turf/open/floor/hybrisa/metal/grated, +/area/tyrargo/oob/outdoors) +"eDy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDA" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 2; + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDC" = ( +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDE" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/oob/outdoors) +"eDF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/plating, +/area/tyrargo/oob/outdoors) +"eDG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_1/no_mans_land) +"eDH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -10; + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDM" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1/no_mans_land) +"eDO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eDU" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eDV" = ( +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDW" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eDY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1/no_mans_land) +"eDZ" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEa" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_1/no_mans_land) +"eEc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -1; + pixel_y = -8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEd" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 7; + pixel_x = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"eEg" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEh" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEi" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEj" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEk" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eEm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1/no_mans_land) +"eEn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_1) +"eEp" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17"; + pixel_x = 5; + pixel_y = -9 + }, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eEr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eEt" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_1/no_mans_land) +"eEu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEv" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEw" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "13" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eEx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eEy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eEz" = ( +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEA" = ( +/obj/structure/platform/stone/tyrargo, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEB" = ( +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = -2; + pixel_y = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eED" = ( +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1) +"eEE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1) +"eEF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEG" = ( +/obj/structure/flora/grass/temperate, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eEH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/outdoors/outskirts/central) +"eEJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/outskirts/central) +"eEK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"eEM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/outdoors/outskirts/central) +"eEN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/central) +"eEO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eEP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eEQ" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/oob/outdoors) +"eER" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/tyrargo/oob/outdoors) +"eES" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid, +/turf/open/floor/plating, +/area/tyrargo/oob/outdoors) +"eET" = ( +/turf/open/floor/plating/plating_catwalk/aicore, +/area/tyrargo/oob/outdoors) +"eEU" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEW" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square_red" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/oob/outdoors) +"eEX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square_red" + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/tyrargo/oob/outdoors) +"eEY" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eEZ" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFb" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFc" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFd" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFe" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eFg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/east) +"eFh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/east) +"eFi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFj" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrack3, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"eFk" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/east) +"eFm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/east) +"eFn" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/east) +"eFq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/east) +"eFr" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "17" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"eFs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFt" = ( +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eFv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/central) +"eFw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts_road/central) +"eFx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eFy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eFz" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eFA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eFB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"eFC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"eFD" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central) +"eFE" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eFF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eFG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eFH" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/south_ground) +"eFI" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eFJ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eFK" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eFL" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eFM" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eFO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/east) +"eFP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eFQ" = ( +/obj/structure/flora/tree/dead/tree_1{ + layer = 5.7 + }, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eFR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"eFS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eFT" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/east) +"eFU" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 19; + dir = 8; + pixel_x = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eFV" = ( +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -10; + pixel_y = -3; + layer = 2.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eFW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/east) +"eFX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/flora/wood/stick3, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/east) +"eFY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eFZ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/east) +"eGa" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eGb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eGc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"eGd" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = -2; + pixel_y = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eGe" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eGf" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"eGg" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts_road/central) +"eGh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/flora/wood/stick2, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eGi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eGj" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts_road/central) +"eGk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eGl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eGm" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eGn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eGo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/wood/stick3, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eGp" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/west) +"eGq" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "19"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eGr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/west) +"eGs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/west) +"eGt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = -14; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"eGu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eGv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eGw" = ( +/obj/structure/platform_decoration/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eGx" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eGy" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"eGz" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"eGA" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/central) +"eGB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"eGC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 16; + pixel_x = 9 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_upper) +"eGD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eGE" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -13 + }, +/obj/structure/flora/wood/stick3{ + pixel_x = 7; + pixel_y = -12 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eGF" = ( +/obj/structure/platform/stone/tyrargo/north, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eGG" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eGI" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eGJ" = ( +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eGK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -4; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eGL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eGM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eGN" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"eGO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/oob/outdoors) +"eGP" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1) +"eGQ" = ( +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eGR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/east) +"eGS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"eGT" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/east) +"eGU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eGV" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eGW" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eGX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eGY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eGZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eHa" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plaincakeslice, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/birthdaycake, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHd" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/applecake, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHe" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/orangecake, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHf" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/lemoncakeslice, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHh" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/limecakeslice, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHi" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"eHj" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/chocolatecake, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/limecake, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/oob/outdoors) +"eHl" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eHm" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 7; + pixel_y = 11; + desc = "A traffic signal denoting the nearby presence of a military airbase."; + name = "Military airbase traffic signal" + }, +/obj/structure/sign/safety/west{ + pixel_y = 27; + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"eHn" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"eHo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_east) +"eHp" = ( +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/colony_exterior/south_east) +"eHq" = ( +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/south_east) +"eHr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/south_east) +"eHs" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"eHt" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/coast/dirt/forestbeachcorner2/north_east, +/area/tyrargo/oob/outdoors) +"eHu" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/coast/dirt/forestdir, +/area/tyrargo/oob/outdoors) +"eHv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 2; + dir = 6 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/oob/outdoors) +"eHw" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eHx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/oob/outdoors) +"eHy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/oob/outdoors) +"eHA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHB" = ( +/obj/structure/flora/wood/stick4{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHD" = ( +/obj/structure/prop/brazier/campfire, +/obj/structure/flora/wood/trunk2{ + pixel_x = -16; + pixel_y = -14 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700"; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHE" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHF" = ( +/obj/item/trash/burger, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eHG" = ( +/obj/structure/prop/tyrargo/large_tents/small{ + pixel_x = -19; + pixel_y = -9 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -11; + pixel_y = -12 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -2; + pixel_x = -13 + }, +/obj/item/trash/hotdog, +/turf/open/floor/interior/wood, +/area/tyrargo/oob/outdoors) +"eHH" = ( +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = 1; + pixel_x = -1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob/outdoors) +"eHI" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.78 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.79 + }, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"eHJ" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"eHK" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/oob/outdoors) +"eHL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"eHM" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"eHN" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eHO" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eHP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_2) +"eHQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eHR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eHS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2) +"eHT" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/landing_zone_2) +"eHU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eHV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eHW" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eHX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2) +"eHY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2/road) +"eHZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 5; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"eIa" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 5; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eIb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2/road) +"eIc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2/road) +"eId" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eIe" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 4; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2/road) +"eIf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eIg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2) +"eIh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eIi" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2/road) +"eIj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2/road) +"eIk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eIl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eIm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"eIn" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/army_staging) +"eIo" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"eIp" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"eIq" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"eIr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eIs" = ( +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eIt" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "19"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"eIu" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eIv" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eIw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIy" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIz" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIB" = ( +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eID" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"eIF" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"eIG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIH" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"eII" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIJ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/central) +"eIK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/outdoors/outskirts_road/central) +"eIL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/outdoors/outskirts_road/central) +"eIM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts_road/central) +"eIN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/central) +"eIO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/outdoors/outskirts_road/central) +"eIP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"eIQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/outdoors/outskirts_road/central) +"eIR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/central) +"eIS" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eIT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eIU" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_3" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/east) +"eIV" = ( +/obj/structure/largecrate/empty, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eIW" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_3" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"eIX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eIY" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eIZ" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eJa" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eJb" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/east) +"eJc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eJd" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJe" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"eJf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJg" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eJi" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_1) +"eJj" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJk" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJp" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_1) +"eJr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_1) +"eJs" = ( +/obj/structure/prop/tyrargo/illuminator{ + icon_state = "floodlight-on"; + light_on = 1; + light_range = 8; + light_power = 2; + light_color = "#FFEFD2" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eJt" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1) +"eJu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1) +"eJv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1) +"eJw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/landing_zone_1) +"eJx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJy" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_1) +"eJz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_1) +"eJA" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJD" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1/no_mans_land) +"eJF" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eJG" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"eJH" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.0; + pixel_y = 4 + }, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/no_tunnel) +"eJI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/east) +"eJJ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/east) +"eJK" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eJL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 19 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eJM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/east) +"eJN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/east) +"eJO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5, +/area/tyrargo/outdoors/outskirts_road/east) +"eJP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/east) +"eJQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"eJR" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2/road) +"eJS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eJT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2/road) +"eJU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/landing_zone_2/road) +"eJV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eJW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2/road) +"eJX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2/road) +"eJY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2/road) +"eJZ" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/east_trench) +"eKa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/west) +"eKb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/west) +"eKc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"eKd" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts_road/central) +"eKe" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eKf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts_road/west) +"eKg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -13 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"eKh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/central) +"eKi" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/flora/wood/stick4{ + pixel_x = -2; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eKj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"eKk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/central) +"eKl" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eKm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/west) +"eKn" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"eKo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"eKp" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"eKq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -7; + pixel_y = 15 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts_road/east) +"eKr" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts_road/east) +"eKs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts_road/east) +"eKt" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eKu" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eKv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/east) +"eKw" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"eKx" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"eKy" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts_road/central) +"eKz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eKA" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts_road/central) +"eKB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/structure/flora/grass/temperate{ + icon_state = "13" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eKC" = ( +/obj/structure/flora/wood/trunk2, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eKD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"eKE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eKF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"eKG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eKH" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"eKI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"eKJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eKK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eKL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eKM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_1) +"eKN" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eKO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_west, +/area/tyrargo/landing_zone_1) +"eKP" = ( +/obj/item/reagent_container/food/drinks/flask/canteen{ + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/landing_zone_1) +"eKQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_1) +"eKR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_west, +/area/tyrargo/landing_zone_1) +"eKS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/item/clothing/shoes/marine/army/knife{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/landing_zone_1) +"eKT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eKU" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eKV" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"eKW" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"eKX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eKY" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"eKZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLc" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32; + light_color = "#850000"; + light_on = 1; + light_range = 1; + pixel_x = 15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLe" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLh" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"eLn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLo" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eLp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + light_on = 1; + light_color = "#96DED1"; + pixel_x = 15; + light_range = 1; + pixel_y = -24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eLt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/security/upper) +"eLu" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/market/upper) +"eLv" = ( +/obj/effect/decal/heavy_cable/node_s_w, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/market/upper) +"eLw" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/market/upper) +"eLy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/market/upper) +"eLz" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open_space, +/area/tyrargo/oob/outdoors) +"eLA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eLB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eLC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"eLD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_east) +"eLE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/security/upper) +"eLF" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent1"; + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall/upper/external) +"eLG" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent1" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall/upper/external) +"eLH" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_y = 15 + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/colony_streets/east) +"eLI" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/colony_streets/east) +"eLJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper/external) +"eLK" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/mall/upper/external) +"eLL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/mall/upper/external) +"eLM" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/mall/upper/external) +"eLN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"eLO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"eLP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"eLQ" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper/external) +"eLR" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"eLS" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper/external) +"eLT" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eLU" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/oob/outdoors) +"eLV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/decal/hybrisa/lattice, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"eLW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/effect/decal/hybrisa/lattice, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"eLX" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/decal/hybrisa/lattice, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"eLY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"eLZ" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/upper/external) +"eMa" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/comms/upper) +"eMb" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/gararge/upper/external) +"eMc" = ( +/obj/effect/decal/heavy_cable/node_s_e, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/comms/upper) +"eMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/underground/museum_carpark) +"eMe" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"eMf" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -11; + pixel_y = 36 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eMg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eMh" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"eMi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"eMj" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/colony_streets/south_west) +"eMk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"eMl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/oob/outdoors) +"eMn" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"eMo" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 8; + pixel_y = 5; + layer = 2.8 + }, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/mall/upper/external) +"eMp" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -1; + pixel_x = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = 15; + pixel_y = -12 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -11; + layer = 2.8; + pixel_x = -11 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_x = 13; + layer = 2.8 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/indoors/mall/upper/external) +"eMq" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/upper) +"eMr" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"eMs" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/engineering/upper/external) +"eMt" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/engineering/upper/external) +"eMu" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"eMv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"eMw" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper/external) +"eMx" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper/external) +"eMy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"eMz" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/bar/upper/external) +"eMA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"eMB" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"eMC" = ( +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eMD" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/weapon/gun/smg/m39/army{ + pixel_y = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"eME" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/obj/item/weapon/gun/shotgun/pump/m37a{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"eMF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"eMG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/upper/external) +"eMH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"eMI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"eMJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"eMK" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_south) +"eML" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/item/weapon/gun/smg/m39/army{ + pixel_y = 14 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eMM" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"eMN" = ( +/obj/effect/decal/siding, +/obj/item/ammo_box/magazine/m39, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"eMO" = ( +/obj/effect/decal/siding, +/obj/item/weapon/gun/smg/m39/army{ + pixel_y = 14 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"eMP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"eMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"eMR" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/comms/ground) +"eMS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/fsb_north) +"eMT" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"eMU" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"eMV" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob) +"eMW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"eMX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"eMY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"eMZ" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"eNa" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"eNb" = ( +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"eNc" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"eNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/outskirts/east_trench) +"eNe" = ( +/obj/effect/glowshroom, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"eNf" = ( +/obj/effect/glowshroom, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"eNg" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/ammo_dump_entrance) +"eNh" = ( +/obj/effect/glowshroom, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/underground/oob_area) +"eNi" = ( +/obj/effect/glowshroom, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/bunker/south) +"eNj" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eNk" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eNl" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eNm" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.94 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eNn" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eNo" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eNp" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eNq" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eNr" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNs" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNt" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNu" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNv" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNw" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNx" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNy" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eNz" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"eNA" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"eNB" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"eNC" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"eND" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2/east_trench) +"eNH" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNI" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNJ" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"eNK" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2/no_tunnel) +"eNL" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/landing_zone_2) +"eNM" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNN" = ( +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNO" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/landing_zone_2/east_trench) +"eNP" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNR" = ( +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNS" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -22; + pixel_y = 3 + }, +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/landing_zone_2/east_trench) +"eNT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/landing_zone_2/east_trench) +"eNU" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNV" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNW" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"eNX" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eNY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eNZ" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eOa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_6, +/area/tyrargo/outdoors/outskirts/north_east_usasf/weedkiller) +"eOb" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOc" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOd" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOe" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOg" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOh" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOi" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOj" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOk" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOm" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOn" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOo" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"eOp" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eOq" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOr" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOs" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.77 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.76 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.75 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eOt" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOu" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOv" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.74 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.73 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.72 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eOw" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOy" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eOz" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/south_east) +"eOA" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eOB" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/west) +"eOC" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/west) +"eOD" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/south_west) +"eOE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -1; + layer = 2.8 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOF" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -1; + layer = 2.8 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -8; + pixel_y = -11; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eOI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"eOJ" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eOK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/outskirts_road/west) +"eOL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts_road/west) +"eOM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eON" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eOO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"eOP" = ( +/obj/effect/decal/siding, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"eOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice, +/area/tyrargo/outdoors/colony_streets/north_east) +"eOR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north) +"eOS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"eOT" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"eOU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + pixel_x = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"eOW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"eOX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"eOY" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"eOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ePa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ePd" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ePe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ePf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ePg" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ePh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"ePi" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ePj" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/south_west) +"ePk" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"ePn" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"ePo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/west) +"ePq" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"ePr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/west) +"ePs" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"ePt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"ePu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"ePv" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/east) +"ePw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePx" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"ePA" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"ePC" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/west) +"ePD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePE" = ( +/obj/structure/girder, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"ePF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"ePG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"ePH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"ePI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north) +"ePJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/west) +"ePK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePM" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePN" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePO" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"ePP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePR" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"ePS" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north_west) +"ePU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"ePV" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ePW" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"ePX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"ePY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"ePZ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"eQa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eQb" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQd" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"eQe" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eQf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eQg" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQi" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQk" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eQl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"eQm" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eQn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"eQo" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/tyrargo/oob) +"eQp" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, +/turf/open/floor/plating, +/area/tyrargo/underground/engineering) +"eQq" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eQr" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"eQs" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"eQt" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"eQu" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -32; + layer = 3.1 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"eQv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/largecrate/empty/case/double{ + layer = 3.2 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"eQw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/largecrate/random/case/small{ + layer = 3.2 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/landing_zone_2) +"eQx" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"eQy" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 6; + pixel_y = 17; + anchored = 1; + layer = 3.03 + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = 7; + pixel_x = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 4; + pixel_y = -30 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"eQz" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/item/ammo_magazine/m56d{ + pixel_y = 9; + current_rounds = 2; + layer = 3.03 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_east) +"eQA" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/indoors/engineering/upper) +"eQB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"eQC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/museum_central) +"eQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"eQE" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/tyrargo/indoors/engineering/upper) +"eQF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/tyrargo/indoors/mall/upper) +"eQG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eQH" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eQI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eQJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"eQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"eQL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eQM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"eQN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"eQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"eQP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"eQQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"eQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"eQS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"eQT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eQU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"eQV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"eQW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"eQX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/east) +"eQY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/east) +"eQZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"eRa" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"eRb" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/outdoors/outskirts/central) +"eRc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/tyrargo/indoors/mall) +"eRd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"eRe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/green3/west, +/area/tyrargo/indoors/mall) +"eRf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"eRg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"eRh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/tyrargo/indoors/mall) +"eRi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"eRj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"eRk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"eRl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/roadlines3, +/area/tyrargo/indoors/museum_storage/ground) +"eRm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRn" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRo" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRp" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRq" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"eRu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/kutjevo/tan, +/area/tyrargo/indoors/mall) +"eRv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/tyrargo/indoors/mall) +"eRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/blue{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRA" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/engineering/upper/external) +"eRB" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRC" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRI" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/engineering/upper/external) +"eRJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"eRT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eRU" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/indoors/security/upper) +"eRV" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/security/upper) +"eRW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/security/upper) +"eRX" = ( +/obj/effect/decal/heavy_cable/node_s_e, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eRY" = ( +/obj/effect/decal/heavy_cable/cable_vertical, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eRZ" = ( +/obj/effect/decal/heavy_cable/node_s_w, +/obj/effect/decal/heavy_cable/node_north, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_x = -1 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/upper) +"eSb" = ( +/turf/open/floor/prison/green, +/area/tyrargo/indoors/security/upper) +"eSc" = ( +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/security/upper) +"eSd" = ( +/obj/effect/decal/heavy_cable/node_n_w, +/obj/effect/decal/heavy_cable/node_n_e, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eSf" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt, +/area/tyrargo/indoors/market/upper) +"eSg" = ( +/obj/item/clothing/accessory/patch/army/infantry, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eSh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/security/upper) +"eSi" = ( +/turf/open/floor/prison, +/area/tyrargo/indoors/security/upper) +"eSj" = ( +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/security/upper) +"eSk" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/indoors/market/upper) +"eSl" = ( +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/security/upper) +"eSm" = ( +/obj/effect/decal/heavy_cable/node_s_e, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/market/upper) +"eSn" = ( +/obj/effect/decal/heavy_cable/cable_vertical, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/market/upper) +"eSo" = ( +/obj/effect/decal/heavy_cable/node_s_e, +/obj/effect/decal/heavy_cable/node_s_w, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/market/upper) +"eSp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/security/upper) +"eSq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/green/northeast, +/area/tyrargo/indoors/security/upper) +"eSr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/security/upper) +"eSs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/market/upper) +"eSt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/market/upper) +"eSu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/market/upper) +"eSv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/market/upper) +"eSx" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/north, +/area/tyrargo/indoors/market/upper) +"eSz" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent3" + }, +/turf/open/floor/prison/blue/southeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eSA" = ( +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eSB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eSC" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/storage/briefcase{ + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/north_upper) +"eSD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eSE" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent3"; + pixel_y = 10 + }, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"eSF" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/tyrargo/indoors/comms/upper) +"eSG" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_y = 3 + }, +/turf/open/floor/almayer/plating_stripedcorner/west, +/area/tyrargo/indoors/comms/upper) +"eSH" = ( +/turf/open/floor/almayer/plating_stripedcorner/east, +/area/tyrargo/indoors/comms/upper) +"eSI" = ( +/obj/effect/decal/heavy_cable/cable_vertical, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/comms/upper) +"eSJ" = ( +/obj/effect/decal/heavy_cable/node_s_w, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/comms/upper) +"eSK" = ( +/turf/open/floor/almayer/plating_stripedcorner/north, +/area/tyrargo/indoors/comms/upper) +"eSL" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + pixel_x = 15; + pixel_y = 18 + }, +/turf/open/floor/almayer/plating_stripedcorner, +/area/tyrargo/indoors/comms/upper) +"eSM" = ( +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"eSP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + pixel_y = 15; + light_color = "#FF7700"; + pixel_x = -8 + }, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eSQ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob/outdoors) +"eSR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -2; + pixel_x = 3 + }, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"eSW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/cyan2, +/area/tyrargo/indoors/mall/upper) +"eSX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall/upper) +"eSY" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"eSZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"eTa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"eTb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall/upper) +"eTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"eTd" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/engineering/upper/external) +"eTe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/bar/upper/external) +"eTf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/bar/upper/external) +"eTg" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/bar/upper/external) +"eTh" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/bar/upper/external) +"eTi" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5" + }, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/admin/upper/external) +"eTj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/bar/upper/external) +"eTk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/bar/upper/external) +"eTl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/gararge/upper/external) +"eTm" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/gararge/upper/external) +"eTn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/gararge/upper/external) +"eTo" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/gararge/upper/external) +"eTp" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt, +/area/tyrargo/indoors/comms/upper) +"eTq" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/comms/upper) +"eTr" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/west, +/area/tyrargo/indoors/comms/upper) +"eTs" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/north, +/area/tyrargo/indoors/comms/upper) +"eTt" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/gararge/upper/external) +"eTu" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/gararge/upper/external) +"eTC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder/multiz, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eTF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/head/helmet/marine/rto/army/engi{ + pixel_y = 11 + }, +/obj/item/clothing/suit/storage/marine/medium/rto/army{ + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eTG" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"eTI" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eTJ" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/suit/storage/marine/medium/rto/army{ + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/marine/rto/army{ + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eTK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"eTL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"eTM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"eTN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"eTO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"eTP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"eTQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"eTR" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"eTS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eTT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eTU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eTV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eTW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/largecrate/random{ + pixel_y = -1; + pixel_x = -10; + layer = 3.2 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/mall) +"eTX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/mall) +"eTY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/largecrate/random{ + pixel_y = -1; + pixel_x = -4; + layer = 3.2 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/mall) +"eTZ" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.93 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"eUa" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUd" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"eUe" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUf" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUg" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUi" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eUk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eUl" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"eUm" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"eUo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"eUp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"eUq" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/colony_exterior/south_west) +"eUr" = ( +/turf/open/floor/hybrisa/metal/stripe_red/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"eUs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/stripe_red/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"eUt" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/admin/upper/external) +"eUu" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eUv" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUw" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUx" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUy" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUz" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eUA" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 10; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUC" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUD" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eUE" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eUF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/west) +"eUG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eUH" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"eUI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/west) +"eUJ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eUK" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/west) +"eUL" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"eUM" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"eUN" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUO" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"eUP" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eUQ" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eUR" = ( +/obj/structure/girder, +/turf/open/floor/corsat/marked, +/area/tyrargo/outdoors/colony_streets/south_west) +"eUT" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"eUU" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"eUV" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eUW" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eUX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"eUY" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"eUZ" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north) +"eVa" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/north) +"eVb" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 13; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"eVc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"eVd" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"eVe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"eVf" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1) +"eVg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/east) +"eVh" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/landing_zone_1/no_mans_land) +"eVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eVk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eVl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eVm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eVn" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eVo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/oob/outdoors) +"eVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eVq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eVr" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eVs" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eVt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eVu" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eVv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eVw" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eVx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"eVy" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"eVz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/fsb_north) +"eVA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVD" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eVF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"eVG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/north) +"eVH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/north) +"eVI" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eVJ" = ( +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eVK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_west) +"eVL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north) +"eVM" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north) +"eVN" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north) +"eVO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/north) +"eVP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north) +"eVQ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/north) +"eVR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVS" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVV" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/colony_exterior/north_east) +"eVW" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eVX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/oob_area) +"eVY" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 11 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/underground/oob_area) +"eVZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob) +"eWa" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob) +"eWb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eWc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eWd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"eWe" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob) +"eWf" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob/outdoors) +"eWg" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eWh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eWi" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eWj" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob/outdoors) +"eWk" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob/outdoors) +"eWl" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eWm" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eWn" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/oob/outdoors) +"eWo" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eWp" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 7; + pixel_y = 11; + desc = "A traffic signal denoting the nearby presence of a military airbase."; + name = "Military airbase traffic signal" + }, +/obj/structure/sign/safety/west{ + pixel_y = 27; + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eWq" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eWr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eWs" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"eWt" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 7; + pixel_y = 11; + desc = "A traffic signal denoting the nearby presence of a military airbase."; + name = "Military airbase traffic signal" + }, +/obj/structure/sign/safety/west{ + pixel_y = 27; + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eWu" = ( +/turf/open/floor/prison/floor_marked, +/area/tyrargo/oob) +"eWv" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eWw" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eWx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/army_staging) +"eWy" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"eWz" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.79 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.8 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.78 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"eWA" = ( +/turf/open/asphalt/cement/cement14, +/area/tyrargo/oob/outdoors) +"eWB" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/oob/outdoors) +"eWC" = ( +/turf/open/asphalt/cement/cement15, +/area/tyrargo/oob/outdoors) +"eWD" = ( +/turf/open/asphalt/cement, +/area/tyrargo/oob/outdoors) +"eWE" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/oob/outdoors) +"eWF" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"eWG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/cargo_container/uscm/borodino/left, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"eWH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/cargo_container/uscm/borodino/mid, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"eWI" = ( +/obj/structure/cargo_container/uscm/right, +/turf/open/asphalt, +/area/tyrargo/landing_zone_2) +"eWJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob/outdoors) +"eWK" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"eWL" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"eWM" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/landing_zone_2) +"eWN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eWO" = ( +/obj/structure/flora/wood/stick3, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eWP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eWQ" = ( +/obj/structure/flora/grass/temperate{ + icon_state = "23" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eWR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eWS" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"eWT" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/fsb_south) +"eWU" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"eWV" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/north, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"eWW" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform_decoration/stone/tyrargo/east, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"eWX" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"eWY" = ( +/obj/item/explosive/mine/active/no_iff, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"eWZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"eXa" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/engineering/upper/external) +"eXb" = ( +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob/outdoors) +"eXc" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eXd" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eXe" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"eXf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"eXg" = ( +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/oob/outdoors) +"eXh" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/oob/outdoors) +"eXi" = ( +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"eXj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"eXk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eXl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eXm" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eXn" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eXo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eXp" = ( +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eXq" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = 4 + }, +/obj/structure/prop/hybrisa/vehicles/Meridian/Taxi{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eXr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eXs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eXt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eXu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXw" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXy" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXz" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXA" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eXB" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -4; + pixel_y = -2; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXC" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -8; + pixel_y = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = -1; + pixel_y = 10 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 9; + pixel_y = -24; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXD" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -12; + pixel_y = -5; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXE" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -16; + pixel_y = -5; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eXG" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/prop/vehicles/tank/apc{ + dir = 4; + pixel_x = -1; + pixel_y = -17 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eXJ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eXL" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eXM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"eXN" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/upper) +"eXO" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eXP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eXR" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eXS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"eXT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/brown{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eXU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eXV" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -4; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXW" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eXX" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXY" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 12; + pixel_y = 10 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 22; + pixel_y = -17; + layer = 2.9; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eXZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYa" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYc" = ( +/obj/structure/largecrate/random{ + layer = 3.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/tyrargo/large_tents/supply{ + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -1; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"eYe" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob/outdoors) +"eYf" = ( +/turf/open/floor/interior/wood, +/area/tyrargo/oob/outdoors) +"eYg" = ( +/obj/structure/prop/tyrargo/large_tents/medical, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYh" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = -21; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 2; + dir = 6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/oob/outdoors) +"eYj" = ( +/obj/structure/prop/hybrisa/misc/firebarreloff, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eYk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eYl" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 11; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eYm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eYn" = ( +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eYo" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eYp" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/obj/item/stack/sandbags, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"eYq" = ( +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eYs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = 2 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eYt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eYu" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"eYv" = ( +/obj/item/stack/barbed_wire, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eYw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eYx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eYy" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob/outdoors) +"eYz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/oob/outdoors) +"eYA" = ( +/obj/item/stack/sandbags, +/turf/open/floor/hybrisa/metal/grated/north, +/area/tyrargo/oob/outdoors) +"eYB" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eYC" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"eYD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"eYE" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"eYF" = ( +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"eYG" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob/outdoors) +"eYH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob/outdoors) +"eYI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/oob/outdoors) +"eYJ" = ( +/turf/open/floor/plating, +/area/tyrargo/oob/outdoors) +"eYK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"eYL" = ( +/obj/structure/sign/double/barsign{ + icon_state = "theredshirt" + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"eYM" = ( +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"eYN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"eYO" = ( +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"eYP" = ( +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"eYQ" = ( +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/no_mans_land) +"eYR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"eYS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/tyrargo/oob/outdoors) +"eYT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eYU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/oob/outdoors) +"eYV" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/metal/grated/east, +/area/tyrargo/oob/outdoors) +"eYW" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/oob/outdoors) +"eYX" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/sign/minefield/alt{ + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"eYY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/sign/minefield{ + pixel_y = 32 + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"eYZ" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZa" = ( +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZc" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_y = 5; + layer = 5.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob/outdoors) +"eZd" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -28; + pixel_y = 5; + layer = 5.8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob/outdoors) +"eZe" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/oob/outdoors) +"eZf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZg" = ( +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/oob/outdoors) +"eZh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/oob/outdoors) +"eZi" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob/outdoors) +"eZj" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZk" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZl" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob/outdoors) +"eZm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian/burst, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/almayer/plating, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/hybrisa/metal/zbrownfloor1/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian/burst, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/metal/stripe_red/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/hybrisa/metal/zbrownfloor1/northwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZQ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZR" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/metal/zbrownfloor1/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"eZY" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_streets/south_east) +"eZZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"faa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"fab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"fac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/rope{ + pixel_x = -13; + pixel_y = -16 + }, +/turf/open/hybrisa/street/cement1, +/area/tyrargo/oob/outdoors) +"fad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/hybrisa/metal/zbrownfloor1, +/area/tyrargo/indoors/sewer_treatment/ground) +"fae" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"faf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"fag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"fah" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"fai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"faj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"fak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/green2, +/area/tyrargo/indoors/mall) +"fal" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/mall) +"fam" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/tyrargo/indoors/mall) +"fan" = ( +/obj/item/weapon/gun/rifle/lmg/army, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob/outdoors) +"fao" = ( +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -26; + pixel_y = 8; + layer = 5.9 + }, +/obj/structure/flora/tree/dead/tree_1{ + pixel_x = -8; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"fap" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -26; + pixel_y = 7; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -5; + pixel_y = 7; + layer = 5.8 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"faq" = ( +/obj/structure/flora/tree/tyrargo, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"far" = ( +/obj/structure/flora/tree/dead/tree_6{ + pixel_x = -5; + pixel_y = 7; + layer = 4.6 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/east) +"fas" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/upper) +"fat" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/market/upper) +"fau" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/security/upper) +"fav" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/security/upper) +"faw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/security/upper) +"fax" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/oob/outdoors) +"fay" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/market/upper) +"faz" = ( +/turf/open_space, +/area/tyrargo/oob/outdoors) +"faA" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/oob/outdoors) +"faB" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/oob/outdoors) +"faC" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/oob/outdoors) +"faD" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/oob/outdoors) +"faE" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"faF" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/oob/outdoors) +"faG" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob/outdoors) +"faH" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/oob/outdoors) +"faI" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/oob/outdoors) +"faJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/oob/outdoors) +"faK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 8; + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/oob/outdoors) +"faL" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/oob/outdoors) +"faM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -2 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 8; + health = 50000; + maxhealth = 50000 + }, +/obj/structure/barricade/metal/plasteel{ + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/oob/outdoors) +"faN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -6; + pixel_y = -3; + layer = 2.98 + }, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/oob/outdoors) +"faO" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"faP" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"faQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/barricade/metal/plasteel{ + dir = 8; + health = 50000; + maxhealth = 50000 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 6; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/oob/outdoors) +"faR" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"faS" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"faT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/west) +"faU" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -13; + pixel_y = -16 + }, +/turf/open_space, +/area/tyrargo/oob/outdoors) +"faV" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/barricade/metal/plasteel{ + dir = 1; + health = 50000; + maxhealth = 50000 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -2; + pixel_y = -6 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 8; + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/oob/outdoors) +"faW" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -3; + pixel_x = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_y = 7; + pixel_x = 2 + }, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/oob/outdoors) +"faX" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/tyrargo/oob/outdoors) +"faZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -3; + dir = 4; + pixel_x = 2 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 8; + health = 50000; + maxhealth = 50000 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 1; + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/oob/outdoors) +"fba" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -7; + pixel_x = 2 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 1; + anchored = 1; + dir = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/metal/plasteel{ + dir = 1; + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/oob/outdoors) +"fbb" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -6; + dir = 4; + pixel_x = 2 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 1; + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/oob/outdoors) +"fbc" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -6; + dir = 1; + pixel_x = -4 + }, +/obj/structure/barricade/metal/plasteel{ + dir = 1; + health = 50000; + maxhealth = 50000 + }, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/oob/outdoors) +"fbd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"fbf" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"fbg" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/colony_streets/south_west) +"fbh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/engineering/upper/external) +"fbi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/engineering/upper/external) +"fbj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/engineering/upper/external) +"fbk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/engineering/upper/external) +"fbl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/engineering/upper) +"fbm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/engineering/upper/external) +"fbn" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/engineering/upper/external) +"fbo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/engineering/upper) +"fbp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/engineering/upper/external) +"fbq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/colony/engineering, +/area/tyrargo/indoors/engineering/upper) +"fbr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/upper) +"fbs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/engineering/upper/external) +"fbt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/engineering/upper/external) +"fbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/engineering/upper/external) +"fbv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/southwest, +/area/tyrargo/indoors/engineering/upper) +"fbw" = ( +/turf/open/floor/prison/yellow/southwest, +/area/tyrargo/indoors/engineering/upper) +"fbx" = ( +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"fby" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/powercell{ + pixel_x = -7 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/prison/yellowfull, +/area/tyrargo/indoors/engineering/upper) +"fbz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/mall/upper) +"fbA" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/mall/upper) +"fbB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/tyrargo/indoors/mall/upper) +"fbC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/mall/upper) +"fbD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/mall/upper) +"fbE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/tyrargo/indoors/mall/upper) +"fbH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/west, +/area/tyrargo/indoors/mall/upper) +"fbI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/mall/upper) +"fbJ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/engineering/upper/external) +"fbK" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/mall/upper) +"fbL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/darkbrown2/northeast, +/area/tyrargo/indoors/mall/upper) +"fbM" = ( +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/mall/upper) +"fbN" = ( +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/mall/upper) +"fbO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/mall/upper) +"fbP" = ( +/obj/structure/largecrate/supply/supplies, +/turf/open/floor/prison/darkbrown2/northwest, +/area/tyrargo/indoors/mall/upper) +"fbQ" = ( +/turf/open/floor/prison/blue/west, +/area/tyrargo/indoors/mall/upper) +"fbR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/mall/upper) +"fbS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/mall/upper) +"fbT" = ( +/turf/open/floor/prison/bluecorner/north, +/area/tyrargo/indoors/mall/upper) +"fbU" = ( +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/mall/upper) +"fbV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/mall/upper) +"fbW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/mall/upper) +"fbY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/engineering/upper/external) +"fbZ" = ( +/turf/open/floor/prison/bluecorner, +/area/tyrargo/indoors/mall/upper) +"fca" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/tyrargo/indoors/mall/upper) +"fcb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southwest, +/area/tyrargo/indoors/mall/upper) +"fcc" = ( +/turf/open/floor/prison/darkpurple2, +/area/tyrargo/indoors/mall/upper) +"fcd" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central_south) +"fce" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/tyrargo/indoors/mall/upper) +"fcf" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/tyrargo/indoors/mall/upper) +"fcg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/west, +/area/tyrargo/indoors/mall/upper) +"fch" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper) +"fci" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplecorners2/north, +/area/tyrargo/indoors/mall/upper) +"fcj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkpurple2/north, +/area/tyrargo/indoors/mall/upper) +"fck" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/tyrargo/indoors/mall/upper) +"fcl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/darkpurple2/northwest, +/area/tyrargo/indoors/mall/upper) +"fcm" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurple2/north, +/area/tyrargo/indoors/mall/upper) +"fcn" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/tyrargo/indoors/mall/upper) +"fco" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/mall/upper) +"fcp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplecorners2, +/area/tyrargo/indoors/mall/upper) +"fcq" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/blood, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"fcr" = ( +/obj/structure/largecrate/empty/secure{ + pixel_y = -11; + pixel_x = -5 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"fcs" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/mall/upper/external) +"fct" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/mall/upper/external) +"fcu" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcv" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/south_west) +"fcw" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcx" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/admin/upper/external) +"fcy" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcA" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcB" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcC" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_west) +"fcD" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 2 + }, +/turf/open/floor/plating, +/area/tyrargo/oob/outdoors) +"fcE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/colony_streets/north_east) +"fcF" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/plating, +/area/tyrargo/oob/outdoors) +"fcG" = ( +/turf/open/floor/prison/red/southwest, +/area/tyrargo/oob/outdoors) +"fcH" = ( +/turf/open/floor/prison/red, +/area/tyrargo/oob/outdoors) +"fcI" = ( +/turf/open/floor/prison/red/southeast, +/area/tyrargo/oob/outdoors) +"fcJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"fcK" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/admin/upper/external) +"fcL" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/admin/upper/external) +"fcM" = ( +/turf/open/floor/prison/red/northwest, +/area/tyrargo/oob/outdoors) +"fcN" = ( +/turf/open/floor/prison/red/north, +/area/tyrargo/oob/outdoors) +"fcO" = ( +/obj/structure/ladder/multiz, +/turf/open/floor/prison/red/northeast, +/area/tyrargo/oob/outdoors) +"fcP" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/colony_exterior/north) +"fcQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/oob/outdoors) +"fcR" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/oob/outdoors) +"fcS" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/oob/outdoors) +"fcT" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/oob/outdoors) +"fcU" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/oob/outdoors) +"fcV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"fcW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"fcX" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/sewer_treatment/upper) +"fcY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/sewer_treatment/upper) +"fcZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/sewer_treatment/upper/external) +"fda" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/west) +"fdb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"fdc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/south_west) +"fdd" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/mall/upper/external) +"fdA" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/m56d{ + pixel_x = -9; + pixel_y = -3; + current_rounds = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central_south) +"feh" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"feU" = ( +/obj/structure/barricade/hesco, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"fff" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrackempty, +/obj/item/storage/beer_pack, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"ffA" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -12; + pixel_x = 16 + }, +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"fgb" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"fgL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"fgZ" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/prop/hybrisa/vehicles/Meridian/Red{ + dir = 8; + pixel_y = -4; + pixel_x = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"fhd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 8; + anchored = 1; + layer = 2.8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/west) +"fhA" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"fim" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_ground) +"fiS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"fka" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + layer = 2.2 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"fkc" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"fmH" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/light_grey_top_right, +/area/tyrargo/indoors/saipan) +"fnR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"foM" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/blacklight{ + pixel_y = 33 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"foZ" = ( +/obj/structure/window_frame/wood, +/turf/open/floor/plating/wood_broken6, +/area/tyrargo/landing_zone_1/ceiling) +"frV" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"fsJ" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrack4, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"ftC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"fun" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_right_cap, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"fuo" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 5; + pixel_y = 20 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/apartment/north_upper) +"fut" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/landing_zone_1/north_trench) +"fuw" = ( +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"fwE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"fxo" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/oob/outdoors) +"fyy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/south_upper) +"fzB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"fAf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"fBS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"fCh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"fDK" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"fDR" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = -1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 2; + pixel_y = 14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"fGr" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper/external) +"fIx" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"fIR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"fJd" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"fJQ" = ( +/obj/structure/shuttle/part/dropship3/left_outer_wing_connector, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"fKg" = ( +/obj/item/weapon/gun/revolver/cmb, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"fKk" = ( +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/admin/ground) +"fLp" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/bottle/wine, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"fLH" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/mall/upper/external) +"fNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"fQa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/bunker/central_south) +"fQW" = ( +/obj/item/stack/sandbags/small_stack, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"fRo" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"fSA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/oob/outdoors) +"fTi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 11; + layer = 4 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/north_upper) +"fTs" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/tyrargo/oob) +"fTN" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"fTZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"fUa" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_1_1"; + pixel_y = -3; + dir = 10; + pixel_x = 5 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 6; + pixel_y = 6; + dir = 8; + anchored = 1 + }, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"fUA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"fVK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"fVN" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 7; + pixel_x = -3 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"fXj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"fXl" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"fXs" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/security/upper) +"fXz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"fXX" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"fZz" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"gag" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"gaK" = ( +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"gaY" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/engineering/ground) +"gbj" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"gbl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"ged" = ( +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2"; + pixel_y = -11; + pixel_x = -12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"gfr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -7; + layer = 2.9 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"ghS" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"giu" = ( +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/tyrargo/indoors/apartment/north_ground) +"gjw" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/north_ground) +"gjE" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"gkC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"gkG" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2; + layer = 5.94 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.93 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.92 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"glF" = ( +/obj/effect/decal/hybrisa/road{ + pixel_x = 11 + }, +/obj/effect/decal/hybrisa/road{ + pixel_x = 14 + }, +/obj/effect/decal/hybrisa/road{ + pixel_x = 17 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"gmO" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/closed/shuttle/dropship3{ + icon_state = "31" + }, +/area/tyrargo/indoors/saipan) +"gph" = ( +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/security/ground) +"gpR" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"grB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/apartment/south_upper) +"gsl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"gtp" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_ground) +"gvn" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"gwJ" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -18; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"gwX" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/storage/firstaid/adv/empty, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_ground) +"gzA" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"gAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"gBd" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/engineering/ground) +"gBD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + pixel_x = 32; + alpha = 220 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/tyrargo/indoors/apartment/north_ground) +"gCv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"gCO" = ( +/obj/item/weapon/twohanded/breacher/synth{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"gDx" = ( +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"gDM" = ( +/obj/structure/prop/vehicles/tank/longstreet/module/artillerymod/destroyed{ + pixel_y = -31; + pixel_x = -47 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"gDS" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"gEd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"gEt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_west) +"gEJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/oob) +"gFh" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"gFv" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"gFy" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 15; + anchored = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/apartment/south_upper) +"gGY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = -14; + layer = 3.01 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"gHt" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/toy/bikehorn, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_ground) +"gHx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"gHy" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/stack/medical/advanced/ointment, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"gHE" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasket/apples, +/turf/open/floor/strata/green3/west, +/area/tyrargo/indoors/market/ground) +"gIK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"gJt" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"gLb" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8; + icon_state = "vehicle_seat_destroyed" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"gLe" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"gLo" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -1; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"gNz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 15; + anchored = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"gOx" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -9; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"gRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"gSC" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"gTc" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrack2, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"gTM" = ( +/obj/structure/prop/vehicles/tank/arc/destroyed{ + dir = 4; + pixel_x = -12; + layer = 3.2 + }, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 60 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"gUQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"gVG" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"gXO" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"gYL" = ( +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"gZu" = ( +/obj/structure/prop/vehicles/aircraft/aircraft/usaf{ + layer = 6 + }, +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"gZR" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"hav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/humvee/destroyed{ + dir = 8; + pixel_y = -13; + pixel_x = -1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/west) +"hdh" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/red_warning_floor, +/area/tyrargo/indoors/sewer_treatment/ground) +"heY" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/plastic/breaching_charge{ + pixel_y = -2 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/engineering/ground) +"hgs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"hjg" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/tyrargo/underground/sewer/south) +"hjr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"hkc" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"hkG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"hkX" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 3; + pixel_y = 14 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -5; + pixel_y = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"hmM" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/plating/wood_broken5, +/area/tyrargo/landing_zone_1/ceiling) +"hnP" = ( +/obj/item/prop{ + desc = "A primary armament cannon magazine"; + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/USCM/vehicles.dmi'; + icon_state = "ltbcannon_0"; + name = "LTB Cannon Magazine"; + pixel_x = 9; + pixel_y = -11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"hnS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shuttle/part/dropship3/transparent/left_outer_inner_wing{ + density = 0 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/east) +"hoh" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/apartment) +"hoj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"hoV" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/museum_central) +"hpg" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"hqn" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/admin/upper) +"hqo" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"hri" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"hsy" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/power_cell, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"hsz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"hte" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"htI" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"htK" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"hxw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"hxN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/flag/plantable/ua{ + pixel_y = 17 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -2; + pixel_y = 5; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"hzN" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"hzQ" = ( +/obj/structure/shuttle/part/dropship3/lower_left_wall, +/turf/open_space, +/area/tyrargo/indoors/saipan) +"hzU" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"hBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/truck{ + pixel_x = 2 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"hCg" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "leafybush_2" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"hCz" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + icon_state = "pointybush_4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"hDc" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob/outdoors) +"hFN" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"hFZ" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 8; + anchored = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central_south) +"hGH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/hardhat, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"hGP" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -12; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"hLu" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/item/ammo_casing/shell, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"hLy" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"hLM" = ( +/obj/effect/decal/siding, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/engineering/ground) +"hMs" = ( +/turf/open/hybrisa/street/roadlines4, +/area/tyrargo/oob/outdoors) +"hNd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"hNj" = ( +/turf/open/floor/coagulation/icon5_8, +/area/tyrargo/indoors/sewer_treatment/lower) +"hNm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16; + pixel_x = -12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"hPc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"hPr" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"hPJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/obj/item/ammo_magazine/rifle/lmg/heap{ + current_rounds = 0 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"hPM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"hPS" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_ground) +"hQA" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"hSM" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/mall/upper/external) +"hVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, +/area/tyrargo/indoors/apartment/north_ground) +"hVw" = ( +/turf/open/floor/prison/red/north, +/area/tyrargo/indoors/admin/upper) +"hXV" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/central) +"hYh" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"hYu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"hZH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"icu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"icU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"ida" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_ground) +"ide" = ( +/obj/structure/shuttle/part/dropship3/transparent/right_inner_bottom_wing, +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/museum_storage/upper) +"ido" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"idr" = ( +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_ground) +"idt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"idN" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/indoors/engineering/ground) +"iez" = ( +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/oob) +"ifn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/reagent_container/blood/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"ifF" = ( +/obj/structure/barricade/hesco, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"igi" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ijY" = ( +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"ikh" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -12; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"imz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"inl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/indoors/comms/ground) +"ipR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_east) +"iqA" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_upper) +"iqV" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"iqX" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_upper) +"its" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"iun" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ivt" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"iwY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"izN" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"iCi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north) +"iCj" = ( +/obj/structure/prop/hybrisa/misc/stoneplanterseats{ + dir = 1; + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"iCn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"iCp" = ( +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/admin/ground) +"iES" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"iFy" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/oob/outdoors) +"iFB" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal2"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"iGz" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"iGC" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"iGN" = ( +/turf/closed/wall/r_wall/bunker/floodgate, +/area/tyrargo/oob) +"iHh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"iHj" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/engineering/ground) +"iHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"iKu" = ( +/obj/item/prop/colony/used_flare, +/obj/item/trash/uscm_mre{ + pixel_x = 12; + pixel_y = -7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"iKI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 6; + pixel_y = 10; + layer = 2.1 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"iLv" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"iLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -2; + pixel_x = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"iMQ" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north_west) +"iNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"iOu" = ( +/obj/item/ammo_casing/bullet, +/obj/item/stack/medical/splint/random_amount{ + pixel_y = -2 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"iOO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_11"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"iPc" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_left_cap, +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"iQB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"iRc" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/oob/outdoors) +"iRh" = ( +/obj/structure/shuttle/part/dropship3/transparent/outer_right_weapons, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"iRr" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"iUP" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"iUQ" = ( +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/pwine{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"iUX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/structure/cargo_container/horizontal/blue/top{ + layer = 3.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"iVJ" = ( +/obj/structure/barricade/handrail/hybrisa/handrail, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"iWr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/sewer_treatment/upper) +"iWt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/blocker/water, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"iZG" = ( +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"iZQ" = ( +/obj/structure/desertdam/decals/road_stop, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"jab" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"jaE" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -1; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/stack/barbed_wire, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"jbt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"jcp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/apartment/north_upper) +"jcS" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasket/melons, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"jez" = ( +/turf/closed/wall/hybrisa/marhsalls/reinforced, +/area/tyrargo/indoors/security/ground) +"jeT" = ( +/obj/structure/shuttle/part/dropship3/left_inner_wing_connector, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"jhg" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/south_upper) +"jiw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"jjm" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_x = 5 + }, +/obj/item/storage/box/guncase/m41a{ + pixel_y = 5; + pixel_x = 6 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"jkB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/engineering/upper) +"jkE" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"jmF" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"jpb" = ( +/obj/structure/prop/hybrisa/misc/fire/fire1{ + pixel_x = -20; + pixel_y = 9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"jpq" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/apartment) +"jsW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"jtu" = ( +/obj/item/prop{ + desc = "A primary armament cannon magazine"; + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/USCM/vehicles.dmi'; + icon_state = "ltbcannon_1"; + name = "LTB Cannon Magazine"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"jtQ" = ( +/obj/structure/sign/poster/kellandmining{ + pixel_y = 32; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"jxl" = ( +/turf/open/floor/coagulation/icon2_0, +/area/tyrargo/indoors/sewer_treatment/lower) +"jxJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/north_ground) +"jxT" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/colony_streets/west) +"jyh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12; + pixel_x = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"jyC" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"jzz" = ( +/obj/structure/shuttle/part/dropship3/transparent/nose_top_right, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"jzN" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts_road/west) +"jAh" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"jAG" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"jBL" = ( +/obj/structure/surface/table/reinforced/cloth, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"jDG" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"jEF" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"jGc" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + layer = 2.1; + pixel_y = -7 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -8; + pixel_y = 7; + layer = 2.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/item/stack/medical/splint/random_amount{ + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"jGd" = ( +/obj/structure/window_frame/wood, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"jGO" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/mall/upper/external) +"jJk" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"jKx" = ( +/obj/structure/closet/bodybag, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/south_ground) +"jLf" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/south_ground) +"jLJ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -5; + pixel_y = -10 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"jMZ" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"jOp" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/tyrargo/indoors/apartment/north_ground) +"jOW" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/underground/power_substation) +"jQS" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/closed/wall/hybrisa/colony, +/area/tyrargo/oob/outdoors) +"jRZ" = ( +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"jSi" = ( +/obj/structure/shuttle/part/dropship3/transparent/nose_top_left, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"jSV" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 3; + pixel_y = 20; + layer = 2.9 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_upper) +"jTE" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"jUm" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"jVj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"jVy" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"jVP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"jXd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"kaa" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/south_upper) +"kbp" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"kbv" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/turf/closed/shuttle/dropship3{ + icon_state = "19" + }, +/area/tyrargo/indoors/saipan) +"kbO" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/landing_zone_1/no_mans_land) +"kbV" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/west, +/area/tyrargo/underground/sewer/south) +"kcv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/obj/item/storage/briefcase, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_upper) +"kdm" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 15; + anchored = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -5; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"kfi" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/tyrargo/indoors/apartment/north_ground) +"kfn" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"kfw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"kgb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/tyrargo/outdoors/colony_streets/north_west) +"kgq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"kgu" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/north_ground) +"khW" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"kiU" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"kjp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16; + pixel_x = 12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"kkG" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"kmN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"knc" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"koc" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"koq" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 20; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/bunker/central_south) +"koN" = ( +/obj/structure/curtain/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"kpZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"kqH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"krq" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"krt" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"kuo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"kuy" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/apartment/north_upper) +"kvB" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"kvK" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = -14; + layer = 3.01 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"kvX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"kwq" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -12; + pixel_x = -10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/colony_streets/west) +"kyj" = ( +/obj/structure/flora/tree/dead/tree_3{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/structure/flora/tree/dead/tree_2{ + pixel_y = -1; + pixel_x = -25 + }, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"kAk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"kAA" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/north) +"kAO" = ( +/obj/structure/closet/crate/explosives{ + pixel_y = 4 + }, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/he, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"kBj" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/sewer_treatment/upper) +"kCJ" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/west) +"kDt" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/mall/upper/external) +"kDQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"kDW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"kEb" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"kEm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"kEn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel/hybrisa/grate, +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_west) +"kFO" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -9; + pixel_x = 17 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -3; + pixel_x = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"kGl" = ( +/obj/structure/window_frame/strata, +/obj/item/shard, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"kGV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/west) +"kGY" = ( +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/admin/ground) +"kJu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/mall) +"kJZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"kLc" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/south_east) +"kML" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"kQA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"kSj" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/north) +"kSt" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"kSy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north_west) +"kSP" = ( +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"kTK" = ( +/obj/effect/decal/siding, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"kTL" = ( +/obj/effect/decal/siding, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"kUf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/tyrargo/indoors/apartment/north_ground) +"kUH" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_x = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"kUK" = ( +/obj/structure/bed/chair/wood/wings, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"kVB" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/bed/bedroll{ + dir = 9; + layer = 3.0; + pixel_x = 10; + pixel_y = -9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"kWQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/indoors/admin/ground) +"kYN" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"kZc" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"lbr" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret/destroyed{ + dir = 8; + pixel_x = -15; + pixel_y = -51 + }, +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb/destroyed{ + pixel_y = -51; + dir = 8; + pixel_x = -47 + }, +/obj/structure/prop/vehicles/tank/longstreet/secondary/m56cupola{ + dir = 8; + pixel_y = -69; + pixel_x = -30 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"lbD" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 8; + pixel_y = -12 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"lbE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"lbR" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/security/ground) +"lcg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/indoors/admin/ground) +"lcu" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 8; + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north_south) +"ldl" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"leh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"lgd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/tyrargo/indoors/apartment/south_upper) +"lhQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"ljD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + pixel_x = -6 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalertblank{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = -32; + pixel_y = 16 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/engineering/ground) +"ljT" = ( +/obj/structure/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/tyrargo/underground/museum_carpark) +"lkt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_east) +"lkA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"llY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_ground) +"lnr" = ( +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/engineering/upper) +"lnt" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"loy" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"lph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"lpj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"lrF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"lse" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"lsj" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"lsF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/power_substation) +"lvo" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"lxz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"lAb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_magazine/rifle/m41aMK1/heap{ + current_rounds = 0; + pixel_y = 11; + pixel_x = 2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"lBd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = -2 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/outdoors/outskirts_road/central) +"lCs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 5 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_ground) +"lCS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"lEx" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = 1; + pixel_x = -4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = 4; + pixel_y = 11; + layer = 2.99 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"lED" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/hybrisa_auto_turf/layer3, +/area/tyrargo/oob) +"lFW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/north_upper) +"lHo" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"lHM" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/stripe_red/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"lIP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"lJn" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"lJr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"lKk" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/north_ground) +"lNE" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + pixel_x = 10; + dir = 6 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_corner/west, +/area/tyrargo/indoors/engineering/ground) +"lNS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"lNY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"lOh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/indoors/apartment/south_upper) +"lOr" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob) +"lPX" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/mall/upper/external) +"lQs" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/oob/outdoors) +"lRy" = ( +/turf/open/floor/strata/orange_icorner, +/area/tyrargo/indoors/admin/upper) +"lRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"lSe" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/tyrargo/indoors/sewer_treatment/upper) +"lSi" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/north_ground) +"lSo" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"lSF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"lSW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"lTm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"lVn" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"lXq" = ( +/obj/structure/largecrate/empty/case/double{ + pixel_x = -1; + pixel_y = -13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"lXK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/structure/largecrate{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"lXP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north_west) +"lYD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"may" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"mbh" = ( +/obj/effect/decal/siding, +/obj/item/device/multitool{ + pixel_x = -9; + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/engineering/ground) +"mbk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -21; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/tyrargo/indoors/apartment/north_ground) +"mcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = -14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"mcG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/ammo_magazine/revolver/mateba/highimpact{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/mateba/highimpact{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/mateba/highimpact{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/item/clothing/head/beret/marine/commander/black/army{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"mdz" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/security/ground) +"mdH" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/green/west, +/area/tyrargo/underground/sewer/south) +"meo" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"meI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"mfL" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/security/upper) +"mgE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"mgY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/tyrargo/indoors/museum_storage/ground) +"mhb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"mhe" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"mhL" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -2; + pixel_y = -14 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_upper) +"mjT" = ( +/obj/structure/machinery/iv_drip, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"mjU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"mlv" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"mlC" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = 7 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"mlH" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"mmu" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/east_trench) +"mmz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"mpl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/outskirts/fsb_north) +"mra" = ( +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"mrW" = ( +/obj/structure/prop/tyrargo/large_tents/small_closed/back, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"msB" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 6; + pixel_x = 11 + }, +/obj/item/reagent_container/blood/empty, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/fsb_north) +"msI" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/north_ground) +"mtB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/heap/empty, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"mwH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"mxJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid, +/turf/open/floor/corsat/marked, +/area/tyrargo/underground/power_substation) +"mxN" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"mzv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"mAQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"mBF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"mBM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"mBN" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + light_color = "#850000"; + light_on = 1; + light_range = 1; + light_power = 2; + pixel_y = -31 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/darkbrown2/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"mBO" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"mBS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"mDw" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"mDC" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"mDR" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"mEC" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/west) +"mEH" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"mES" = ( +/obj/structure/machinery/colony_floodlight/traffic/alt{ + pixel_x = 4; + pixel_y = 12; + dir = 1 + }, +/turf/open/hybrisa/street/sidewalk/southwest, +/area/tyrargo/outdoors/colony_streets/south_east) +"mFy" = ( +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"mFT" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/south_west) +"mFV" = ( +/obj/structure/shuttle/part/dropship3/bottom_right_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 3 + }, +/turf/open/floor/prison/floorscorched1, +/area/tyrargo/indoors/museum_storage/upper) +"mFX" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"mHt" = ( +/obj/structure/bed/bedroll{ + dir = 8 + }, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"mIH" = ( +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/engineering/upper) +"mKj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/south_west) +"mKl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/mre/empty, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"mKx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"mKL" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"mMX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/indoors/apartment/south_ground) +"mOi" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"mOM" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"mOU" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"mOW" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/east, +/area/tyrargo/indoors/security/ground) +"mRr" = ( +/obj/structure/largecrate/random/barrel/brown{ + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"mRz" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/vehicles/tank/apc/destroyed{ + dir = 8; + pixel_y = -12 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"mSf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"mUd" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -5 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"mUr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_upper) +"mWj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"mYw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"mYB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/tyrargo/indoors/apartment/south_ground) +"mZM" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/sewer_treatment/upper) +"ncl" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ncD" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/colony_exterior/west) +"ncQ" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_ground) +"ndi" = ( +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"ndk" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/north) +"ndL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 6; + pixel_y = 6; + dir = 8; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"new" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"nfT" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"ngP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = -6; + pixel_x = -1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"nhC" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"niM" = ( +/obj/item/stack/sandbags/small_stack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"niW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"njq" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"njD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12; + pixel_x = -12 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"njV" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = -1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 2; + pixel_y = 14 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/west) +"nkI" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"nlZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"nnT" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/upper) +"non" = ( +/turf/closed/wall/hybrisa/marhsalls, +/area/tyrargo/indoors/security/ground) +"noy" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/north_ground) +"noS" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_upper) +"nqs" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"nqK" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"nri" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"nrS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 13; + pixel_y = -2; + layer = 2.8 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"nsL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"ntB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"nwm" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/indoors/apartment/south_upper) +"nwB" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"nxb" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"nyL" = ( +/obj/structure/bed/hybrisa/bunkbed4, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"nzd" = ( +/obj/item/prop/colony/used_flare, +/turf/open/hybrisa/street/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"nAb" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_ground) +"nAT" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 9 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/north_ground) +"nAU" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"nBc" = ( +/obj/effect/vehicle_spawner/van/decrepit{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"nCp" = ( +/turf/open/floor/prison/yellow/southeast, +/area/tyrargo/indoors/admin/ground) +"nCU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/west) +"nDe" = ( +/obj/effect/decal/siding, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -10 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"nEa" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + layer = 2.98; + pixel_y = -8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"nEL" = ( +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = -9; + pixel_y = 2; + dir = 4; + layer = 4.1 + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"nFb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"nFo" = ( +/obj/structure/window_frame/wood, +/turf/open/floor/plating/wood_broken5, +/area/tyrargo/landing_zone_1/ceiling) +"nFU" = ( +/obj/structure/closet/bodybag, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/south_ground) +"nIP" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central) +"nIV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"nJl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/truck{ + dir = 8; + pixel_y = -29; + pixel_x = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"nJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"nJL" = ( +/turf/open/floor/prison/darkbrown2, +/area/tyrargo/indoors/sewer_treatment/ground) +"nKg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"nKt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/north_ground) +"nKS" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/engineering/ground) +"nLj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north_west) +"nLk" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"nOb" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"nOY" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/north_ground) +"nQz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"nRS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"nSi" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/largecrate/random/case/double{ + pixel_y = 11 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"nSB" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"nSY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"nTh" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"nTN" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/bush/snow{ + pixel_y = -11; + pixel_x = -12 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"nUw" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/WeylandYutani{ + icon_state = "meridian_wy_damage_5"; + health = 250; + layer = 5.1; + pixel_y = -4; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_east) +"nUR" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_ground) +"nVD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"nVF" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/southwest, +/area/tyrargo/indoors/sewer_treatment/ground) +"nWO" = ( +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 45 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/almayer/blackcorner/east, +/area/tyrargo/indoors/bunker/central_south) +"nWX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + icon_state = "pointybush_4" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"nXP" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"nYj" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.0; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"nYw" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"nYG" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"nYO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"nZr" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/ground) +"oaz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"obm" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2, +/area/tyrargo/indoors/bunker/central_south) +"obB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/indoors/engineering/ground) +"obI" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"obZ" = ( +/obj/structure/bed/hybrisa/dingy{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"ock" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -5; + pixel_y = 5; + layer = 2.9 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"ocO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + id = null; + explo_proof = 1; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/oob) +"ocS" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/obj/item/storage/backpack/molle/backpack/army, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"odK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"oee" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/underground/power_substation) +"oek" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"ofi" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/item/weapon/gun/shotgun/pump/m37a, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ofF" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/indoors/apartment/north_upper) +"oic" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/south_upper) +"ois" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/structure/prop/hybrisa/misc/trash/green, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"oiz" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_y = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/colony_streets/north) +"oiA" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/apartment/north_upper) +"ojt" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ojB" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/west) +"oks" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700" + }, +/turf/closed/shuttle/dropship3{ + icon_state = "14" + }, +/area/tyrargo/indoors/saipan) +"okz" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/apartment/south_upper) +"olx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"omA" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"omL" = ( +/turf/open/floor/plating/wood_broken6, +/area/tyrargo/landing_zone_1/ceiling) +"onP" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_east) +"ooW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"oqd" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5; + layer = 2.97 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_ground) +"osH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"osT" = ( +/obj/structure/flora/tree/dead/tree_4{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"otB" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -3; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"ouv" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"ovJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"owc" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"oww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_ground) +"oyg" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/north) +"ozG" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"oAn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/power_substation) +"oAw" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = -32; + pixel_x = -15 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"oBu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa{ + icon_state = "couch_hori3" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"oBD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/south_west) +"oDa" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/power_sewer) +"oDA" = ( +/obj/item/storage/firstaid/adv/empty, +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_upper) +"oDR" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"oEf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"oFq" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount{ + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"oFM" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_y = -14; + layer = 3.01 + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"oGc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"oGw" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"oGQ" = ( +/obj/structure/shuttle/part/dropship3/nose_front_right, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"oHb" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkbrown2/northeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"oHl" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"oHE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 2; + pixel_y = 24 + }, +/obj/structure/cargo_container/grant/right, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"oHQ" = ( +/obj/structure/shuttle/part/dropship3/transparent/right_outer_bottom_wing, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"oHW" = ( +/turf/open/floor/strata/green4/north, +/area/tyrargo/indoors/market/ground) +"oIx" = ( +/turf/open/hybrisa/street/sidewalk/southeast, +/area/tyrargo/outdoors/colony_streets/south_east) +"oJk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 16; + pixel_x = 9 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_upper) +"oJo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"oJT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"oKO" = ( +/obj/structure/platform_decoration/stone/tyrargo/east, +/obj/structure/platform_decoration/stone/tyrargo/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"oLe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"oMv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"oNn" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"oNT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"oNX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"oPc" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/metal/zbrownfloor1/east, +/area/tyrargo/indoors/engineering/ground) +"oPK" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"oPL" = ( +/turf/open/asphalt/cement/cement15, +/area/tyrargo/oob) +"oRa" = ( +/obj/structure/closet/crate/explosives{ + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"oRj" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/tyrargo/indoors/comms/ground) +"oRD" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"oSA" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/landing_zone_2) +"oUZ" = ( +/obj/structure/bed/hybrisa/bunkbed4{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"oVl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"oVQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/north, +/area/tyrargo/indoors/apartment/north_upper) +"oWw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"oWV" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"oXy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"oXE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/power_apart) +"oXJ" = ( +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/tyrargo/indoors/apartment/north_ground) +"oYV" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"oZS" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"pbk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"pbo" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/tyrargo/indoors/engineering/upper) +"pdO" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.9; + pixel_y = -17; + pixel_x = -4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 4; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_y = -10; + layer = 2.7; + pixel_x = 11 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -7 + }, +/obj/item/ammo_casing/bullet, +/obj/structure/closet/crate/ammo{ + name = "heap munitions crate"; + desc = "Crate filled with heap ammo. You know what to do with it."; + layer = 3.2; + pixel_y = 3; + pixel_x = -20 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"pfT" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"phm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/stack/medical/bruise_pack/random_amount{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"piV" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/underground/power_substation) +"plc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/mob/living/simple_animal/small/mouse/rat/black, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"pnu" = ( +/obj/effect/decal/siding, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 5; + pixel_y = 20; + layer = 2.98 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ppc" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"ppx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"pqR" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/hybrisa/street/sidewalkfull, +/area/tyrargo/outdoors/colony_streets/south_west) +"psN" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/rock{ + density = 0 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/obj/structure/platform_decoration/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"ptu" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/south_upper) +"puH" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"pvn" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 26; + pixel_y = 11 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = 12; + pixel_x = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -8; + pixel_y = -11; + layer = 2.9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 9; + pixel_y = -12 + }, +/obj/effect/landmark/map_item, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"pvN" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/briefcase{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"pwl" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -7; + pixel_y = -14; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"pxI" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"pyQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -13; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"pyZ" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 5; + pixel_y = 5; + layer = 2.9 + }, +/obj/structure/barricade/deployable, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"pzE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/south_ground) +"pAg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"pBc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/north) +"pBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/outdoors/colony_streets/south_west) +"pCP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = 9; + pixel_y = -2 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 9; + anchored = 1; + layer = 3.8; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/apartment/north_upper) +"pDq" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"pDQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/north_upper) +"pEp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"pEv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"pEP" = ( +/obj/structure/shuttle/part/dropship3/transparent/lower_right_wing, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/museum_storage/ground) +"pET" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"pGg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"pGz" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"pHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/heap/empty, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"pHo" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6; + pixel_x = -7 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"pKw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = -8; + dir = 4; + layer = 4.1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"pKx" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_left_exhaust, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"pKS" = ( +/obj/structure/shuttle/part/dropship3/bottom_left_wall, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"pLW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"pMa" = ( +/obj/structure/largecrate/random, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"pMc" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"pNW" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -63; + pixel_y = 11; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north) +"pOc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"pQM" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/oob) +"pRI" = ( +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"pRQ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"pSi" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"pVd" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/underground/bunker/south) +"pVQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/ground) +"pYq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/tyrargo/indoors/engineering/ground) +"qaN" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_right_exhaust, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"qaZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"qbB" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/south_ground) +"qbN" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"qcb" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"qcc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"qck" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/security/upper) +"qcB" = ( +/obj/structure/stairs, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/apartment/south_ground) +"qdh" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/tyrargo/indoors/saipan) +"qek" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"qeF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"qhi" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/tyrargo/indoors/admin/ground) +"qia" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 10; + pixel_y = 18; + layer = 2.8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"qib" = ( +/obj/structure/bed/hybrisa/bunkbed1{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/north_upper) +"qix" = ( +/obj/structure/prop/vehicles/aircraft/vtol, +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/effect/decal/hybrisa/grate, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"qja" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"qjM" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"qkg" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"qkB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"qkI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"qlM" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/east) +"qng" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 6 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"qoY" = ( +/turf/closed/wall/hybrisa/marhsalls/unmeltable, +/area/tyrargo/oob) +"qpc" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"qpA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"qpF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"qrA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"qsu" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"qtr" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/lmg, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"qvh" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/underground/sewer/south) +"qvt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"qvB" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"qvI" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"qwE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"qxT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"qyh" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"qyP" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + pixel_x = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"qyX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"qze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north_west) +"qzC" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"qAO" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"qBv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilered, +/area/tyrargo/indoors/apartment/south_upper) +"qBR" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"qDj" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"qEB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2) +"qEX" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"qFc" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/engineering/ground) +"qFf" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"qFp" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"qFH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"qGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"qGk" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/south_east, +/area/tyrargo/outdoors/colony_exterior/south_west) +"qGs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"qHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"qHT" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"qNk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 7; + pixel_x = -3; + layer = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_ground) +"qNt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"qOa" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 12; + layer = 5.94 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"qPF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"qPG" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"qRe" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_1_1"; + pixel_y = -2; + dir = 10; + pixel_x = 7 + }, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"qRA" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/oob/outdoors) +"qUT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"qVn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"qVq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/north_ground) +"qVt" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/oob) +"qWy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"qWJ" = ( +/obj/structure/bed/bedroll{ + pixel_x = -24 + }, +/obj/structure/bed/bedroll{ + dir = 8; + pixel_x = 20; + pixel_y = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"qWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"qWZ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/curtain/red, +/obj/structure/barricade/metal{ + dir = 8; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/tyrargo/indoors/comms/ground) +"qYN" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + layer = 3.8; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"rbr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/south_upper) +"reM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"reP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -12; + pixel_y = -8; + layer = 2.9 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"rhn" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + layer = 2.98 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"rjf" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 3; + pixel_x = -10 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"rjp" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/south, +/area/tyrargo/indoors/apartment/north_upper) +"rkj" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = -18; + pixel_y = -17 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/south_upper) +"rlw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ + req_one_access = "102;104;106" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/comms/ground) +"rlX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/north_upper) +"rlZ" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/engineering/ground) +"rmD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"rnc" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/colony_exterior/west) +"rnm" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"rnG" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"rof" = ( +/obj/structure/shuttle/part/dropship3/transparent/lower_left_wing, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"rpc" = ( +/obj/structure/bed/bedroll{ + pixel_y = 25; + pixel_x = 16 + }, +/obj/structure/prop/tyrargo/large_tents/small, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"rpB" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"rru" = ( +/obj/structure/window_frame/wood, +/turf/open/floor/plating/wood_broken3, +/area/tyrargo/landing_zone_1/ceiling) +"rrT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"rse" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"rsK" = ( +/obj/effect/decal/siding, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"rsN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"rtB" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_ground) +"rtR" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_upper) +"ruj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 9; + layer = 4 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"rus" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2 - USASF Airbase Anderson" + }, +/turf/open/floor/plating, +/area/tyrargo/landing_zone_2) +"rvh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/west) +"rvF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"rwL" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"rxU" = ( +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"ryz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"ryO" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -9 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"rAl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"rAB" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"rAQ" = ( +/obj/item/ammo_casing/shell, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"rBq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"rBt" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"rCw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"rDi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"rDu" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"rDv" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"rDA" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/museum_storage/upper) +"rEt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_12"; + pixel_x = -4; + layer = 3.6; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_ground) +"rEA" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = 4 + }, +/obj/effect/blocker/water, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/underground/sewer/south) +"rFd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"rFN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"rFS" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"rHF" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/colony_exterior/south_east) +"rIB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/east, +/area/tyrargo/indoors/bunker/central_south) +"rJT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/sewer/south) +"rKc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowcorners2, +/area/tyrargo/indoors/engineering/ground) +"rKe" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_1) +"rKg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = -16 + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"rKn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"rKO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"rMf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"rMq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"rMH" = ( +/obj/item/storage/belt/gun/mortarbelt{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"rNA" = ( +/obj/item/reagent_container/food/drinks/flask/marine/army, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"rPp" = ( +/obj/structure/shuttle/part/dropship3/transparent/outer_left_weapons, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"rPT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"rRS" = ( +/obj/structure/prop/vehicles/tank/longstreet/concussive/destroyed{ + pixel_x = 17 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"rSp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/wood_broken5, +/area/tyrargo/landing_zone_1/ceiling) +"rSG" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"rTf" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"rTG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"rTO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/apartment/north_ground) +"rVH" = ( +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/security/ground) +"rXO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -7; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = -1; + pixel_y = 11; + dir = 4; + anchored = 1; + layer = 4.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"rYh" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"rYs" = ( +/obj/effect/decal/siding, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"rYz" = ( +/obj/structure/window_frame/wood, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"rYL" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 16; + layer = 2.98; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"saN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"saO" = ( +/obj/structure/prop/tyrargo/large_tents/medical, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"sbx" = ( +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"sdM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/south_upper) +"seC" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"seU" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 5; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/outdoors/colony_streets/north_west) +"sfh" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"sfx" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 8; + anchored = 1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north) +"sfz" = ( +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"shl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/apc/destroyed{ + dir = 8; + pixel_y = -13 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/gararge/ground) +"siO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 24 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -14; + pixel_x = -8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0"; + color = "#a98c7c"; + pixel_x = -1 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = -16; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"slG" = ( +/obj/item/prop/colony/used_flare, +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"soT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/tyrargo/outdoors/colony_streets/north_west) +"spk" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_2) +"spq" = ( +/obj/structure/floodgate, +/turf/closed/wall/r_wall/bunker/floodgate, +/area/tyrargo/oob) +"spt" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"sqe" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/space) +"srb" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/engineering/ground) +"srB" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"srO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"suK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/north_upper) +"sva" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/clothing/head/helmet/marine/rto/army{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"swb" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/storage/box/mre, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"swU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"syq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/tyrargo/indoors/apartment/south_ground) +"syW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/zbrownfloor_corner, +/area/tyrargo/indoors/sewer_treatment/ground) +"szS" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/west) +"sCf" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/south_west) +"sDW" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_exterior/south_east) +"sEZ" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"sFn" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"sGF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_2/road) +"sGT" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"sHd" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/hybrisa/street/sidewalk/northeast, +/area/tyrargo/oob/outdoors) +"sHR" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_left_exhaust, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/sewer/south) +"sIg" = ( +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"sIz" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/indoors/sewer_treatment/ground) +"sJd" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"sJt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/south_west) +"sKd" = ( +/turf/open/auto_turf/snow/brown_base/layer4, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"sLD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"sMj" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"sMo" = ( +/obj/structure/urinal{ + dir = 8; + pixel_y = -1; + pixel_x = 35 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/comms/ground) +"sNt" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/tyrargo/indoors/security/ground) +"sNv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 20; + pixel_x = -8; + layer = 2.9 + }, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_upper) +"sOE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"sOS" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/weapon/gun/launcher/grenade/m81/m85a1{ + pixel_y = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"sPH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"sPJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"sQi" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"sQQ" = ( +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"sRw" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/apartment/north_upper) +"sSu" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/apartment/north_upper) +"sUa" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14 + }, +/turf/closed/shuttle/dropship3{ + icon_state = "25" + }, +/area/tyrargo/indoors/saipan) +"sVu" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"sWo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"sWA" = ( +/obj/structure/prop/hybrisa/supermart/rack/longrack1, +/turf/open/floor/strata/green3, +/area/tyrargo/indoors/market/ground) +"sXp" = ( +/obj/structure/shuttle/part/dropship3/lower_right_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 22; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/saipan) +"sXB" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/tyrargo/indoors/sewer_treatment/ground) +"sYN" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_y = 8; + pixel_x = 5 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/north_upper) +"sZl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"tae" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -4; + pixel_x = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"tah" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2/east_trench) +"tam" = ( +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_upper) +"tds" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"tdt" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"tes" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"tfw" = ( +/obj/structure/dispenser, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/metal/zbrownfloor_corner/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"tfz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"tfR" = ( +/turf/open/floor/prison/bluecorner/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"tgN" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door_reinforced, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/museum_storage/upper) +"tho" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"tjt" = ( +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/south_upper) +"tjP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"tkl" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/apartment/south_ground) +"tkG" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/west_trench) +"tkU" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison, +/area/tyrargo/indoors/sewer_treatment/ground) +"tlx" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 3; + pixel_y = -2; + dir = 4; + anchored = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"tmc" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"tmN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"tnr" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2, +/area/tyrargo/indoors/bunker/central_south) +"tnG" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"tor" = ( +/turf/open/floor/prison/red/southeast, +/area/tyrargo/indoors/admin/upper) +"toI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/south_west) +"tph" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + pixel_y = -10; + pixel_x = 8; + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 5; + pixel_y = 14; + dir = 1; + anchored = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_1/north_trench) +"tpL" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"tpX" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/item/stack/sheet/metal, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"tqe" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"tqh" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat, +/area/tyrargo/indoors/engineering/ground) +"tqO" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/underground/power_substation) +"tro" = ( +/turf/open/floor/corsat/green, +/area/tyrargo/underground/bunker/south) +"trF" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/tyrargo/indoors/apartment/south_upper) +"tsf" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/almayer/tcomms, +/area/tyrargo/indoors/comms/ground) +"tsg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/security/ground) +"tsl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating_stripedcorner/east, +/area/tyrargo/indoors/comms/ground) +"tso" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -12; + pixel_y = -23; + layer = 2.8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"tvN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/road/roadmiddle, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"twg" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/oob) +"twh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"twj" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/darkbrown2/east, +/area/tyrargo/underground/sewer/south) +"twT" = ( +/obj/item/stack/sandbags/small_stack, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"txL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"txM" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/underground/sewer/south) +"txO" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/power_apart) +"tyM" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"tzk" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/landing_zone_2/strip) +"tAo" = ( +/obj/item/trash/cigbutt{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"tAY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"tBg" = ( +/obj/structure/prop/rock{ + icon_state = "brown"; + dir = 1; + pixel_y = 11; + pixel_x = 7; + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/oob/outdoors) +"tEg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"tEs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"tET" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"tFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"tFM" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = -2; + pixel_y = -14 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"tGc" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_ground) +"tGw" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -4; + pixel_x = -10 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 17; + pixel_y = 6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1; + pixel_y = -9; + pixel_x = 17 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_west) +"tHf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/empty, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"tIC" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"tIT" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 1; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"tKg" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/apartment/north_upper) +"tKJ" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"tKT" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/power_apart) +"tMb" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"tMr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/north_upper) +"tOG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/east) +"tPn" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"tRc" = ( +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/obj/item/weapon/gun/shotgun/pump/m37a, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"tRd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/security/upper) +"tRG" = ( +/obj/structure/flora/pottedplant{ + pixel_y = 17; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_ground) +"tRT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"tSv" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/tyrargo/indoors/engineering/ground) +"tTk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"tTu" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/tyrargo/indoors/apartment/south_ground) +"tTy" = ( +/obj/structure/stairs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/west) +"tUf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"tVQ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 16 + }, +/turf/open_space, +/area/tyrargo/indoors/museum_storage/upper) +"tWQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/upper) +"tZL" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"uaj" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/mall/upper/external) +"ubZ" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/security/upper) +"udh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"udG" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/landing_zone_2) +"ueO" = ( +/obj/item/prop{ + desc = "A primary armament cannon magazine"; + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/USCM/vehicles.dmi'; + icon_state = "ltbcannon_0"; + name = "LTB Cannon Magazine"; + pixel_x = -2; + pixel_y = -5 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"ufc" = ( +/obj/structure/barricade/handrail/hybrisa/handrail{ + layer = 4 + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/sewer_treatment/lower) +"ujG" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"uln" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"ulU" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"unk" = ( +/turf/open/floor/hybrisa/tile/supermartfloor2, +/area/tyrargo/oob) +"unG" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/heap/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/interior/wood, +/area/tyrargo/outdoors/colony_streets/west) +"uol" = ( +/obj/structure/shuttle/part/dropship3/transparent/inner_right_weapons, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"uqw" = ( +/obj/structure/prop/vehicles/tank/ifv{ + dir = 1; + pixel_y = -35; + pixel_x = -32 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_ice/dirty/rock, +/area/tyrargo/landing_zone_1/north_trench) +"uqK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/girder/displaced, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"urc" = ( +/turf/open/floor/prison/red/northeast, +/area/tyrargo/indoors/admin/upper) +"ure" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"url" = ( +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"uro" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_ground) +"uru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 15; + pixel_x = 7 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"urG" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"urT" = ( +/obj/effect/decal/hybrisa/road/lines5{ + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"usr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/east, +/area/tyrargo/indoors/apartment/north_upper) +"utu" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"uuo" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"uvl" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"uwi" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"uwn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/south_upper) +"uwC" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"uwL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_upper) +"uxo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"uzu" = ( +/turf/closed/wall/hybrisa/colony, +/area/tyrargo/indoors/market/ground) +"uBF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/obj/structure/machinery/light/spot{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"uBN" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/engineering/ground) +"uBU" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"uCB" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/upper) +"uCR" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"uDH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/reagent_container/blood/empty, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"uDI" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"uEq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"uEK" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/security/ground) +"uFw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/south_upper) +"uGc" = ( +/obj/effect/decal/strata_decals/catwalk/prison{ + icon = 'icons/turf/floors/hybrisafloors.dmi' + }, +/turf/open/floor/shiva/radiator_tile2, +/area/tyrargo/indoors/engineering/ground) +"uGJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/hybrisa/doubleroad/lines1{ + pixel_x = 14 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"uIe" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"uIv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/gm/coast/dirt/forestbeachcorner/north_east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"uIN" = ( +/obj/structure/tent/med, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/landmark/ammo_spawn/smg_ammo{ + spawn_chance = 80 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"uKB" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"uLc" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/barricade/deployable, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"uNi" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/mall/upper/external) +"uND" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + pixel_x = -4; + pixel_y = 11 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"uNL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"uOj" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + pixel_y = 7; + pixel_x = -5 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/market/ground) +"uOr" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_east) +"uPF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/south_west) +"uRJ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/landing_zone_2) +"uUs" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"uUA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"uUT" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk, +/area/tyrargo/outdoors/colony_streets/south_west) +"uVb" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 1; + layer = 2.1 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"uVg" = ( +/obj/structure/machinery/door/window{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"uVl" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/tyrargo/indoors/apartment/south_ground) +"uWR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/south_west) +"uWV" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/tyrargo/indoors/engineering/ground) +"uXe" = ( +/obj/structure/girder/displaced, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"uXg" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled{ + dir = 1; + pixel_y = -5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"uXH" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"uYo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/west) +"uZh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"uZE" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/mall/upper) +"vaE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 21; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/tyrargo/indoors/apartment/north_ground) +"vaR" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + density = 0; + pixel_y = 16; + name = "dropship controls"; + desc = "Controls for the dropship. This console appears to be offline for maintenance." + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/tyrargo/indoors/saipan) +"vel" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 19; + pixel_x = -9 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"veV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/south_west) +"veW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/admin/upper) +"vfz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/east) +"vfB" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"vgr" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasket/oranges, +/turf/open/floor/strata/green4/east, +/area/tyrargo/indoors/market/ground) +"vgu" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_3, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north_west) +"vgM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"vhI" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -6; + pixel_x = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"vii" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north_west) +"vje" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob) +"vjU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"vke" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"vkY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/gray_multi_tiles, +/area/tyrargo/indoors/market/ground) +"vlX" = ( +/obj/structure/shuttle/part/dropship3/transparent/middle_left_wing, +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = 2; + pixel_y = -11 + }, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"vmn" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"vmv" = ( +/turf/open/hybrisa/street/sidewalk/west, +/area/tyrargo/outdoors/colony_streets/south_west) +"voj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"voJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"voV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"voX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"vpz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"vqS" = ( +/turf/open/floor/prison/red/east, +/area/tyrargo/indoors/admin/upper) +"vrz" = ( +/obj/structure/bed/hybrisa/prisonbed{ + dir = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/pink/west, +/area/tyrargo/indoors/apartment/north_upper) +"vrH" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"vrJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"vrT" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"vsi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/admin/upper) +"vsp" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/sidewalk/east, +/area/tyrargo/outdoors/colony_streets/south_west) +"vsS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/north_ground) +"vsX" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"vtG" = ( +/obj/structure/prop/rock{ + pixel_x = -2; + pixel_y = -1; + density = 0 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/indoors/security/ground) +"vtT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/engineering/ground) +"vxc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3" + }, +/obj/effect/blocker/water, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/underground/power_substation) +"vxH" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt, +/area/tyrargo/oob) +"vyj" = ( +/obj/structure/bed/hybrisa/bunkbed1{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/tyrargo/indoors/apartment/south_ground) +"vyA" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/north_ground) +"vyJ" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue{ + dir = 8; + layer = 3 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/hybrisa/metal/stripe_red/west, +/area/tyrargo/indoors/sewer_treatment/ground) +"vAg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_west) +"vAp" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6 + }, +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"vBa" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/security/upper) +"vBb" = ( +/obj/structure/shuttle/part/dropship3/transparent/inner_left_weapons, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_east) +"vBq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/south_upper) +"vBx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/tyrargo/outdoors/colony_streets/east) +"vBC" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = -1; + pixel_y = -8 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 10; + pixel_y = 15 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 12; + pixel_y = -5; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"vCr" = ( +/turf/open/floor/almayer/plating_stripedcorner, +/area/tyrargo/indoors/comms/ground) +"vCP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/south_west) +"vCU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_exterior/west) +"vDv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"vDS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"vEd" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/north, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"vEi" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/greencorner/north, +/area/tyrargo/underground/sewer/south) +"vGK" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/mall/upper/external) +"vGQ" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"vGV" = ( +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"vHf" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/wood, +/area/tyrargo/landing_zone_1/ceiling) +"vHk" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"vHx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/open{ + pixel_y = 12 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/market/ground) +"vHF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/small/mouse/rat/brown, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"vIh" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/tyrargo/indoors/apartment/north_ground) +"vIH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + layer = 2.98; + pixel_y = -8 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"vJq" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid{ + dir = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/underground/power_substation) +"vKf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"vKq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/tyrargo/indoors/apartment/south_ground) +"vLw" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_right_exhaust, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/colony_streets/east) +"vLz" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/prop/rock{ + density = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"vMV" = ( +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/engineering/ground) +"vNa" = ( +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/tyrargo/indoors/apartment/north_upper) +"vOb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/south_west) +"vOe" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -1; + pixel_y = -1; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north) +"vOZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/apc/destroyed{ + dir = 4; + pixel_y = -18 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"vPs" = ( +/obj/structure/barricade/deployable, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"vPJ" = ( +/obj/effect/decal/siding, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"vPS" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/blue, +/turf/open/floor/hybrisa/metal/red_warning_floor, +/area/tyrargo/indoors/sewer_treatment/ground) +"vQX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"vTk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"vUK" = ( +/obj/structure/bookcase, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"vUV" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"vUZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"vWb" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"vWs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/sewer_treatment/upper) +"vXn" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -9; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"vYc" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -5 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"vYq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"vYx" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"waA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = -32 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"waX" = ( +/turf/open/floor/prison/yellow/southwest, +/area/tyrargo/indoors/admin/ground) +"wcw" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"wcz" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1/no_mans_land) +"wdp" = ( +/obj/item/storage/belt/medical/lifesaver, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"wdS" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"wdW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/tyrargo/indoors/apartment/south_ground) +"weO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"weS" = ( +/turf/open/hybrisa/street/sidewalk/northwest, +/area/tyrargo/outdoors/colony_streets/south_east) +"wfl" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/tyrargo/indoors/museum_storage/upper) +"wfw" = ( +/turf/open/floor/prison/yellow/northeast, +/area/tyrargo/indoors/admin/ground) +"wfU" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"wgy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/apartment/south_upper) +"wgF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ + name = "Medical Cabinet"; + pixel_y = -32 + }, +/obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central) +"wic" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/south_west) +"wiH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/lv624/fog_blocker/long, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"wiU" = ( +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/south_west) +"wjb" = ( +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"wkt" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/south_west) +"wlk" = ( +/obj/effect/blocker/water, +/turf/open/floor/prison/green/east, +/area/tyrargo/underground/sewer/south) +"wlF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"wmT" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"wnN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/south_upper) +"wpq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2) +"wqs" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"wsg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"wtz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/west) +"wuv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"wuK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"wwM" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"wyc" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = -12; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"wyf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/outdoors/colony_streets/west) +"wyj" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north_west) +"wzA" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/tyrargo/indoors/engineering/ground) +"wAQ" = ( +/obj/effect/decal/hybrisa/doubleroad/lines3{ + pixel_y = 13 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/oob/outdoors) +"wBO" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"wBS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/museum_storage/upper) +"wCQ" = ( +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/tyrargo/indoors/apartment/north_ground) +"wDy" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/indoors/apartment/north_upper) +"wDF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -1; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"wEl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"wEp" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/barricade/hesco{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"wEx" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central_south) +"wEy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"wFt" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/obj/structure/machinery/sensortower{ + pixel_x = 6; + layer = 3.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"wFN" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"wFS" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"wGY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + layer = 3.5; + pixel_y = -1; + pixel_x = -21 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/apartment/north_ground) +"wHL" = ( +/obj/item/weapon/broken_glass, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/south_ground) +"wIc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/wood_broken4, +/area/tyrargo/landing_zone_1/ceiling) +"wId" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -6; + pixel_y = -10; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 14; + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/north_west) +"wIy" = ( +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/sewer_treatment/ground) +"wKT" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 1; + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_y = -11; + layer = 2.8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"wLy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6; + pixel_x = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"wMe" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"wOu" = ( +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = -1; + pixel_y = -11 + }, +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "28" + }, +/area/tyrargo/outdoors/colony_streets/east) +"wOA" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/apartment/north_upper) +"wQh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/northwest, +/area/tyrargo/indoors/admin/upper) +"wRk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"wRN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"wSa" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/admin/upper) +"wSo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa{ + icon_state = "couch_hori1" + }, +/obj/structure/prop/tyrargo/military_evac_sign{ + pixel_y = 28 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"wSv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/west) +"wSN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_ground) +"wSQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/outdoors/walkway_access/sewer_apart) +"wSR" = ( +/obj/item/prop{ + desc = "A destroyed communications tower"; + icon = 'icons/obj/structures/machinery/comm_tower3.dmi'; + icon_state = "static1_broken"; + name = "Destroyed TC-3T static telecommunications tower"; + explo_proof = 1; + unacidable = 1; + density = 1; + anchored = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"wSZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/west) +"wUm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"wWb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/south_west) +"wWc" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"wWu" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + pixel_y = 7 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/apartment/south_upper) +"wYk" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6 + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/south_ground) +"wYA" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"xao" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/engineering/ground) +"xaO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/power_apart) +"xaQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"xct" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1) +"xcB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north_west) +"xcD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/tyrargo/indoors/apartment/north_ground) +"xcH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"xcN" = ( +/obj/structure/bed/roller, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -9; + pixel_x = 4 + }, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/apartment/north_ground) +"xdh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"xdp" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"xdt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/item/ammo_casing/bullet, +/obj/item/clothing/mask/gas/swat, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_east) +"xdB" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"xed" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"xfF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall_reinforced, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/museum_storage/upper) +"xhx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/tyrargo/outdoors/colony_streets/north) +"xhJ" = ( +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/security/ground) +"xhK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"xif" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"xkn" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement/cement14, +/area/tyrargo/outdoors/colony_streets/south_west) +"xkr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/turf/open/floor/interior/wood/alt, +/area/tyrargo/landing_zone_2/east_trench) +"xmr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/north_ground) +"xnl" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/west) +"xpB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/west) +"xqE" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 12; + pixel_y = -5; + layer = 2.9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = 6; + pixel_y = 10; + layer = 2.1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"xrf" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/south_ground) +"xsr" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/underground/museum_carpark) +"xsu" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/south_ground) +"xsW" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_5/south, +/area/tyrargo/landing_zone_1) +"xwa" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/tyrargo/indoors/apartment/north_upper) +"xxk" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/hybrisa/metal/grated/east, +/area/tyrargo/indoors/engineering/ground) +"xxG" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/tyrargo/indoors/apartment/south_ground) +"xxI" = ( +/turf/open/floor/strata/orange_icorner/east, +/area/tyrargo/indoors/admin/upper) +"xzV" = ( +/obj/structure/girder, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 1; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"xAg" = ( +/turf/open/floor/prison/ramptop/north, +/area/tyrargo/indoors/sewer_treatment/ground) +"xAr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/west) +"xAJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/security/ground) +"xBa" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_5/east, +/area/tyrargo/outdoors/outskirts/north_west_usasf) +"xBV" = ( +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"xCi" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/shiva/radiator_tile, +/area/tyrargo/landing_zone_2) +"xCQ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"xEB" = ( +/obj/structure/window/framed/hybrisa/marshalls/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/security/ground) +"xFW" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/hybrisa/wood, +/area/tyrargo/indoors/apartment/north_upper) +"xId" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/engineering/ground) +"xJe" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"xKg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/tyrargo/indoors/apartment/north_ground) +"xLw" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -9; + pixel_x = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"xLO" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/oob) +"xMX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"xNb" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/landing_zone_1/no_mans_land) +"xNG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/west) +"xPz" = ( +/obj/effect/landmark/lv624/fog_blocker/long, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalk/north, +/area/tyrargo/oob/outdoors) +"xRO" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/hybrisa/street/asphalt, +/area/tyrargo/indoors/museum_storage/upper) +"xTr" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/west) +"xTS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/sewer_treatment/upper) +"xUs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/west) +"xUK" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.97; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -8; + layer = 2.9 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/apartment/south_upper) +"xVv" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/engineering/ground) +"xVw" = ( +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = -1; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "26" + }, +/area/tyrargo/underground/sewer/south) +"xVJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/south_west) +"xWd" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/south_west) +"xWK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/apartment/north_ground) +"xXu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/tyrargo/indoors/apartment/north_ground) +"xXy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_2/east_trench) +"xZf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6; + pixel_x = -7 + }, +/obj/item/trash/uscm_mre{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_streets/south_west) +"xZG" = ( +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/tyrargo/indoors/apartment/south_ground) +"xZO" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + layer = 2.98 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"yaU" = ( +/turf/open/asphalt/cement/cement1, +/area/tyrargo/oob) +"ybp" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -12; + pixel_y = 10 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/colony_exterior/west) +"yef" = ( +/obj/structure/shuttle/part/dropship3/right_inner_wing_connector, +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/turf/open/floor/prison/floorscorched1, +/area/tyrargo/indoors/museum_storage/upper) +"yew" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/landing_zone_1) +"yfe" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = -3; + pixel_x = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"yfj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/east) +"yfm" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/oob) +"yfv" = ( +/turf/open/floor/prison/red/southwest, +/area/tyrargo/indoors/admin/upper) +"yfK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/security/ground) +"yfR" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/landing_zone_2) +"yfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/obj/effect/landmark/ammo_spawn/vp78_ammo{ + spawn_chance = 80 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/apartment/north_ground) +"ygk" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/tyrargo/landing_zone_1/north_trench) +"ygP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 4.2; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/apartment/south_ground) +"ykl" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"ykT" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_y = 3; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north_west) +"ykY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/apartment/north_upper) +"ymd" = ( +/turf/open/asphalt/cement/cement14, +/area/tyrargo/oob) + +(1,1,1) = {" +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +"} +(2,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(3,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(4,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(5,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(6,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(7,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elj +bsw +bsw +bsw +bsw +bsw +sqe +"} +(8,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elj +bsw +bsw +elj +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(9,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elj +elj +elj +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(10,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elj +elj +elj +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(11,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elj +elj +elj +elj +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(12,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(13,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(14,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(15,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(16,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(17,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(18,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(19,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(20,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(21,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(22,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(23,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(24,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(25,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(26,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(27,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(28,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(29,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(30,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(31,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(32,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(33,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(34,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(35,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(36,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(37,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(38,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(39,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(40,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(41,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(42,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(43,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(44,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(45,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(46,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(47,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(48,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(49,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(50,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +elc +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(51,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +elT +eli +elT +bsO +bsw +bsw +bsO +elT +bsw +bsw +bsw +bsO +bsw +bsw +bsO +elT +elc +bsw +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(52,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +elC +elT +elT +bsO +bsO +bsO +bsO +eoK +elT +elo +elT +bsO +bsO +bsO +bsO +elc +cJX +elC +bsO +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(53,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +epS +cbk +epJ +elg +elg +elg +elg +cJr +epR +elL +epJ +elg +elg +elg +elg +epO +emr +emr +epJ +elg +elg +elg +elg +cJr +cbk +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(54,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elC +elT +ela +cbk +ela +elL +epI +ela +ela +elf +elM +epQ +elf +ela +epI +epI +ela +ela +epL +epL +elf +ela +ela +epI +elL +ela +cbk +ela +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(55,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ela +elT +cbk +ela +elL +epI +ela +ela +eox +epN +epN +elf +ela +epI +epI +ela +eox +epN +epM +elf +ela +ela +epI +elK +ela +cbk +elT +eoK +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(56,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cbk +epK +enu +enu +enu +enu +cMc +emr +eVX +epK +enu +enu +enu +enu +epP +emr +emr +epK +enu +enu +enu +enu +cMc +cbk +bNc +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(57,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +emu +eVY +elT +bsO +bsO +bsO +bsO +elT +bsw +bsw +elT +bsO +bsO +bsO +bsO +elT +elT +elT +bsO +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(58,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eoR +eoR +eoR +eoR +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +eli +elc +elT +bsO +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsO +elT +elT +elT +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(59,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eoR +eoR +eoZ +eoT +eoR +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +elT +emk +elT +bsO +bsO +bsO +bsO +bsw +bsw +emo +elT +bsO +bsO +bsO +bsO +elT +elc +elc +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(60,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eoR +epc +epa +eoT +eoR +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +elT +ekA +elT +elT +elT +elT +elT +emu +elT +elc +elc +elc +elT +elT +elT +elT +elc +elc +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bZo +ekP +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(61,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eoR +eoR +eoR +eoU +eoR +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +elT +elk +elk +elT +elT +eov +elT +elT +elk +bsv +elc +elc +elT +elk +elk +bsv +eoK +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsw +elJ +ely +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +ekQ +ekA +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(62,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +eoW +bsO +bsO +bsO +bsO +bsw +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +bsO +elk +elT +elT +elT +bsw +bsw +bsw +elk +elk +elc +elk +elk +elk +elk +elT +elT +elc +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elO +elf +ekP +elv +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elW +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bZo +ekR +eku +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(63,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsv +aJA +eoH +aso +asf +epl +enA +enA +eoX +enA +eoQ +eoO +eoH +bsw +ekX +bsw +bsw +bsw +bsw +enA +eoJ +eoH +env +env +eoE +eoC +env +elT +bsO +bsO +bsO +bsO +elk +eVW +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elz +elK +elz +elw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +ekX +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsw +bsw +eku +eku +eku +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +boz +bsO +bsO +bsO +bsO +bsO +boz +boz +bsO +bsO +bsO +bsO +bsO +boz +boz +boz +boz +boz +boz +bsO +bsO +bsO +bsO +bsO +boz +boz +bsO +bsO +bsO +bsO +bsO +boz +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(64,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eoS +ekX +bsu +elf +eoz +epm +epf +epb +epb +eoY +eoS +bsw +eoP +ela +elf +eoN +ekX +ekX +ekX +elf +ela +eoK +elT +bsw +bsw +bsw +elp +eox +ekF +bsO +bsw +bsw +bsO +elk +elk +elT +bsw +bsO +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +elP +elL +elz +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +ekW +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekW +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +eku +bWd +eku +bWI +bWI +bWI +bWI +bWI +bWI +boz +boz +boz +aiC +bsn +bsn +bsn +bsn +boz +boz +aiC +bsn +bsn +bsn +bsn +boz +boz +bVg +bUZ +boz +boz +aiC +bsn +bsn +bsn +bsn +boz +boz +aiC +bsn +bsn +bsn +bsn +boz +boz +boz +boz +boz +boz +boz +bsO +bsO +bsO +bsO +bsO +bsO +bsO +sqe +"} +(65,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekF +elf +eoA +eps +epn +emr +epd +ekW +bsw +bsw +bsw +bsw +bsw +eoF +eoF +eoF +eoM +eoF +eoF +enz +eoL +eoI +eoF +eoF +eoF +eoD +elT +elT +bsO +bsO +bsO +bsO +elT +elk +elT +elT +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +elW +elz +elL +bsw +ekW +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +eli +enZ +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +ekX +bsw +bsw +bsw +bsw +ekA +bsw +bsO +bsw +bsO +eku +bWd +bXn +bWd +bWN +bWN +bWN +bWQ +ceH +aUD +bWz +bTU +bVl +bVG +bTU +bsp +bUu +bUo +bTX +bVl +bVG +bTU +bsp +bUu +bVo +bTU +bTU +bTU +bUQ +bTX +ajk +bUv +bUa +bUv +bUb +bUo +bTX +ajk +bso +bTU +bso +abH +bly +biy +ekJ +ekH +bTT +bTR +bTQ +eku +eku +ekE +ekA +ekx +ekv +ekt +sqe +"} +(66,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +asp +eoA +epo +epd +epe +bsO +bsO +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsw +elT +elT +bsw +ekX +eoB +ekX +elT +bsw +bsw +elT +elT +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elX +ekX +ela +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +emD +eoa +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +enJ +ekX +ekX +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bZw +bgW +bVX +bXi +bWT +bWG +bWG +bWG +bWJ +aUD +bWA +bVf +bVl +bTU +bTU +bUa +bUu +bVP +biy +bVl +bTU +bUa +bVA +aly +biy +bTU +bVb +bTU +bUR +biy +bUk +bTU +bTU +bTU +bUb +bUp +bTX +bUk +bUa +bUc +bUa +bUb +bTU +biy +ekK +bTX +aoY +bUE +aVD +aVC +eku +ekF +ekB +eky +ekw +ekt +sqe +"} +(67,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +ept +epo +epg +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +elT +bsw +enF +elf +elT +elT +elT +elk +env +emu +elc +bsw +elT +elT +ekW +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +ekX +elB +elx +elu +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +enJ +elf +eob +ekX +ekX +bsw +ekX +ekX +bsw +bsw +bsw +enE +enE +enE +ekP +enE +enH +enE +bsw +bsw +cep +eku +eku +ceo +cek +bWE +bWd +bVX +bWb +bWE +bWE +bWM +bWK +bUg +bTX +bUa +bVm +bUY +bUY +bUY +bVS +biy +biy +bVm +bUP +bUY +bUP +and +bTX +bUa +bUa +bUa +bUa +biy +bUK +aii +aii +bUw +bUs +bTX +biy +akk +aii +bUh +aii +adS +bUa +bTZ +ekL +ekI +bTU +bTP +aab +eku +eku +ekC +ekC +ekz +bsw +ekt +sqe +"} +(68,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +epu +epp +eph +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +emC +emu +ekA +ekA +ekA +ekA +bsw +bsw +emq +emk +ekA +ekA +elc +ekA +emu +elT +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsw +bsw +elC +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +ekA +ekA +ela +enU +elf +elf +elf +ekA +ekA +enF +enK +elc +ela +ekA +elc +elf +enF +elr +ekQ +eel +eku +eku +eku +bWd +bWd +bWd +bWM +bXb +bWM +bWW +bWR +bWJ +aUD +bWB +bWg +bVY +bWe +bVY +bUa +bUa +bVP +bTX +bUa +bUa +bVf +bUa +bTU +bTX +bTU +bUa +bVa +bUS +bTX +bTU +bTU +bTU +bUc +bUc +biy +bTX +bUa +bUa +bUa +bUa +bUc +bUa +ekN +ekM +bTY +bTV +bTS +aac +aaa +eku +ekG +ekD +bsw +bsw +ekt +sqe +"} +(69,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +epv +epq +epj +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +emD +emy +bsO +bsO +bsO +bsO +bsw +bsw +elT +elT +bsO +bsO +bsO +bsO +bsw +emk +elT +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +eli +elD +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekW +ekP +eoc +enD +elc +ekP +enI +ekX +enP +enI +enI +ekX +ekX +bsw +bsw +bsw +enI +enG +enD +ekW +ekX +eku +eku +bXy +bVX +bXq +bVX +bVX +bXc +bWE +bWM +bWM +bWL +boz +bTX +bTX +bTU +bsp +bVY +bsp +bVa +bTX +bTX +bUa +bsp +bUa +bsp +bTU +bTX +bTU +bUa +bTU +bTU +bTX +bTU +bso +bUa +bUv +bTU +bTX +bTX +bTU +bso +bTU +bUe +bUa +bTX +ekO +boz +boz +boz +boz +boz +boz +bsO +bsO +bsw +bsw +bsw +bsw +sqe +"} +(70,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +eku +ekX +eku +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dRv +bsw +bsw +bsw +bsO +bsw +elf +emy +bsO +bsw +bsw +bsO +bsw +bsw +elT +bsw +bsO +bsw +bsw +bsO +bsw +ekA +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsw +bsw +elT +elc +ekA +elQ +eky +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +ekA +eod +bsO +bsO +bsO +bsO +ekX +ekX +ekX +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bWc +bXz +bVX +bVX +bVX +bWM +bXc +bVX +bWX +bWS +bWM +boz +boz +bTX +bTX +bUa +bTU +bTU +aHS +boz +boz +bUa +bTU +bUa +bTU +bTU +boz +bTU +bTU +bVb +bTU +boz +bTU +bUa +bUc +bUa +aHS +aLc +aLc +bTU +bTU +bUa +bUa +bTU +bTX +boz +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(71,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +eku +eku +eku +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elT +bsw +bsO +bsO +bsO +bsO +bsw +elC +elT +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +elu +bsO +bsO +bsO +bsO +ekX +ekX +bsw +bsO +bsO +bsO +bsO +ekX +ekW +ekX +elc +elc +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +ekA +ekX +bsO +bsw +bsw +bsw +bsw +emq +ekW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bWI +bWE +bXA +bWE +bVX +bWE +bWM +bJF +bVX +bWE +bWM +bWE +boz +boz +boz +bVM +bTX +bTX +bTX +bTX +boz +boz +bVM +biy +bTX +bTX +bUd +boz +bTU +bTU +bVc +bTU +boz +bTX +biy +biy +bUx +bUd +aLc +aLc +bTX +bTX +biy +bUf +asx +boz +boz +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(72,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +caA +bsO +bsO +bsO +bsO +bsO +caA +caA +caA +caA +caA +caA +bsw +caA +cdv +eku +epk +bsO +bsw +bsO +caA +caA +caA +caA +bsO +bsO +bsO +bsO +bsO +caA +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +elT +ekA +ekA +ems +eky +eoz +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elc +emg +eme +elc +emb +elT +ekW +ekX +ekX +emb +emb +ema +elZ +elY +bsO +elc +ekX +elc +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +elc +ekX +emq +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bWI +bWE +bXB +bVX +bVX +bXo +bWM +bMy +bIS +bWM +bWE +bWN +boz +boz +boz +boz +bVZ +bVZ +aUD +boz +boz +boz +boz +bVH +bUB +aUD +boz +boz +boz +boz +boz +boz +boz +boz +aUD +bUB +bUy +aLc +aLc +aLc +aLc +bUg +bUg +bUg +boz +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(73,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +caA +caA +aMs +kAA +kAA +kAA +aMr +caA +caA +cdt +cdl +cdc +caA +caA +caA +caO +epr +epk +caA +caA +caA +ccv +ccq +ccm +caA +aMs +kAA +kAA +kAA +aMr +caA +caA +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +elT +elT +elT +elc +ela +emt +emr +elc +eli +elT +elc +elc +elc +eli +elM +ekA +ekA +emf +elc +emd +ekA +ekA +emc +bsw +bsw +bsw +bsw +ekX +ekX +bsO +elR +ekX +elT +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elc +ekX +ekX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bWl +bXB +bVX +bWE +bXp +bWE +bWM +bWM +bWE +bWN +bWN +boz +boz +boz +bTX +bTX +biy +bTX +bTX +boz +boz +bUx +biy +biy +biy +bTX +boz +bTX +bTX +bTX +bTX +boz +bTX +bTX +biy +bTX +bTX +aLc +aLc +biy +bUi +biy +bTX +bsl +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(74,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +enA +enw +axL +eku +eku +enq +ccQ +enh +end +caD +cbe +cej +cbw +cdS +cdI +cbm +cdz +cdw +adT +ccQ +amc +cda +cKY +ccV +ccS +cbs +aMp +ccL +cKX +aMp +aMn +emI +aMn +aMl +cbZ +dTz +dTz +dTz +cbm +cbe +caA +bsw +bsw +bsw +bsw +bsO +bsw +bsw +elF +emw +elc +emk +elc +eoA +elf +elf +elT +elc +elc +bsw +bsw +emm +elO +bsw +bsO +bsO +bsO +bsO +bsO +eoy +ekX +ekX +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsw +ekA +elD +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +ekA +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bWx +bXz +bWE +bXr +bVX +bNp +bXd +bWM +bWE +bWN +bWN +bWE +boz +bTX +bTX +bVI +bVN +bVq +biy +boz +boz +biy +bVI +bTT +bVv +bTX +boz +bTX +bUF +bUt +bTX +boz +bTX +bUF +bUC +bUt +bTX +aLc +bUm +bUj +bUj +bTP +aVD +bsw +bsw +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(75,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +ekE +enx +env +eku +caz +caz +enn +cdY +ene +enb +cbf +cbS +ceb +cdT +cdJ +cbo +cdA +cpE +caM +cdm +cbs +cbf +ccE +caT +cbs +cbO +cbs +ccb +ccE +caT +caM +ccr +caM +emH +cca +cbP +cbI +caT +cbn +cbf +caA +bsw +bsw +bsw +bsw +bsw +bsw +elT +elc +bsO +bsO +bsO +bsO +bsw +emu +elT +bsw +bsO +bsO +bsO +bsO +emn +elT +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elT +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elM +ekA +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +enK +elT +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bXC +bVX +bWE +bWE +bVX +bXe +bWM +bWE +bWG +bWG +bWF +aUD +bWt +bWm +bVK +bUa +bVV +bVv +bTX +bTX +bVI +bVK +bUa +bVB +bVq +bTX +bUF +bUG +bVd +bUt +bTX +bUF +bUG +bTU +bUz +bUt +bTX +bUn +bUl +bTP +aVD +bsw +bsw +bsw +bsw +bsO +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(76,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +enB +eny +eku +eku +eku +caz +caN +eni +enf +caD +cbf +caT +cec +cbs +cdK +cbf +cbf +cbs +caM +cdn +cdd +cbf +ccE +cbf +caM +cbO +caM +caT +ccE +ccC +ccw +caM +caM +caT +cbS +cbQ +caT +cbx +cbo +cbf +caA +bsw +bsw +bsw +bsw +bsw +emG +ekA +ekA +bsO +bsw +bsw +bsO +bsw +elT +bsw +bsw +bsO +bsw +bsw +bsO +bsw +elT +elc +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elc +elE +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +eog +elf +ekX +ekX +ekX +eNh +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bWd +bVX +bWE +bWE +bXf +bWM +bWE +bVX +bVX +bWG +aUD +bWu +bWo +bUa +bWa +bUa +bTW +bTT +bVN +bVK +bUa +bVE +bVb +bVs +bUa +bVl +bVi +bVe +bUT +bUN +bUL +bUH +bUa +bUA +bUu +bUa +bUj +bTP +bTP +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(77,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +enz +enC +enz +eku +eku +eku +eku +eno +aMm +eng +enc +cbf +cbf +ced +cdU +cbo +ccC +cdB +aMq +cdu +cdo +cde +aMm +ccZ +aMq +aMo +ccN +ccN +aMm +ccF +aMq +aMo +aMo +aMo +aMm +ccb +cbR +cbJ +cby +caT +cbg +caA +bsw +bsw +bsw +bsw +bsw +bsw +emw +emA +bsO +bsO +bsO +bsO +bsw +emk +elc +bsw +bsO +bsO +bsO +bsO +elc +emk +emi +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +eli +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bZo +elT +ekX +bsO +elq +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bWT +bVX +bVX +bWE +bXb +bWE +bWE +bWT +bWO +bWG +aUD +biy +bWo +bUR +bTU +bVW +bUa +bUa +bUa +bTU +bVL +bTU +bUa +bVt +bTU +bVl +bUa +cYC +bUU +bUa +bTU +bUa +aLg +bUa +bUu +bTU +aVD +bsm +aVD +eNe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(78,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +caA +emY +cee +cdV +cdL +emV +caA +caA +caU +caU +cdf +caA +caA +caA +caU +ccR +ccO +caA +caA +caA +caU +caU +caU +caA +ccc +cbS +cbK +cbz +cbf +cbf +caA +bsw +bsw +bsw +bsw +bsO +bsw +ekW +elT +elT +elc +elc +elc +eku +emu +ekX +bsw +bsw +bsw +bsw +bsw +emo +elc +emj +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +elT +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +bsO +ekX +elT +eli +elT +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bVX +bVX +bWE +bWM +bWM +bVX +bWE +bWE +bWE +bWG +boz +biy +bWp +bTU +bUa +bTU +bVi +bVQ +bTX +bUV +bTU +bUa +bVC +bVu +bVp +bVm +bVj +bVf +bUV +bTX +bTU +bUI +bTU +bUr +bUr +bUq +aVD +aVD +aVD +aVD +bsw +bsw +bsw +bsw +bsO +bsw +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(79,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +caA +caA +cdM +cdW +cdM +caA +bsw +caA +caV +cbE +cbE +caA +bsw +caA +cbE +cbE +caU +caA +bsw +caA +ccx +cbE +cbE +caA +ccd +amb +cbA +cbA +cbp +caA +caA +bsw +bsw +bsw +bsw +bsO +ekX +emE +emy +bsw +emv +emk +elT +eku +elW +eku +eku +bsw +bsw +bsw +bsw +ekF +eml +emi +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +elS +elM +bsw +bsw +bsw +bsw +bsw +bsw +ekX +elT +ekA +ekX +ekX +elT +elT +elT +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bXi +bXs +bWM +bWM +bWE +bVX +bWE +bWM +bWE +bWE +boz +bWv +bWo +bUa +bUa +bUa +bTX +boz +boz +bTX +bUa +bUa +bVw +bTX +boz +bTX +bVk +bUa +bTX +boz +bTX +bTU +bTP +bTP +bTP +bUr +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(80,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +caA +caA +cel +cdX +cdX +cdN +cdF +caA +caA +ccn +ccn +ccn +caA +caA +caA +ccn +ccn +ccn +caA +caA +caA +ccy +caO +cbE +caA +caA +aLS +cbL +cbB +caA +caA +bsw +bsw +bsw +bsw +bsw +bsO +eku +emF +emB +bsw +bsw +bsw +bsw +eku +eku +eku +eku +bsw +bsw +bsw +bsw +eku +ekF +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekX +bsw +elF +bsw +bsw +bsw +ekX +elc +elc +ekX +elr +eky +elq +elT +elT +enZ +bsO +bsw +bsw +bsw +bsw +bsw +elT +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bVX +bVX +bWE +bWM +bWM +bWS +bWE +bWE +bWM +bWM +cjY +boz +bTX +bWo +bUa +bUa +bTU +cjR +boz +boz +bTX +bUa +bTU +bVw +cjR +boz +bTX +bVl +bUa +aHU +boz +bTX +bTU +bUr +bTP +bTP +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(81,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ceq +caU +caU +ccT +cbE +cbE +cdC +cdx +caS +cbG +cdg +cbw +cbw +caS +caS +cbh +caS +caS +ccG +ccD +ccn +ccs +cbE +cbE +cbE +aMi +caM +aMf +caA +bsw +bsw +bsw +bsw +bsw +bsw +bsO +eku +eku +eku +bsO +bsO +bsO +bsO +eku +bZN +eku +eku +bsO +bsO +bsO +bsO +eku +eku +eku +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ekF +ekX +elG +elc +bsw +bsw +bsw +ekX +elc +ekV +ekX +bsw +bsO +ekZ +emu +eob +bsO +bsw +bsw +bsw +bsw +bsw +elT +ekZ +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bWI +bWE +bWE +bVX +bXj +bXj +bXj +bXg +bWM +bWE +bWM +bWM +bWE +boz +bTX +bWq +bVf +bUa +bUa +bVc +bUo +bTX +bTU +bUa +bUa +bTW +bVv +bTX +bUF +bUL +bTU +bUa +bUO +bTU +bTU +aVD +bTP +aVD +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(82,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ces +caO +ccn +ccn +cfb +cdO +ccn +caO +cdx +cbs +ccz +cbs +caO +caO +caM +cbs +caO +caV +caO +cbh +caV +caO +ccp +caV +ccj +cbE +aMi +caM +aMf +caA +bsw +bsw +bsw +bsw +bsw +bsw +bsO +eku +eku +bYJ +bYb +bsw +bsw +bsO +eku +bXY +bZr +eku +bsO +bsw +bsw +bsO +eku +bZr +eku +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elT +ekX +ekX +bsO +bsw +bsO +bsO +bsO +ekF +ekX +bsO +bsO +bsO +bsw +elf +emz +bsO +bsO +bsO +bsO +bsO +elT +elT +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsO +bsO +bsO +bWI +bWI +bWE +bWE +bXt +bVX +bVX +bVX +bWE +bWE +bWE +bWM +bWE +bWG +aUD +bTX +bWq +bTU +bUa +bUa +bUa +del +bsq +bVf +bUa +bVA +bUa +bVw +bTU +bVl +bUa +bUa +bUA +bUa +bUM +bUJ +bUE +aVD +aVD +aVD +aVD +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(83,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cet +caV +cem +caS +caO +cdP +caS +cdD +cdy +emO +cdp +caS +cdb +caS +caS +ccT +caV +caO +caO +caS +caS +caS +ccp +cbG +cck +caU +aMi +caT +aMf +caA +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bZM +bZr +bYz +bYb +bYb +bYb +bYb +eku +bYa +bXY +bXY +bYb +bYb +bYb +bYb +bZr +bZs +bXZ +bYb +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elD +bsw +ekA +eon +elT +ekX +ekF +emk +eok +eok +bsw +eoh +elc +eoe +ekY +eok +eok +elT +elT +enQ +ekQ +ekA +ekY +eku +eku +eku +eku +eku +eku +bXW +bXT +bWd +ekT +ekT +bXd +bXb +bWE +bWG +bWG +bWE +bWE +bWM +bWM +bWE +bWG +aUD +bWt +bWr +bWg +bUa +bUa +bUa +bUa +bVO +bUa +bTU +bTU +bUa +bVs +bTU +bVl +bVb +bUa +bUR +aLg +bTP +bTP +aVD +bTP +bsm +aVD +aVD +aVD +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(84,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +caA +cen +cef +cdY +cdQ +caA +caA +caA +cdq +cdq +cdh +caA +caA +caA +caV +caO +ccx +caA +caA +caA +cbR +caV +ceW +caA +caA +cbT +cbM +aMf +caA +bsw +bsw +bsw +bsw +bsw +bsw +bYb +cap +bXY +cag +cad +bYa +bZY +bZW +bZR +bZp +bYa +bYa +bYa +bZB +bZy +bYB +aLx +bYB +bYw +bYb +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elT +elc +elc +enF +elf +elc +ela +eom +ekA +elf +ekA +elf +eox +eof +ekA +elc +elk +ekP +elc +ela +ela +ela +enL +ekX +ekW +ekF +eku +eku +eku +bXX +bXX +bXU +bWk +bWb +bWE +bWE +bWG +bWE +bWG +bWG +bWE +bXa +bWY +bWU +bWG +bWG +bUr +bWt +bWq +bWh +bUa +bVf +bUa +bUD +bUa +bUa +bTU +bTU +bTP +bVx +bTU +bVk +bUa +bTU +bUX +bTU +bsw +bsw +bsw +bsw +aVD +eNf +aVD +aVD +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(85,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsO +bsw +bsw +bsw +bsO +bsw +caA +ceg +cba +cbn +caA +bsw +caA +cbE +cbE +cbE +caA +bsw +caA +caV +caO +ccx +caA +bsw +caA +cbR +caO +caV +caA +aMk +cbU +caT +aMf +caA +caA +caA +bsw +bsw +bsw +bsw +bYb +cap +can +cah +bYa +bYa +bZz +bYB +bYa +bZO +bYa +bXY +bYa +bYB +bZz +bYB +bXY +bZt +aLr +bYb +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elQ +elc +eln +eoq +eop +eoo +elT +bsw +bsw +bsw +bsw +eol +ekX +eoi +ekX +emq +elb +enV +elf +enR +elb +ekA +ekA +ekX +eku +eku +eku +eku +eku +eku +eku +eku +bXV +bXR +bXO +ekU +bWE +bWN +bWN +bWE +bXk +bWE +bWM +bWE +bWV +bWN +bWE +bUj +bWw +bWs +bWi +bTU +bTU +bTU +bUa +aLg +bUa +bTU +bVF +bTP +bVy +biy +bVn +bUY +bUY +bUY +bUP +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(86,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +caA +caV +ceh +cdZ +caO +caA +caA +caA +ccn +ccn +ccn +caA +caA +caA +caV +caO +caV +caA +caA +caA +cbR +caO +cco +ccl +cce +cbU +caM +cbC +caO +caV +caA +caA +caA +bsw +bsw +bYb +bYB +bYa +bYB +bXY +bYa +bZZ +bYB +bYB +bYB +bYa +bYw +bXY +bZC +bZA +bXY +bYa +bXY +bZp +bYb +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elU +elN +elI +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +ekX +enL +ekF +bsO +bsO +enW +enT +ekX +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsO +bsO +bXj +bXH +bXj +bXu +bXp +bWE +bXl +bVX +bWE +bWZ +bWE +bWN +bWE +bWC +bUr +bTP +bTR +bUr +bTP +bTP +aVD +bTP +aVD +aVD +bTR +aVD +bTP +bUr +biy +biy +biy +bTX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(87,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +enr +bsw +enj +emp +eku +eku +caO +caS +caS +caS +cdG +cdE +caV +ccz +caO +ceZ +caV +cbw +ccW +cbG +caO +caV +cbE +ccH +cbE +caV +cbG +ccp +caV +ccf +cbV +caM +cbC +aMc +cbh +caS +caS +caA +bsw +bsw +bYb +bYw +bYB +bYa +bYb +bYb +bYb +bYb +bYB +bYB +aLe +aLe +bYb +bYb +bYb +bYb +bYa +bYB +bYB +bYb +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +elV +ekW +eku +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekW +bsw +bsw +bsO +enX +elf +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bWE +bWE +bWM +bWb +bWE +bXk +bVX +bWE +bWM +bWE +bsw +bsw +bsw +eNg +bTP +bTP +bTP +bsr +bVU +bsO +bsO +bsO +aUD +aVC +bVD +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(88,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ens +ekA +enk +elT +eku +eku +caO +cei +cbG +caS +cdH +caV +caV +caV +caO +caO +caO +caO +ccX +caV +caO +caO +caO +ccI +caO +ccz +cbG +ccp +caV +ccg +cbU +caM +cbC +cbq +caA +caO +caS +caA +bsw +bYb +bYb +bYB +bYB +bYa +bYb +bsw +bsw +bYb +bYB +bYa +bZv +bZH +bYb +bsw +bsw +bYb +bXY +bZq +bZq +bYb +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +eku +eku +eku +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +enY +ekA +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bXJ +bXI +bWE +bWM +bWb +bWE +bXm +bWE +bWM +bWM +bsw +bsw +bsw +bsw +bsw +bWd +bVX +bWb +bVX +bsw +bsw +bsw +bsw +bsw +bsw +aVD +bTQ +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(89,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +ent +enp +enl +eku +eku +cer +caz +ceT +caO +caV +cdU +caO +cdU +caV +caV +caV +caV +ccz +ccY +ccU +caS +caS +ccM +ccJ +caS +caS +caS +cco +caV +cch +cbU +caN +cbC +cbr +caA +caA +caO +caA +caA +bYb +bXY +bYx +bYx +cai +bYb +bYb +bYb +bYb +bZS +bZP +aLN +aLN +bYb +bYb +bYb +bYb +bYx +bYx +bYx +bYb +bYb +bYb +bYV +bYV +bYV +bYV +bYV +bYb +arf +bsw +bsw +bsw +bsw +bsO +eku +eku +eku +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +ell +ekA +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bXJ +bXD +bVX +bWE +bWE +bXk +bWM +bWE +bVX +bVX +bWP +bWd +bsw +bWx +bWd +bWj +bWb +bVX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bVz +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(90,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +ekA +ekQ +emX +bsO +caA +caA +caz +cea +ccz +caA +caA +caA +caV +caV +cbG +caA +caA +caA +ccK +caV +caS +caA +caA +caA +caV +caV +caA +caA +caA +aLR +caT +aLY +aLV +aLR +aLY +aLV +aLR +bgP +cJJ +aLD +aLD +aLD +caj +cae +bYv +bYv +aLK +bZI +bZI +bZI +bZI +aLM +bZD +bYv +aLK +aLD +aLD +aLD +aLD +aLA +bYb +pVd +pVd +pVd +pVd +pVd +bYb +bYb +bsw +bsw +bsw +bsw +bsO +eku +bYD +bYy +bsO +bsw +bYb +bYb +bYb +bYb +bsw +bsw +bsw +bsw +bsw +ekX +ekF +ekX +elm +ela +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bWb +bVX +bWE +bWM +bVX +bWE +bWM +bWb +bWb +bWj +bWj +bWd +bWd +bWd +bWj +bWk +bWc +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(91,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsO +bsw +enm +ekV +bsO +bsw +caA +cbY +eku +eku +bsO +bsw +bsO +ccA +cdr +cdi +caA +bsw +caA +caO +ceY +caS +caA +bsw +caA +caV +caO +caA +bsw +caA +cbW +cbN +caT +cbs +cbf +caT +caT +caM +caC +aLk +cas +bZE +aLk +aLk +emx +bYj +caa +bZK +bZK +aLk +bZK +aLk +aLk +bZE +bYj +aLk +aLk +aLk +aLk +aLk +aLB +bYR +aLz +aLt +aLt +aLt +aLq +bYR +bYb +bsw +bsw +bsw +bsw +bYb +bYJ +bYE +bYz +bYb +bYb +bYb +bYq +aNp +bYb +bYb +bsw +bsw +bsw +ekX +ekX +ekX +ekW +elk +ela +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bVX +bXK +bXv +bXv +bWL +bWE +bWE +bVX +bVX +bWj +bWk +bWD +bWD +bWD +bWj +bWj +bWd +bWd +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(92,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +ekX +elc +bsO +bsO +bsO +eku +eku +eku +bsO +bsO +bsO +cds +cds +cdj +caA +caA +caA +caV +caV +caO +caA +caA +caA +cec +caO +caA +caA +caA +cbX +cbO +caT +cbs +caT +caT +caT +caN +caC +bYH +bYI +bZE +aLk +aLk +bYX +cab +cab +aLk +bZT +bYX +aLk +bYQ +bYX +bZF +bYj +aLk +aLk +bYj +bYj +bYv +aLB +bYj +aLx +bYZ +bYm +bYZ +aLr +bYS +bYb +bsw +bsw +bsw +bsw +bYb +bYK +bYF +tro +aLe +aLe +bYc +aNt +aNq +aMg +bYb +bYb +bsw +bsw +bsw +bsw +bsw +bsO +emu +ela +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bWM +bWM +bWS +bWE +bVX +bVX +bXh +bWd +bWc +bWj +bWj +bWd +bWd +bWy +bWd +bWl +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(93,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekW +ekX +ekA +ekA +eku +eku +eku +emp +eku +eku +eku +cdv +caz +caz +caO +caO +ccz +caO +cba +ccP +caS +cbh +dTz +emJ +cct +cbE +caS +cci +aMj +cbD +cbD +cbt +aLS +aLZ +aLW +cKW +caD +cav +aLE +bZu +bZu +bZu +bZG +cac +bYI +bZX +bZL +bZQ +bZL +aLE +bZG +bYI +bYI +aLL +aLH +bYj +bYj +bYj +aLB +bYj +aLy +aLw +bZd +aLu +aLs +bYT +bYb +bsw +bsw +bsw +bsw +bYb +bXY +bYG +bYA +bXY +aLe +bYc +aNC +bYo +bYi +aLd +bYb +bsw +bsw +bsw +bsw +bsw +bsO +elT +elp +ekX +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bXL +bWM +bWE +bWQ +bsw +bVX +bVX +bsw +bsw +bWd +bWd +bWH +bWd +bWd +bWj +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(94,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +emp +ekX +ekQ +emZ +eku +emX +elc +ekE +elc +eku +eku +cMb +caz +caz +caz +caz +caO +caO +caV +caS +caS +caS +caS +cct +cbE +caO +caV +cbE +cbE +cbE +aMd +caA +caA +caU +caA +caA +bYb +aLG +aLe +aLe +aLe +bYb +bYb +bYb +bYb +bZU +bZv +aLG +aLO +bYb +bYb +bYb +bYb +aLI +bYv +bZi +bYI +emh +bYj +bYj +aLx +bZe +bZa +bYv +bYv +bYb +bYb +bsw +bsw +bsw +bYb +bYL +bYh +bYB +bXY +aLe +bYb +bYs +aNr +aNi +bYd +bYb +bsw +bsw +bsw +bsw +bsw +bsO +ekX +ela +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWS +bWM +bWE +bWE +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(95,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekW +ekX +ena +elT +ekX +emW +eku +ekX +eku +eku +eku +cdk +caz +caz +caz +caz +caz +caV +caO +ccK +caV +caO +cct +cbE +caU +caV +ccP +caS +ama +caS +caA +ceU +caV +caA +bsw +bYb +bYb +aLe +aLe +aLe +bYb +bsw +bsw +bYb +aLe +aLe +aLe +aLe +bYb +bsw +bsw +bYb +aLJ +bZu +aLE +aLE +aLC +bYh +bYr +aLy +aLv +bZb +bYh +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYM +bXY +bYa +eNi +aLe +bYb +bYb +bYc +bYc +bYb +bYb +bsw +bsw +bsw +bsw +bsw +bsO +ekX +ela +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bWM +bWE +bXw +bWI +bsw +cJW +cJK +cJK +cJK +cJK +aEl +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(96,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +ekA +ekA +bsw +bsO +bsO +bsO +eku +eku +eku +caA +caA +caA +bsw +bsw +bsw +caA +caA +caA +ccA +ccu +caA +caU +caU +caO +cbG +caV +caS +caS +caS +caO +bsw +bsw +bsw +bYb +caq +cao +cak +bYb +bYb +bYb +bYb +bYa +bYa +bYa +bYB +bYb +bYb +bYb +bYb +bZv +bZv +aLG +bYb +bYb +bYb +bZl +bYj +bZf +bYj +bYW +bYb +bYb +bYw +bXY +bYx +bYb +bYb +bYx +bYx +bYb +bYx +aLe +aLe +aLe +aLe +aLe +bYb +bsO +bsO +bsw +bsw +bsw +bsw +bsO +bsw +ekX +ekX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bXD +bXd +bWE +bsw +bsw +bsw +cJY +cJU +cJQ +cJQ +cJQ +cIn +aEk +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(97,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsO +ekA +eot +bsw +bsO +bsw +bsO +emP +emK +eku +bsO +bsw +bsO +bsw +bsw +bsw +bsO +bsw +caA +ccB +bsw +bsO +bsw +caA +cRc +caz +caz +caz +bgB +caO +caz +bsw +bsw +bsw +bYb +cal +cal +cal +bXY +bYa +bXY +bXY +bXY +bYa +bXY +bYB +bYB +aLe +aLe +bZx +bYa +aLe +aLe +bYb +bsw +bYb +bYb +bYh +aLk +aLk +bYH +cJD +bYh +elt +bYh +bYh +cKr +bYO +bYh +bYv +bYb +bYb +bYu +bYp +bYp +bYp +bYk +bYb +bYb +bYb +bsO +bsO +bsO +bsO +bsO +bsw +ekA +ekX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWE +bXd +bWM +bWE +bWI +bsw +cJZ +cJV +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(98,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +eov +eou +emT +bsO +bsO +bsO +emQ +emL +emk +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsO +bsO +bsO +bsw +cMb +caz +caz +caO +caO +caO +bsw +bsw +bsw +bYJ +bXY +bYa +bYa +bYa +bYB +bYB +bYG +bYB +bYa +bXY +bYa +bZt +bYB +bYa +bYa +bYa +bXY +bYa +bYb +bsw +bsw +bYb +bYh +aLk +aLk +aLk +aLn +aLf +aLf +aLf +aLf +aLf +aLf +aLi +aLf +aLm +aLl +aLf +aLf +bYt +aLi +aLf +bYe +bYc +ddS +eoj +bXY +eku +eku +eku +eku +elf +enS +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bXJ +bXM +bXE +bVX +bWI +bsw +cJZ +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(99,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekA +elS +ekA +ekA +emT +elc +ekA +eku +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cbE +caz +caO +cba +caO +caz +bsw +bXZ +bXZ +bXY +bYa +bYB +bYB +bYL +bYw +bXY +bXY +bXY +bXY +bYa +bYa +bYa +bXY +bYB +bYB +bYB +bYa +bYb +bsw +bsw +bYb +bZi +aLk +bYX +bYX +aLo +bYj +bYj +bYQ +aLk +aLk +aLk +aLk +bYH +bYh +bYh +bYh +aLk +bYj +bYh +bYj +aLk +bYc +bXY +bXY +eku +eku +eku +elp +ekS +elh +eld +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWM +bXN +bWj +bVX +bWI +bsw +cJZ +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(100,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekE +ekX +emU +emR +emM +ekX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cbE +caz +cbi +caz +caO +caz +caE +bXZ +bXZ +bXY +bXY +bXY +caf +bYb +bYb +bYb +bZO +bXZ +bXZ +bZJ +bxl +bxl +bxl +bxl +bXY +bYB +bYB +bYb +bsw +bsw +bYb +bYh +bZg +bYX +bYX +aLp +bYN +bYN +bYN +bYN +bYN +bYN +bYN +bYC +bYC +aLj +aLj +aLj +aLj +aLj +aLh +bYg +bYc +bXZ +ddR +ddP +eku +eku +eku +elo +eli +ele +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bss +bWM +bWd +bWd +bWH +bWI +bsw +cJZ +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(101,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +emS +emN +ekA +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +caU +caz +caz +caz +caz +caO +caF +bXZ +bXZ +bZm +bXZ +bXZ +bYb +bsw +bsw +bsO +bsw +bXZ +bXZ +bYJ +bsO +bsw +bsw +bxl +bYa +bYB +bXY +bXZ +bsw +bsw +aLe +bZj +bYj +bYY +bYY +bYU +bYh +bYh +bYh +bYh +bYh +bYP +bYh +bYI +bYj +bYh +bYv +elt +bYh +bYj +bYl +bYb +bYb +bYa +bYa +ddQ +ddO +eku +eku +eku +ekA +ekA +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bWI +bXx +bWd +bXx +bWI +bsw +cJZ +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(102,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +elc +emU +ekA +ekA +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsO +bsO +bsO +bsw +bsw +caV +caz +caz +caz +caW +caP +caG +bXZ +bXZ +bZr +bXZ +cam +bYb +bsO +bsO +bsO +bsw +eku +bZM +eku +bsO +bsO +bsO +bsO +bYw +bYa +bXY +bXZ +bXY +bXZ +bXY +bZh +bZh +aLe +aLe +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bYb +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bXP +bVX +bVX +bsw +bsw +cJY +cKb +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(103,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsO +bsw +bsw +bsw +bsO +bsw +bsO +bsw +bsw +bsO +bsw +bsO +bsw +bsw +cbG +caz +caz +caz +caX +caQ +caH +bXZ +bXZ +bXZ +bXZ +bsw +bsw +bsw +bsw +bsw +bsw +eku +eku +eku +bsw +bsw +bsw +bsw +bYa +bXY +bZp +bXZ +bXZ +bZm +bXZ +bXY +bXZ +bZc +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bWT +bWd +bXF +bsw +cJY +cKb +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(104,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsO +bsO +bsO +bsw +bsw +bsw +cbu +cbj +cbb +caY +caR +caI +caw +cat +car +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +eku +eku +bsw +bsw +bsw +bsw +bsw +bYa +bXY +bXY +bZn +bYw +bXZ +bXZ +bXZ +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bXW +bXG +bsw +cJZ +ceG +ceG +ceG +cJS +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(105,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cau +caz +cbc +caz +caz +caz +cax +cau +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ekX +elS +ekX +bsw +bsw +bsw +bsw +bsw +bsw +bZk +cLZ +bXY +bXY +bXY +bZk +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +cIX +aEk +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(106,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cau +caK +cay +caz +cay +caJ +anA +cau +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +elT +emp +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(107,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cau +cau +caz +cbd +caz +caK +cay +ceT +cau +bsw +bsw +bsw +bsO +bsw +bsw +bsO +bsw +elT +elT +bsw +bsO +bsw +bsw +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +cJY +cKb +ceG +ceG +ceG +ceG +cJR +cJT +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(108,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cau +cau +cau +cbv +cay +caz +cay +aLT +caK +cau +cau +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsO +bsO +bsO +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(109,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +dJv +cbH +ceV +caL +aMa +caZ +cay +aLP +kSj +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +cKd +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(110,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +dJv +aMh +aMe +caL +aMb +aLX +aLU +caL +kSj +bsO +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(111,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cau +cau +cau +cau +cau +cau +cau +cau +cau +cau +cau +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cKg +cJT +cKe +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(112,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsO +bsO +cJZ +ceG +ceG +ceG +cKc +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(113,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cJQ +cKb +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(114,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(115,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +cKd +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(116,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(117,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(118,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(119,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(120,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(121,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +cKi +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(122,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(123,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(124,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cMS +cMS +cMS +cMS +cMS +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(125,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dDW +dXP +edz +dXD +dDG +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(126,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNH +dXQ +edz +dXE +cNk +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eQo +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(127,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNI +dXQ +edz +dXE +cNk +eQo +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +dvf +eQo +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cJQ +cKb +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(128,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNI +dXQ +dDR +dXE +cNk +eQo +dvf +dQY +dQU +dPK +dQK +dPK +dPK +dPK +dQs +dzC +dzC +dPY +dzC +dzC +dPC +dvf +dvf +dyv +dPs +dPf +dxe +dwh +dOY +dwh +dvI +dRx +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cJQ +cKb +ceG +ceG +ceG +ceG +ceG +ceG +cKh +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(129,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNH +dXR +edz +dDO +cNk +eQo +dPz +dPL +dPL +dzD +dzD +dQG +dQD +dPL +dPL +dPL +dPL +dPZ +dPS +dPL +dPD +dzi +dvf +dyw +dPs +dPg +dxf +dwi +dwi +dwi +dvJ +dOO +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +cKd +ceG +ceG +ceG +ceG +ceG +cIX +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(130,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNH +dXR +edz +cNn +cNk +eQo +dDp +dzQ +dzE +dAQ +dAE +dAg +dzQ +dBZ +dzQ +dzE +dAQ +dAE +dAg +dzQ +dzE +dPy +dvf +dxS +dxO +dPh +dvK +dwj +dwj +dwj +dOU +dOP +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(131,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dSR +cNA +edz +dXF +cNk +eQo +dDp +dzR +dzF +dAR +acu +dAh +dzR +dzR +dzR +dzF +dAR +dAG +dAh +dzR +dzF +dPy +dvf +dyx +dPs +dxt +dxg +dwS +dwB +dwk +dvL +dOO +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cJQ +cKb +ceG +ceG +ceG +ceG +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(132,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dDX +dXS +dDS +dDP +dDH +eQo +dPz +dQa +dQa +dQa +dQL +dzG +dzH +dzH +dzH +dzH +dQa +dQa +dzG +dzG +dPE +dPy +eQp +dyy +dPt +dRz +dxh +dwT +dOZ +dOW +dvM +dOO +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +cKk +ceG +ceG +ceG +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(133,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dDY +dDU +dDT +dXG +dDI +eQo +ajp +dQu +dzH +dzH +dQM +dPF +dzH +dSg +dPF +dPF +dzH +dQb +dPF +dPM +dPF +dPy +dyB +dOZ +dOZ +dPf +dvf +dwm +dvr +dwm +dvf +dvq +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +ceG +ceG +ceG +cJR +cJT +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(134,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +bta +dDZ +dXT +bgQ +cNr +dDJ +eQo +dvf +dDe +dzI +dAS +dzH +dPF +dzS +dQz +dQt +dQn +dAS +dzH +dzH +dzS +dzI +dzj +dvf +dvf +dvf +eQp +dvf +dvp +dwC +dwl +dvf +dvr +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +ceG +ceG +ceG +cJR +cJT +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(135,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dDZ +dXT +bgQ +dXH +dDJ +mAQ +dvf +dvf +dvf +dvf +dQN +dPL +dvf +dvf +dvf +dvf +dvf +dAH +dzD +dvf +dvf +dvf +dvf +dvf +dxP +dxu +dPc +dwU +dwD +dwn +dvN +dvs +dvf +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +ceG +ceG +ceG +cKj +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(136,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dNL +dXU +bgQ +dNk +dDJ +mAQ +dvf +dDf +dCW +dvf +dzH +dAi +dvf +dCa +dBJ +dBs +dvf +dzH +dAi +dvf +dzJ +dzk +dvf +dvf +dxQ +dPi +dxi +dwo +dwE +dwo +dvO +dOQ +dvf +eQo +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJZ +ceG +ceG +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(137,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNN +dXT +bgQ +dXI +dch +dvf +dvf +dDg +dBt +dQg +dQa +dQa +dzT +dPG +dQu +dBt +dQg +dzG +dzG +dzT +dPG +dzl +dvf +dvf +dxR +dPj +dxj +dwp +dwp +dwp +dvP +dOR +dOG +eQo +dWt +dWt +dWt +dtm +dWt +dWt +dWt +bgC +dtt +dtn +dti +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +cJV +ceG +ceG +ceG +cJR +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(138,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNO +dXS +dzX +dXJ +dch +dvf +dDq +dPy +dBx +dQQ +dPK +dzC +dPK +dPK +dPK +dzC +dzC +dzC +dzC +dPN +dPH +dPz +dyC +dvf +dPu +dPl +dPd +dwV +dOX +dOX +dvK +dvv +dOH +eQo +dWt +dWt +dWt +due +dtm +dWt +dWt +bgC +dtu +dto +dtj +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cJY +cKb +ceG +ceG +ceG +cJR +cJT +cJt +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(139,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXG +dch +dvf +dDs +dPy +dQV +dQR +dQO +dQH +dQc +dQc +dQv +dQc +dQc +dRQ +dPT +dzU +dzi +dPz +dyD +dvf +dxT +dxw +dxk +dwp +dwp +dwp +dvQ +dOR +dOI +eQo +dWt +dWS +dua +duf +dua +dWC +dWt +bgC +dtv +dtp +dtk +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ahW +dst +cKb +ceG +ceG +ceG +ceG +cIX +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(140,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXG +dch +dvf +dDt +dPy +dzl +dQS +dPP +dCw +dCl +dQA +dBK +dBu +dAT +dAI +dPU +dPO +dPI +dPz +dyE +dvf +dxU +dxv +dxl +dwr +dwr +dwr +dvR +dvw +dvf +eQo +dtm +duu +dua +duh +dua +dtO +dtm +bgC +dtw +dtq +dtl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +ahW +dsu +cYB +drN +drN +drN +cYA +dsd +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(141,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNL +dXT +bgQ +dXI +dDJ +dvf +dvf +dDh +dPz +dPU +dPP +dCx +dvf +eQo +eQo +eQo +dvf +dAJ +dPV +dPP +dPy +dzm +dvf +dvf +dxV +dPm +dxi +dwo +dwo +dwo +dvS +dOS +dvf +eQo +dtm +duu +dua +dtm +dua +dtO +dtm +bgC +bgC +dtr +bgC +bta +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +bgJ +dqu +dqu +dqu +dqu +dqu +bgE +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(142,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dOa +dNL +dNB +bgQ +dXI +dDJ +dDC +dDu +dDi +eeE +dPU +dPP +dCx +dvf +dBw +dBw +dBw +dvf +dzl +dPU +dPP +dPy +dzl +dyF +dyz +dPv +dxw +dxj +dwp +dwp +dwp +dvT +dvu +dOJ +eQo +dtm +dtm +dtm +dtm +dtm +dtm +dtm +dtm +dWt +dWt +dWt +bta +ahW +dtc +dUV +dUP +dUK +dUB +dsz +dUx +hNj +dsp +drM +drM +drM +drD +dpw +dUp +dUm +bgJ +dqu +dqu +dqu +crd +ceP +drm +cKl +ceP +dqT +dTW +dTU +dTP +ddE +dTJ +ddE +dTE +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(143,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dNL +dXT +bgQ +dXI +dDJ +dDC +dAK +dDi +dPz +dPU +dPO +dQI +dQE +dQB +dQw +dQo +dAU +dzo +dPU +dPO +dPy +dzl +dvg +dyz +dOZ +dPn +dvK +dwq +dRy +dOX +dOU +dOT +dOK +eQo +dtm +dtm +dtm +dWt +dWt +dWt +dtm +dtm +dtm +dWt +dWt +bta +ahW +dsN +dUW +ddE +ddE +ddE +ahW +dUy +hNj +dsq +aTb +aTb +aTb +drE +dpw +ceP +bFL +hNj +drR +drM +drD +dpw +ceP +ceL +cKl +ceP +bFL +dTX +ddE +dTQ +dTM +azu +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(144,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dEv +dAC +dAC +dNL +dXT +bgQ +dXI +dch +dvf +dvf +dDj +dPz +dQT +dQP +dQJ +dCm +dQC +dQx +dQp +dQh +dQd +dPW +dPQ +dPJ +dzn +dvf +dvf +dPw +dPp +dxk +dwp +dwp +dwp +dvU +dvu +dOL +eQo +bgC +dtr +bgC +bgC +dWt +dWt +bgC +bgC +dtr +bgC +bgC +bta +ahW +dtd +dUW +dsP +dsJ +dsC +ahW +iVJ +hNj +dsq +aTb +aTb +aTb +drE +dpw +ceP +bFL +hNj +drS +aTb +drE +dpw +dUg +dUe +cKl +dUd +dsf +dTY +ddE +ceP +bFL +ceL +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(145,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +pQM +dRl +dRj +dAC +dAC +dNP +dXS +dzX +dXK +dDJ +dvf +dCX +dzi +dBt +dPR +dSw +dPR +dQF +dzI +dQy +dQq +dPR +dPR +eey +dPR +dzK +dPz +dyG +dvf +dxW +dPq +dxl +dwr +dwF +dwr +dvR +dvt +dvf +eQo +dtm +dWt +dWt +bgC +dWt +dWt +bgC +dtm +dtm +dtm +dWt +bta +ahW +dte +dUH +ddH +ddE +ddE +dTE +iVJ +hNj +dsq +aTb +aTb +aTb +drE +dpw +bFL +bFL +dsa +drS +aTb +drE +dpw +dTI +dUb +dUb +dUb +dUb +dTV +dTV +dTR +cnJ +dTK +ddH +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(146,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +pQM +unk +dRk +dRf +dEa +dNQ +dNC +dzX +dNl +dNb +dvf +dCX +dAU +dQW +dzC +dzC +dPK +dPK +dzL +dzH +dQr +dzV +eez +eez +eex +dPK +dPA +dyH +dvf +dxX +dxx +dPe +dwW +dwG +dws +dvV +dvx +dvf +bta +dtm +dWt +dWt +bgC +dWt +dWt +bgC +dtm +dtx +dWt +dWt +bta +ahW +dtf +bFL +dsQ +dsK +dsD +ahW +iVJ +hNj +dsq +aTb +aTb +aTb +drE +dpw +bFL +dUn +dTZ +aTb +aTb +drE +dpw +drv +bgJ +dqu +dqu +dqu +dqO +dqu +dqu +apG +crd +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(147,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dRo +dRm +cmb +dRg +dRc +dNR +dND +dzX +dNm +dNc +dvf +dvf +dCX +dCX +dvf +dvf +dvf +dvf +dCb +dBL +dBy +dvf +dAK +dAj +dvf +dzp +dzp +dvf +dvf +dvf +dvf +dvf +eeu +eer +eeo +dvf +dvf +dvf +bta +dtm +dtm +dtm +bta +dtP +dtP +bta +dtz +dty +dts +bta +bta +ahW +dtg +bFL +dUQ +dsL +dsF +ahW +iVJ +hNj +dsr +dsk +dsk +dsk +dsg +dpw +bFL +bFL +hNj +drT +dsk +drG +dpw +drv +hNj +drd +dqZ +dqU +aTb +aTb +dqC +apO +ant +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(148,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dEv +dRp +dRn +aoF +dRd +dRd +dDZ +dXT +bgQ +dXH +dNd +dMZ +dvf +dvf +dvf +dvf +dLg +dAP +dvf +dvf +dvf +dvf +dvf +dAk +dAk +dvf +dvf +dvf +dvf +dvf +eem +eem +dvf +eev +dvf +dwm +dvf +eem +eem +bta +bta +bta +bta +bta +eem +eem +bta +bta +bta +bta +bta +bta +ahW +dUL +dUB +dsR +dsM +dsG +ahW +iVJ +bgK +dqz +dqz +dqz +ddG +dsh +dqr +ceP +dsb +bgK +dqz +dqz +dqz +dqr +drv +hNj +dqZ +dqU +aTb +aTb +aTb +aTb +dqw +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(149,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +pQM +dRq +dRo +bta +dRi +dRe +dNS +dXT +bgQ +dXB +dCv +dDD +dMO +dIN +dIq +dIz +dIz +dIz +dyI +dyI +dKo +dIz +dIz +dIz +dJr +dIz +dIN +dIz +dIq +dIg +dka +dka +dka +mdH +dPa +mdH +dFQ +mdH +mdH +mdH +mdH +dGz +dka +dka +mdH +dFQ +mdH +mdH +dka +dka +djZ +txM +ahW +ahW +dry +ahW +ahW +ahW +ahW +dsw +dse +dse +dsi +dse +dsi +dsi +dse +dsc +ddE +dqs +dqs +dqs +dTS +dTS +dUh +hNj +dre +aTb +aTb +dTZ +dqK +aTb +aTb +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(150,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +pQM +dRr +dRl +bta +eeK +bgG +dNL +dXS +bgQ +bgQ +dXB +dXs +dXs +dyJ +dyJ +dLw +dXs +dXs +dXo +dyJ +dXz +dXz +dJS +dXs +dXs +dXo +dyJ +dyJ +dyJ +dVP +dHY +dVP +dVF +dVX +dVX +dHp +dHl +dVF +dGU +dVP +dVH +dVH +dVX +dVP +dVP +dVP +dVP +dVP +dVF +dVF +cZo +edK +djT +ahW +edC +dUr +dUr +dsH +bta +dsx +ddD +cKl +ddE +cKl +cKl +ddE +bFL +bvP +bta +bgJ +drU +dqu +drH +drz +drw +drn +dre +aTb +aTb +dTZ +aTb +aTb +aTb +dfS +dTF +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(151,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dRs +unk +dTr +bta +dEf +bgG +dNL +dXS +bgQ +bgQ +bgQ +bgQ +bgQ +dzX +dzX +dzX +dzX +dzX +bgQ +bgQ +bgQ +bgQ +dzX +dzX +dJs +dzX +bgQ +bgQ +bgQ +dqS +dqS +dqS +dqS +cZg +cZg +cZg +dqS +dqS +dqS +dqS +cZg +eeN +cZg +dqS +dqS +dqS +dEE +cZg +cZg +cZg +dWh +cZo +cZi +ahW +dUX +dUR +dUr +dUC +bta +dsx +bFL +cKl +dUv +ddE +cKl +dUt +bFL +cZv +bta +hNj +drX +drP +drI +jxl +dTM +dro +dre +aTb +aTb +dTZ +aTb +aTb +aTb +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(152,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dRs +unk +bta +bta +dAC +dAC +dNL +dXS +bgQ +bgQ +dXC +dXm +dXm +dyK +dyK +dXw +dXw +dXw +dXw +dyK +dyK +dyK +dXx +dXw +dXm +dXm +dyK +dIA +dyK +dWj +dWj +dHL +dWj +dVN +dVN +dVI +dWj +dHd +rJT +rJT +ddT +dVN +dVN +dVG +dVG +dWj +dWw +dWj +drK +cZg +cZg +dVZ +cLY +eef +edC +edY +edY +dUD +bta +dsx +bFL +cKl +cKl +ddE +cKl +ddE +bFL +cZv +bta +hNj +drY +ceN +drJ +jxl +bFL +drp +drf +dqV +aTb +aTb +aTb +aTb +dqx +dpw +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(153,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +pQM +lED +bta +bsw +bsw +dAC +dNT +dNE +bgQ +dXC +dAl +dDE +dyL +dMn +dyL +dyL +dyL +dKV +dJH +dKv +dJH +dJH +dJH +dJH +dyL +dyL +dyL +dyL +dyL +wlk +wlk +dHM +wlk +wlk +wlk +dwt +wlk +wlk +wlk +dGI +dGI +wlk +dGr +wlk +wlk +wlk +wlk +vEi +cZo +dWu +cZg +dWn +cLY +ahW +edC +edC +dUr +dUE +bta +dsx +bFL +cKl +cKl +ddE +cKl +ddE +dUr +cZv +bta +hNj +drY +ceN +drJ +jxl +dUi +drq +drg +dra +dqV +aTb +aTb +dqD +dqy +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(154,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +bta +bsw +bsw +dAC +dNU +dXT +bgQ +dXI +dDL +dBz +dtA +dtA +eeF +dtA +dbi +dbi +dtA +dtA +dtA +dtA +dtA +dbi +dbi +dtA +dtA +eeF +dtA +dtA +dHZ +rEA +dtA +eew +dwH +dtA +dtA +rEA +rEA +dtA +dtA +dtA +dtA +dtA +rEA +rEA +dtA +dsE +hjg +dkb +cZg +dVY +cLY +ahW +ahW +dUS +dUr +dUE +bta +dsx +bFL +cKl +dUw +cKl +ddH +ddE +dUr +cZv +bta +hNj +drY +ceN +drJ +drA +drx +bgK +drh +dqz +dqz +dqP +dqz +dqE +dqz +dTL +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(155,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dSS +dXT +bgQ +dXH +dch +dtA +dtA +dDk +eeG +dtA +dtA +dtA +dtA +dCc +dBM +dOB +dtA +dtA +dtA +dtA +dzM +efC +dyM +dtA +dtA +dtA +dtA +dwX +ees +dOs +dtA +dtA +dtA +dtA +duB +dum +dum +dtA +dtA +dtA +dtA +dtA +cLP +dWd +dqS +dVY +cLY +dis +ahW +dsS +dUr +dUF +bta +afy +afx +afw +aft +cKl +cZO +ddE +bFL +cZv +bta +hNj +drZ +drQ +drL +drA +cKl +dTS +dTS +dTS +dTS +dTS +dTS +dTS +dTN +dqs +dTG +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(156,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dNF +dzX +dXH +dch +dtA +dDv +dMo +eeG +dLx +dCH +dtA +dCn +dCd +dBN +dun +dAV +dtA +dAm +dzZ +efC +efC +dXn +dtA +dxY +dxy +dxm +ees +eet +dOs +dtA +dvy +dOM +dOF +dOD +dGs +dun +dtA +dGg +dFR +dFH +dtA +cZA +dWv +dqS +dVY +cLY +dis +ahW +cKl +efy +cKl +bta +dsy +bFL +cKl +afu +cKl +ddE +cKl +dUs +cZv +bta +bgK +dqz +dqz +dqz +drB +dUj +bgJ +dqu +dqu +dqu +dqO +dqu +dqu +dqu +crd +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(157,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXT +dzX +dNn +dch +dtA +dDw +dMp +dLU +efD +dLh +dtA +dCn +dCe +dBN +dGs +dun +dAL +dyO +dIB +efC +efC +dyP +dtA +dxZ +dHN +dxn +dHt +ees +dwu +dtA +dOC +dON +duQ +dOE +dGs +dun +dtA +dGh +dFS +dFI +dtB +cLP +dWd +cZg +dVY +cZi +ahW +ahW +ahW +ahW +dry +ahW +cZE +dsf +dsf +dso +dsf +dsl +dsf +dsf +cZX +cKl +drC +dUl +drC +drC +drC +dUj +hNj +drd +drb +dqW +ceN +ceN +dqF +dqv +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(158,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNL +dXT +bgQ +dNo +dch +dtA +dtA +dMq +dCY +dLy +dCJ +dtA +dCn +dun +dBN +dGs +dAW +dtA +dAn +dyO +dIB +dyO +dyQ +dtA +dya +dxz +dxo +dHt +dHt +dwv +dtA +dOC +dvh +duR +duC +dun +dun +dtA +dGi +dFT +dFK +dtA +cZA +dWe +cZg +dWa +cZi +ahW +dsL +dsT +dsN +ddD +ahW +ufc +bgJ +dqu +cMI +dqu +dqu +dqu +crd +dad +dsb +bgJ +drU +dqu +drH +crd +dUj +hNj +drb +dqW +ceN +ceN +ceN +ceN +dqA +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(159,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dNL +dXT +bgQ +dXL +dDJ +dNa +dtA +dMr +eeD +dLz +dCK +dtA +dCn +dun +dBN +dBA +dAX +dtA +dXt +dAa +dRD +dyO +dyR +dtA +dyb +dxA +dxp +dHt +dwJ +dww +dtA +dun +dGV +duD +duD +dGB +dGs +dtA +dGj +dDm +dFL +dtA +dOt +dWl +cZg +djX +cYX +ahW +dsM +dsU +dUL +dUG +ahW +ufc +hNj +drX +drP +drP +drP +drI +dpw +dad +dsb +hNj +drX +drP +drI +dfS +dUj +hNj +dri +ceN +ceN +ceN +ceN +ceN +ceN +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(160,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dOb +dNL +dXU +bgQ +dXI +dch +mAQ +dDx +dMs +dLV +eeD +dCL +dtA +dCn +dCf +dBN +dGs +dXy +dtA +dAo +dAb +dyO +dyO +dyS +dtA +dyc +dHt +dHt +dHt +dHt +dVh +dtA +dun +dGs +dGs +dGs +dun +dGt +dtA +dGk +dFU +dtA +dtA +cLP +dWf +cZg +dVZ +cZi +ahW +ahW +dsV +dsO +bFL +ahW +ufc +hNj +drY +ceN +ceN +ceN +drJ +dpw +dad +dsb +hNj +drY +ceN +drJ +dpw +dUj +drn +dri +ceN +ceN +dqQ +ceN +ceN +ceN +dfS +dTH +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(161,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dDZ +dXT +bgQ +dXI +dch +dtA +dtA +dMt +dCZ +dLz +dCM +dtA +dXA +dGt +dun +dGs +dAY +dtA +dXv +dXr +dyO +dIC +dyT +dtA +dyd +dHu +dHH +dwI +dwK +dwu +dtA +dun +dGW +dGs +dun +dGs +dGs +dtA +dGl +dDm +dtA +fIx +cZA +dWv +dqS +dVY +cZi +dta +ahW +dsW +dUN +dUH +ahW +ufc +hNj +drY +ceN +ceN +ceN +drJ +dpw +dad +dsb +hNj +drY +ceN +drJ +dpw +dUj +hNj +dri +ceN +ceN +dUa +ceN +ceN +ceN +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(162,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dDZ +dXS +dzX +dXG +dch +dtA +dDy +eeD +dLz +dtD +dCN +dtA +dCo +dKw +dun +dAZ +dQi +dtA +dAc +dAc +dzN +dIB +dyT +dtA +dye +dwI +dxq +dwY +dwL +dwx +dtA +dOC +dOC +dOA +dum +bgR +duo +dtA +dGm +dDm +dtA +fIx +cZA +dWf +dqS +dVY +cZi +dta +ahW +dsX +ddE +ddE +ahW +ufc +hNj +drY +ceN +ceN +ceN +drJ +dpw +dad +dsb +hNj +drY +ceN +drJ +dpw +drv +drr +drj +dqX +ceN +dUa +ceN +ceN +dqB +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(163,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXG +dch +dtA +dDz +dMu +dLW +dCQ +dCO +dtA +dtA +dtA +dBO +dGJ +dtA +dtA +dtA +dtA +dtA +dzq +dtA +dtA +dtA +dxB +dGJ +dtA +dtA +dtA +dtA +dtA +dGJ +duS +dGJ +dtA +dtA +dtA +dFR +dFV +dtA +dtA +cZA +dWf +cZg +dVZ +efB +ahW +ahW +dsY +ddE +cKl +ahW +ufc +hNj +drY +ceN +ceN +ceN +drJ +dpw +dad +dsb +hNj +drZ +drQ +drL +dpw +drv +dru +drk +drc +dqX +dUa +ceN +dqG +dqy +dfS +ddE +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(164,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXV +dNy +dXG +dch +dtA +dDA +dMv +dCI +dCR +dtA +dCy +dKH +dGs +dGs +dKb +dHn +dJI +dGs +dJb +dIO +dOA +dOA +dIh +dyf +dOA +dOC +dHz +dun +dun +dun +dHe +dGs +dGs +dOA +dGD +dtA +dtA +dtA +dtQ +dtA +dtA +cZA +dWl +cZg +dWo +cLY +eef +edZ +edZ +dUH +cKl +ahW +dUz +hNj +dss +drQ +drQ +drQ +dsj +dpw +dad +dsb +bgK +dqz +dqz +dqz +dqr +drv +bgK +drl +dqz +dqz +dqP +dqz +dqE +dqz +dqr +dTI +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(165,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dDZ +dXU +bgQ +dXH +dch +dtA +dtA +dDl +dtA +dtA +dtA +dOC +dOA +dKx +dBP +dBB +dPX +dPX +dAp +dun +dun +dID +dHw +dGs +dIa +dHO +dGt +dHA +dIB +dIB +dOV +dIB +dGX +dun +dGs +dGE +dGv +dtA +dtA +dFW +dtA +dtA +cZA +dnr +cZg +dWo +cLY +ahW +dUY +dUT +dUH +dUH +dsz +dUA +bgK +dqz +dqz +dqz +ddG +dsh +dqr +dUq +dUo +dUc +dTO +dqt +dTO +dVQ +dUk +dUf +dqt +dTO +dUc +dTO +dTO +dTT +dTO +dqt +cKl +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(166,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dDZ +dXU +bgQ +dXI +dch +mAQ +dtA +dMw +bta +jpq +dOA +dKW +dGs +dKy +dBQ +dKd +dPX +dPX +dAq +dJc +dGs +dPB +dIr +dIi +dPr +dHP +dGs +dGs +dIB +dHr +dvW +dHf +dGY +dun +dun +dGF +dOA +hoh +bta +dFX +dtA +dtA +cLP +dWf +cZg +dVY +cLY +ahW +bFL +dUL +dUO +dUI +ahW +ahW +dsv +dWk +dsm +edJ +dsm +dWi +ceK +ahW +ahW +ahW +ahW +ahW +ahW +ahW +dry +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(167,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dST +dDZ +dXW +bgQ +dXH +dDJ +mAQ +dtA +dMx +bta +jpq +dOC +dOC +dun +dun +dBR +dPX +dJT +dAM +dPX +dJd +dGs +dIE +dIE +dIj +dIb +dPr +dun +dGs +dIB +dwy +dvX +dHg +dIB +dGR +dun +dun +dOB +hoh +bta +dDm +dtA +bWn +cLP +dWd +dqS +dWp +djU +dth +eeM +dUL +efz +dUJ +dsA +eeL +edM +dWk +dqS +dqS +dqS +dWi +edE +ahW +bsw +bsw +bsw +ahW +dVS +cKl +dUr +dVL +dVJ +ahW +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(168,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNL +dXT +bgQ +dXH +dDJ +dtA +dtA +dVq +bta +jpq +dOC +dOC +dun +dKz +dtA +dKe +dtA +dtA +dtA +dJe +dHn +dtA +dtA +dtA +dtA +dtA +dHJ +dHB +dtA +dtA +dtA +dHh +dtA +dGS +dun +dun +dOA +hoh +bta +dFY +dtA +fIx +cLP +dWd +dqS +dVZ +cZi +dth +dtb +dUL +efA +dUJ +dsB +eeL +edM +dWk +dqS +dEE +dqS +dWi +edE +ahW +bsw +bsw +bsw +ahW +dVT +edC +dVO +cKl +dVK +ahW +bsw +bsw +bsw +bsw +bsw +bta +bta +bta +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(169,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNT +dXV +dNz +dXG +dDJ +dtA +dMP +dMy +bta +jpq +dOC +dOB +dGs +dGs +dBT +dKf +dQj +dJJ +dJt +dGs +dHn +dzr +dPr +dIk +dPr +dxC +dGs +dGs +dIB +dIB +dHo +dHi +dGZ +dGs +dGs +dun +dOA +hoh +bta +dFZ +dtA +dtA +cZA +dWd +dqS +dVY +cZk +ahW +ahW +dUU +dis +dUJ +ahW +ahW +edM +dWk +dqS +dqS +dqS +dWi +edE +ahW +ahW +bsw +bsw +ahW +dVU +dVR +edD +edC +edB +ahW +bsw +bsw +bsw +bsw +bta +bta +dVx +dVx +dVx +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(170,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNV +dXV +dNA +dXG +dDM +dtA +dDB +dDm +bta +jpq +dLi +dOA +dKI +dHC +dKp +dKg +dQk +dQf +dJu +dHn +dun +dIF +dIt +dIl +dPr +dPr +dun +dHC +dIB +dIC +dOV +dHj +dHa +dGs +dGs +dGG +dGw +hoh +bta +dDm +dtA +dqY +cZA +dWd +dqS +dVZ +daA +cZw +ahW +ahW +ahW +ahW +ahW +dae +cZY +dWl +cZg +cZg +cZg +dWa +cZx +cZw +dqY +dqY +dqY +dqY +dqY +dqY +dwR +dqY +dqY +dqY +dqY +bta +bta +bta +bta +dsn +dsn +dsn +dsn +dsn +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(171,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dDZ +dXX +dzX +dXG +dNe +dtA +dtA +dDl +dtA +dtA +dtA +dKX +dKJ +dGs +dKq +dKh +dQl +dPX +dJw +dJf +dun +dun +dGs +dIm +dun +dun +dun +dun +dPb +dIB +dIB +dyO +dyO +dGt +dGs +dOA +dGx +dtA +dtA +dGa +dtA +dqY +daP +dWf +cZg +dWq +daB +dav +cZI +cYS +cZI +cZM +cYS +daf +dqM +dWg +cZg +cZg +cZg +daH +cZF +cZx +cYS +cMB +cZb +cYS +cRv +aiz +cYS +dVM +cYS +cMB +cMy +cYS +dqL +cYS +dUu +dUu +dUu +dUu +dUu +dUu +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(172,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dEa +dXT +bgQ +dXI +dNf +dtA +dtA +dMz +dLX +dLB +dtA +dtA +dKL +dGs +dKr +dGs +dGs +dJK +dJx +dCh +dOA +dOC +dOC +dIn +dOC +dOC +dOC +dun +dun +dun +dun +dCh +dun +dun +dOC +dOC +dtA +dtA +dtA +dtQ +dtA +dqY +cZA +dWe +cZg +cZg +dWh +dVF +bVR +dVF +dVF +dVP +dVP +dVF +dWg +cZg +cZg +cZg +cZg +cZg +dWh +dVF +dVX +dVX +dVX +dVV +cVY +cNU +dVP +cMD +dVH +dVH +dVF +dqR +dVF +dqI +dVy +dVy +dVA +dVA +dVy +bnl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(173,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bta +afv +bta +bta +dAC +dAC +dEd +dEb +dXT +bgQ +dXJ +dch +mAQ +dtA +dMA +dLY +dLC +dLk +dtA +dtA +dtA +duS +dtA +dtA +dtA +dtA +dtA +duS +dtA +dtA +dtA +dtA +dtA +duS +dtA +dtA +dtA +dtA +dtA +duS +dtA +dtA +dtA +dtA +dtA +dGn +dGb +dtA +fIx +cZA +dWe +cZg +cZg +cZg +eeg +dqS +cZg +cZg +cZg +dqS +dqS +dqS +cZg +cZg +cZg +cZg +cZg +dqS +cZg +cZg +cZg +cZg +cZg +dqS +cMF +dqS +dqS +daw +cZg +cZg +cZg +dqN +dqJ +ctA +edz +edz +edz +ctA +bnl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(174,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cNK +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +dEz +bgD +bgD +dEw +dEv +dEn +dEr +dEn +dEk +dEf +dEh +dOc +cNB +dDV +bgQ +dNp +dDJ +mAQ +dtA +dDn +dDa +dLD +dLl +dtA +dCp +dKj +dBU +dKi +dBb +dtA +dAr +dzw +dzw +dzs +dyU +dtA +dyg +dwN +dwP +dHD +dwM +dtA +dvY +dvz +dGK +duU +duE +dtA +dup +dui +dtS +dVb +dtA +fIx +cZA +dWe +cZg +cZg +dVW +dVG +dWm +dVG +dVG +dVG +dVG +dVG +dVN +dVN +dcr +dVG +dVG +dVN +dVN +dWc +cZg +cZg +cZg +dVW +cVZ +cOd +dVG +dVN +ddT +dVI +dVG +cLX +dVG +dVE +dVz +dVz +dVB +dVB +dVz +bnl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(175,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cNK +bgD +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +dcf +dcf +eMV +eMV +pQM +dEv +dEn +dEs +dEn +dVr +dEe +eeK +dBz +dDV +bgQ +bgQ +dXJ +dDJ +dtA +dtA +dDo +dDb +dLF +dLm +dtA +dCq +dKA +dKj +dBD +dBc +dtA +dAs +dzw +dzw +dzt +dyV +dtA +dyh +dxD +dHK +dwP +dwN +dtA +dvZ +dGL +dGK +dGK +duF +dtA +dtA +dtA +dGb +dGc +dtA +cZe +cZA +dWd +cZg +dWr +daC +cZc +cYV +cYV +cYV +dam +dqM +dqM +cZc +cYV +cYV +dcm +dca +cYV +cZG +ciR +dWc +cZg +dVW +dqM +cWa +cOe +cYV +cZq +cZq +cMC +cYV +cYV +cYV +cYV +dVw +dVw +dVw +dVw +dVw +dVw +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(176,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cNK +bgD +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cqy +cYR +cqy +dRt +cqy +cqy +cqy +dEu +dEe +dEo +dEl +dEi +dzX +dzX +bgQ +bgQ +bgQ +dXJ +dch +dtA +dMQ +eeG +dDc +dLG +dLn +dtA +dCr +dBC +dKj +dBC +dBd +dtA +dAt +dJg +dIG +dzu +dyW +dtA +dyi +dHQ +dHK +dwP +dwO +dtA +dwa +dGK +dGK +dGK +dGK +dtA +dup +dui +dGb +dGb +dtE +dqY +cZA +dWd +dqS +dVY +cZc +cZd +edF +edF +edF +efw +edO +edO +ciR +edF +edF +edF +edF +edF +cZH +cZy +dWd +dqS +dVY +cZh +cZd +dqY +dqY +dqY +dqY +dqY +dqY +bta +bta +bta +bta +dsn +dsn +dsn +dsn +dsn +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(177,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cNK +bgD +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +eMV +dcf +dcf +eMV +pQM +dEx +pQM +dEn +dEt +dEp +dEm +dEj +eeK +eeK +dBz +bgQ +bgQ +dXG +dNg +dDF +dMR +dMB +eeH +dFW +dLp +dtA +dKM +dBC +dKj +dKj +dBe +dtA +dJy +dzw +dIG +dzw +dyX +dtA +dIc +dwP +dHK +dwP +dwP +dtA +dwb +duG +dvi +duV +dGL +dtA +dtA +dtA +dGb +dFg +dFM +dqY +cLP +dWf +dqS +dVY +djV +edF +edF +edF +edF +edF +edR +edP +edF +edF +edF +dcg +dcg +edF +edF +cLP +dWd +dqS +dVY +cZi +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +dVx +dVx +dVx +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(178,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +cNK +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +bgD +cYQ +dEw +pQM +dEv +dEy +dEv +dEn +dEe +dEq +dEe +dEe +dEf +eeK +dBz +dDV +bgQ +dXM +dNh +dtA +dMS +dMC +dLZ +dCI +dLq +dtA +dtA +dwZ +dtA +dBE +dtA +dtA +dtA +dwZ +dtA +dzx +dtA +dtA +dtA +dxE +dtA +dwZ +dtA +dtA +dtA +dvA +dtA +duW +dtA +dtA +dup +dui +dGb +dGd +dFN +dqY +cZA +dWd +dqS +dVY +cZl +edF +edF +djK +edF +edF +edQ +edQ +edF +edF +rPT +ahS +ahS +daN +edF +cZz +dWd +dqS +dVY +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +bta +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(179,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bgC +bta +bta +dAC +dAC +dAC +dAC +dEf +dEc +dXY +bgQ +dNq +dDJ +dtA +dtA +dMD +dMa +dLH +dLr +dtA +dAu +dGb +dtA +dKk +dBf +dtA +dAu +dtS +dtA +dIG +dyY +dtA +dyj +dHK +dtA +dtS +dHx +dtA +dwc +dGK +dtA +duX +duH +dtA +dtA +dtA +dGb +dtS +dqY +dqY +cZA +dWf +dqS +dVY +cZi +edF +djR +djL +edF +djD +edV +edR +cZZ +edF +edH +cZP +cZP +cZJ +edF +dxr +cZr +dqS +dVZ +cWd +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(180,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dEa +dXW +bgQ +dXH +dDJ +mAQ +dtA +dME +dCI +dCI +dLs +dtA +dAv +dKB +dtA +dBF +dBg +dtA +dAv +dJh +dtA +dIH +dyZ +dtA +dwP +dHR +dtA +dAv +dHy +dtA +dGK +dHk +dtA +duY +dGM +dtA +duq +dGb +dGo +dVc +dqY +fIx +daQ +dWd +dqS +dVY +cYX +edF +das +djM +edF +edV +daj +atJ +eft +edF +cLQ +cZR +kqH +cZK +edF +cLP +dWe +cZg +dWa +cLY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(181,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXU +dzX +dXH +dDJ +mAQ +dtA +dMF +dMb +dLI +dCP +dtA +dAw +dxa +dtA +dBG +dBh +dtA +dAw +dxa +dtA +dzy +dzb +dtA +dyk +dxF +dtA +dxa +duI +dtA +dwd +duG +dtA +duZ +dGN +dtA +dur +dGb +dtS +dtT +dqY +fIx +cLP +cZt +cZg +dWo +cZi +edF +edS +edG +edF +edG +dsI +dsI +edG +edF +edH +cZP +cZP +edG +edF +cLP +dWe +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(182,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNT +dNG +dzX +dXH +dDJ +dtA +dtA +dtA +dtA +dCS +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dxG +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +duc +dtC +dtC +bUW +cLP +dWe +cZg +dWo +cLY +edF +cZP +edH +edF +edG +cZP +cZP +jOW +mxJ +piV +cZS +edG +edG +edF +cZA +dWe +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(183,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dNH +dzX +dXG +dDJ +dtA +dMT +dLA +dMc +dLJ +dtC +dCz +dKN +dJV +dJV +dBH +dBi +dtC +bAY +dzd +dzO +dzz +dzc +dtC +dyl +dxH +duN +dtC +duL +dHs +dtC +duk +dWX +duj +dVe +duk +dWP +duj +dGp +dtU +dtF +dtC +cLP +dWe +cZg +dWo +cLY +edF +cZP +edG +edF +djE +cZP +edS +jOW +efs +cZT +dag +oee +edH +edF +cZA +dWf +dqS +dVY +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(184,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXV +dzX +dXG +dch +dtA +dMU +dMG +dMd +dLK +dtC +dCA +dKO +dKC +dBV +dJV +dBj +dtC +bMh +dJi +dII +dII +dIu +dtC +dyl +duL +duN +dxb +duL +dVi +dtC +dtL +dtL +dWT +dtL +dtL +dGe +dGe +dtL +dtV +dWx +dtC +amX +dWf +dqS +daI +dUZ +edF +edH +edG +edF +edG +cZP +edS +edH +edF +edF +edH +vJq +edF +edF +cZA +dau +dqS +dVY +cYW +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(185,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXJ +dch +dtA +dLq +dtD +dLA +dLL +dtC +dCB +dJV +dBp +dBV +dJV +dBl +dtC +dJz +dIK +dIP +dzf +dze +dtC +dym +dwz +duN +dtC +duL +duN +dtC +duJ +duJ +duJ +duJ +duv +dtL +dGq +dGe +dtW +dtH +dtC +cLP +dWf +dqS +dVY +cLY +edF +edS +edG +edF +edG +cZP +edS +edH +edF +edF +lsF +lsF +edF +edF +cLP +dWd +dqS +dVZ +cZj +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(186,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNW +dXT +bgQ +dNs +dDJ +dtA +dtA +dMH +dDm +dLM +dtC +dCC +dJV +dJV +drW +dKl +dBm +dtC +dJA +dzd +dIR +dIJ +dIv +dtC +dyo +dxI +duN +dtC +dwz +duL +dtC +duL +dvc +duN +duK +duw +dtL +dGe +dGe +dGe +dtC +dtC +cLP +dWf +dqS +dVY +cLY +edF +edS +daq +mxJ +piV +cZP +edS +ddU +edF +dcw +edH +edH +tqO +edF +cZA +dWf +dqS +dVZ +cZi +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(187,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dDZ +dXT +bgQ +dXH +dNi +mAQ +dtA +dMI +dMe +dtR +dtC +dCA +dKP +dTq +dBW +dJV +dBn +dtC +dJB +dzd +dzd +dIK +dIw +dtC +dyp +dwz +dVi +dtC +duN +duN +dwe +duL +duL +dva +duL +duw +dtL +dGe +dWG +dGe +dtC +fIx +cZA +dWf +dqS +dVY +cLY +edF +edS +daq +efs +piV +cZP +edS +efu +edF +cZU +cZs +cZs +daV +edF +cZB +dWf +dqS +dVY +cZk +cZe +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(188,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dDZ +dXT +bgQ +dNt +dch +mAQ +dtA +dMJ +dMf +dDm +dtC +dCD +dJV +dJV +dMY +dJV +dBo +dtC +dAx +dJj +dII +dzA +dIx +dtC +dyq +dxJ +duL +dtC +dHs +duN +dtC +duL +duL +dvb +duM +duw +dtL +dtL +dtX +dtX +dtC +fIx +cZA +dWe +cZg +dWa +cLY +edF +djS +djN +edF +edH +cZP +edS +ddY +edF +edG +cZK +cZK +cZK +edF +cZA +dWe +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(189,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dDZ +dXT +bgQ +dXH +dch +dtA +dtA +dQZ +dCI +dLN +dtC +dCE +dKQ +dJV +dBY +dKm +dJU +dtC +dAx +dII +dII +dIL +dzg +dtC +dyr +duN +duL +dtC +duN +duN +dwe +duN +duL +dva +duN +duw +dtL +duk +dWH +dtY +dtC +bUW +cLP +daL +cZg +dWa +cLY +edF +edF +eea +edF +djF +dak +oAn +ddZ +edF +edG +cZs +cZs +edG +edF +cZA +cZt +cZg +dWa +cZl +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(190,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dRa +dXS +dzX +dXG +dch +dDx +eeJ +eeI +eeD +dLO +dtC +dBp +dKC +dBp +dBW +dBp +dJV +dtC +dAx +dzd +dzd +dzB +dIy +dtC +dys +dHS +duN +dtC +dVk +duL +dtC +dvB +dvj +dvc +duL +duw +dtL +duk +dWI +dWE +dtI +dtC +cLP +dWe +cZg +dWa +cLY +edF +cZP +cZs +edF +edH +edS +edS +jOW +mxJ +piV +cZK +cZK +cZK +edF +cLP +dWe +cZg +dWa +cLY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(191,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXV +dzX +dXG +dNh +dtA +dMV +dMK +dCI +dLP +dtC +dtC +dIS +dCi +dtC +dtC +dtC +dtC +dtC +dAd +dIS +dtC +dtC +dtC +dtC +duc +dtC +dtC +duN +duN +dtC +dvC +dvd +dvd +duO +dux +dtL +duk +dWJ +dGe +dtJ +dtC +cLP +dWd +dqS +dVY +cLY +edF +edG +dar +mxJ +piV +edS +edS +jOW +efs +piV +cZs +cZs +daW +edF +cLP +dWd +dqS +dVZ +cLY +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(192,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXJ +dch +dtC +dtC +bta +bta +bta +dtC +dKZ +dCs +dIU +dJD +dzP +dBq +dzP +dIU +dJk +dIT +dtC +dzh +dyA +dxK +dxK +dtC +dxc +dwQ +dwA +dtC +dVg +dGe +dtL +dtL +dtL +dtL +duk +dWK +dGe +dtK +dtC +cLP +dWd +dqS +dVY +daD +edF +edG +jOW +efs +djG +edS +edS +edG +edF +ddJ +edH +edH +cZL +edF +cLP +dWd +dqS +dVY +cZi +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(193,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNL +dXT +bgQ +dXI +dDJ +dtC +dtC +dCT +dMg +dCT +dtC +dLa +dRF +dAe +dIU +dAe +dAe +dIU +dJC +dRF +dRE +dtC +dtC +dtC +dHT +dVm +dtC +dxd +dtN +dtN +dtC +dtL +dWY +dGe +dGe +dGe +dtL +duk +dud +dGe +dtL +dtC +daR +dWf +dqS +dVY +cLY +edF +cZP +djO +edF +edH +edS +edS +edN +edF +edF +cLU +dci +edF +edF +cLP +dWd +dqS +dVY +cZi +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(194,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dOd +dNL +dXW +bgQ +dXI +dDJ +mAQ +dtC +dCU +dMh +dCU +dtC +dLb +dAe +dKD +dKs +dzP +dIU +dJM +dJD +dIU +dIV +dtC +dzh +dyA +dHU +dxL +dtC +dXh +dtN +dFO +dtC +dvD +dWZ +dGe +dWG +dtC +dtC +dtC +dtC +dtZ +dtC +dAy +cZA +drF +dqS +dVY +cZi +edF +cZP +djO +edF +rPT +oAn +oAn +daa +edF +edF +edF +edF +edF +edF +cLP +dWf +dqS +dVY +cZm +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(195,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dOd +dNX +dXT +bgQ +dNu +dDJ +mAQ +dtC +dML +dMi +efE +dLt +dIU +dJD +dKE +dzP +dtC +dtC +dtC +dtC +dJl +dtC +dtC +dtC +dtC +dHT +dRA +dtC +dXi +dFO +dXg +dtC +dvE +dXa +dGe +dGe +dtC +dus +dFO +dtN +dtN +dtC +fIx +cLP +dWl +cZg +dWa +cZk +edF +cZP +djP +edF +edH +edS +cZP +djB +edF +edF +eeZ +eeY +edF +edF +cLP +dWe +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(196,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNL +dXT +bgQ +dNv +dNi +dtC +dtC +dMM +dMj +dKR +dLt +ecD +dKR +dzP +dKt +dtC +dJW +dJN +dIW +dRG +dIW +dRC +dRB +dyA +dHT +dxL +dtC +dVd +dFO +dFO +dtC +dvF +dtG +dGq +dGe +duy +dtN +dWF +dFO +dtN +dtC +bUW +cZA +dWl +cZg +dWa +cZi +edF +cZP +djQ +edF +edH +edS +cZP +edH +edF +efl +eeZ +eeZ +cLR +edF +cLP +dWe +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(197,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNT +dXS +dzX +dXG +dDJ +dtC +dMW +dJD +dMk +dLQ +dLu +dLc +dKS +dKF +dIU +dtC +dJX +dJO +dJE +dJm +dIX +dtC +dtC +dtC +dHT +dHT +dtC +dtN +dFO +dGf +dtC +dGe +dGe +dVf +dGO +dtL +dtN +dtN +dFO +dtN +dVa +dtC +cZA +dWl +cZg +dWa +cZi +edF +cZP +edG +edF +edG +edS +cZP +efv +edF +efm +eeW +efa +eeP +eeb +cZA +dWe +cZg +dWa +cYX +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(198,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXG +dDJ +dtC +dMX +dIU +dMl +dLR +dLv +dLd +dKT +dSh +dIU +dtC +dJY +dJP +dJF +dJn +dIY +dtC +dzh +dyA +dHT +dHT +dxs +dHE +dFO +dFO +dtC +dtC +dtC +dtC +dtC +dtC +dWQ +dWL +dFO +dGf +dWy +dtC +cLP +dWf +dqS +dVY +cZi +eea +cZP +edG +edF +dan +edS +edS +edG +eeb +efn +efh +eeQ +eeQ +eeb +cZA +dWf +dqS +dWb +cLY +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(199,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXG +dDJ +dRC +dMN +dSJ +dCF +dCt +dLt +dLe +dKU +dKG +dKu +dKn +dJZ +dJQ +eor +dJo +dIZ +dtC +dtC +dtC +dId +dVo +dtC +dtN +dFO +dFO +dwf +dWL +dXb +dWU +bta +duz +dut +dWM +dFO +dFO +dWz +dtC +cLP +dWf +dqS +dVZ +cYX +eea +cZP +edG +edF +edG +edS +dah +daq +efs +efo +efi +efb +eeR +edF +cZA +dWf +dqS +dVY +cLY +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(200,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dDZ +dXT +dzX +dXH +dch +dtC +dtC +dzP +dCG +dLS +dLt +dCG +dCu +dzP +dJk +dtC +dKa +dJR +dJG +dJp +dJa +dtC +dzh +dyA +dHT +dHV +dtC +dvk +dtN +dFO +dXf +dvG +dvl +dWV +bta +duz +dut +dWM +dFO +dFO +dtC +dtC +cLP +dWf +dqS +dVZ +cLY +edF +cZP +edG +edF +djH +edS +cZP +daq +efs +efo +efj +efc +eeS +edF +cZC +cZu +dqS +dVZ +cLY +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(201,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +oyg +dDZ +dXU +dzX +dXI +dDJ +mAQ +dtC +dIS +dSC +dIS +dtC +dtC +dSm +dtC +dtC +dtC +dxG +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dXk +dve +dtN +dWL +dvG +dHb +dWV +bta +duz +dut +dWM +dFO +dFO +dtC +fIx +cLP +daM +dqS +djY +cLY +edF +cZP +edG +edF +edH +edS +cZP +jOW +efs +efo +efj +efc +eeT +edF +cLP +dWd +dqS +dVY +cZi +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(202,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dOb +dNL +dNI +dzX +dNw +dch +mAQ +dtC +dSK +dSD +dSy +dtC +dSr +dSn +dSi +dRZ +dBI +dRW +dRR +dRM +dRH +dtC +dzh +dyA +dyt +dIe +dxN +dtC +dXl +dve +dtN +dWM +dvG +dXc +dWV +bta +duz +dut +dWM +dFO +dFO +dtC +fIx +cLP +dWf +dqS +dVZ +dUZ +edF +edG +jOW +mxJ +piV +edS +cZP +jOW +efs +efn +efj +efd +eeU +edF +cLP +dWe +cZg +dWa +cZl +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(203,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAC +dNL +dXT +dzX +dXH +dch +dtC +dtC +dSL +dSE +dSz +dtC +dSs +dSo +dSj +dSa +dtC +dRX +dRS +dRN +dRJ +dtC +dtC +dtC +dIo +dHT +dVp +dtC +dvm +eep +dtN +dWM +dWL +dHc +dWM +bta +duz +dut +dWM +dFO +dFO +dtC +dtC +daP +dWl +cZg +dWo +cLY +edF +dat +daq +efs +piV +edS +edS +cZf +eeb +efo +efk +efe +eeV +eeb +cZA +dWe +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(204,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXV +dzX +dXG +dch +dtC +dSO +dSH +dSF +dSA +dtC +dSt +dRW +dRW +dSb +dtC +dBr +dRT +dRO +dRK +dtC +dzh +dyA +dxK +dHT +dxK +dxs +dHG +eep +eep +dWL +dXd +dWL +dWW +dtC +dtC +dWR +dWN +dFO +dWF +dWy +dtC +dOu +dWe +cZg +dWo +cLY +edF +edH +edH +edF +edX +edW +dsI +dab +edF +efp +eeW +eeW +eeW +eeb +cZA +enM +cZg +dWa +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(205,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXZ +dzX +dXG +dch +dtC +dSP +dSH +dSG +dSz +dtC +dSu +dSp +dRL +dSc +dtC +dRY +dRU +dRP +dRL +dtC +dtC +dtC +dxK +dHT +dHW +dtC +eep +eep +eep +dtN +dXe +dtN +dtN +dtN +duA +dFP +dWO +dFO +dFO +dWA +dtC +cZA +dWe +cZg +dWa +cZi +edF +edS +eec +edF +djI +vxc +dai +rKg +edF +efq +eeZ +eff +eeX +edF +day +enN +dqS +dVY +cZk +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(206,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNL +dXS +dzX +dXG +dDJ +dtC +dSQ +dSM +dSH +dSB +dtC +dSv +dSq +dSk +dSd +dtC +eeA +dRV +dAz +dAf +dtC +dzh +dyA +dyu +dIf +dHX +dtC +eep +eep +dVj +dwg +dtN +dtN +dtN +dtN +dtN +dtN +dtN +dtN +dtN +dWB +dtC +cZA +dWd +dqS +dVY +cZi +edF +edF +edF +edF +djJ +dal +edR +djC +edF +edF +eeZ +efg +edF +edF +edI +dWf +dqS +dVY +cZi +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(207,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dSS +dXT +dzX +dXH +dch +dtC +dtC +dSN +dSI +dtC +dtC +dtC +dtC +dSl +dSe +dtC +dtC +dAN +dtC +dtC +dtC +dtC +dtC +dtC +dtC +dxM +dtC +dtC +dwR +dtC +dtC +dvH +dvo +dtC +dtC +dtC +dtC +dul +dWA +dWA +dtC +dtC +cZA +dWf +dqS +dVY +cZi +edF +edF +edF +edF +edF +edT +edT +edF +edF +edF +edF +edF +edF +edF +cLP +enO +dqS +dVY +cZi +cLS +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(208,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNY +dcq +dzX +dXH +dDK +ecK +dtC +dtC +dtC +dtC +dbi +dbi +dtC +dtC +dtC +dtC +dbi +dbi +dtC +dtC +dtC +dtC +dbi +dbi +dtC +dtC +dtC +dtC +rEA +rEA +dtC +dtC +dtC +dtC +rEA +ecn +dtC +dtC +dtC +dtC +dtC +ciR +cZD +dWf +dqS +dVY +cZx +cYS +ciR +edK +edF +edF +edR +edP +edF +edF +efr +edK +cZI +cZM +daz +cZD +dWd +dqS +dVY +cZi +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(209,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dDd +dXS +bgQ +dXB +dDN +dcc +ecH +ecG +dbZ +dAO +dAO +dLf +ecC +dCj +dSf +dAO +ecz +ecz +dAA +dAA +ecx +dbG +dAA +dAA +dbm +dbm +dby +kbV +ecu +ect +dbm +ecs +kbV +dbm +dbm +dbj +dGy +kbV +dRw +kbV +kbV +daX +dqM +dWg +cZg +dWs +cZo +cZo +cZo +cZo +dao +efx +edU +edU +cZo +cZW +cZo +dqM +cZQ +cZo +cZo +cZo +dWg +cZg +dVY +cZn +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(210,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dAl +dXS +bgQ +bgQ +ecO +ecL +ecI +dyJ +dyJ +dbY +ecE +dXs +dXs +dyJ +dyJ +dXo +ecB +dXo +dXo +dyJ +dyJ +dXo +dXo +dIp +ecq +dVX +dbz +dVF +dVF +dVF +dVF +dVX +dVX +dVF +ecq +eco +dVV +dVX +ecl +dVX +dVF +dVF +dWg +cZg +cZg +cZg +dWh +dVF +dVF +dsZ +dVF +dVF +dVF +dVP +dVF +dVF +dVF +dVF +dVF +dVF +dVF +dWg +cZg +cZg +dVY +cYX +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(211,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dRb +dXS +bgQ +bgQ +bgQ +dzX +dzX +bgQ +bgQ +dLT +dzX +dzX +dzX +bgQ +bgQ +dzX +dzX +dzX +dzX +eeO +bgQ +dzX +dzX +dzX +dqS +cZg +cZg +dqS +dqS +dqS +dqS +cZg +cZg +dqS +dqS +dqS +dqS +cZg +cZg +cZg +dqS +dqS +cZg +cZg +cZg +cZg +cZg +dqS +dqS +dqS +dqS +cZg +cZg +cZg +cZg +dqS +dqS +dqS +dqS +dqS +dqS +cZg +cZg +dVW +dqM +cZi +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(212,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dCv +dXS +bgQ +bgQ +dXC +ecM +dXw +dyK +dMm +dXw +dXm +dXw +dXm +dyK +dbM +dXm +dXw +dXw +dXm +dJq +dXq +dXm +dXm +dXm +ecw +dVN +dVI +dVG +dWj +dWj +dbu +dVI +dbp +ecp +dVG +ecp +ecm +dVN +dVI +eck +dWj +dWj +dWc +cZg +cZg +cZg +ebY +dVG +ebR +dWj +dap +dWj +dVG +dVG +dWj +dWj +cZV +dWj +dWj +dWj +dVG +dVG +dVG +dqM +cZp +cYZ +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(213,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dBz +dXV +bgQ +dXC +ecP +dcd +ecJ +ecy +ecF +dCV +dbV +ecA +dCV +dCV +dCV +dCV +dCV +ecA +dCV +dAB +ecy +dIM +dAB +dAB +twj +twj +dbA +twj +ecv +twj +twj +twj +twj +dGT +ecr +eTL +dbb +dbb +daZ +twj +twj +daY +ecc +dWc +cZg +dVW +ebZ +dax +ebS +cYV +cYV +cYV +cZq +cYV +cZq +cYV +cYV +cYV +cYV +cZN +cZq +cZq +cZq +cZq +cZd +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(214,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dea +dNJ +dzX +dNx +ddV +ecN +dOv +dOv +dCk +dCk +dAP +dAP +dCk +dCk +dOv +dOv +dQm +dAP +dOv +dOv +dOv +dOv +dAP +dAP +dOv +dOv +dOv +dcN +eem +eem +dcN +dOv +dOv +dOv +dGP +egi +dOv +dOv +dOv +dOv +dOv +edK +cZy +ece +dqS +ebZ +dax +ebU +dqY +dqY +dqY +dqY +dac +dac +dac +cLV +cLV +cLV +dqY +dqY +dqY +dqY +dqY +dqY +dqY +dqY +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(215,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +dNZ +dNK +dzX +dDQ +dNj +dAC +dOv +dOv +dOv +eek +eeB +eeB +eek +egF +egF +dOv +dOv +dOv +dOv +dTm +dTm +dOv +dOv +dOv +dOv +dTm +dTm +dOv +dOv +dOv +dOv +dTm +dTm +dOv +dOv +dOv +dOv +dTm +abU +een +clH +eeh +daT +ecf +dqS +cZo +djW +dqY +dqY +dqY +dqY +dqY +dqY +edL +ddI +edL +edL +cLT +ddI +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(216,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +deb +dXZ +dzX +dco +ddX +dAC +bsw +dOv +dOz +iGz +iWt +dba +dOz +dOz +egG +egE +egC +dOx +egd +efY +dOx +egd +egu +egt +egd +efY +egj +egd +efY +egj +egd +efY +egm +egd +efY +egj +egd +efY +dOx +een +een +eeh +ech +cZW +dqS +ecc +cZl +dqY +dqY +dqY +ddI +cLT +cLT +cLT +cLT +cLT +cLT +ddI +cLT +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(217,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +deb +dXS +dzX +dXJ +ddW +dAC +bsw +dOv +dOv +cMa +efZ +dba +dOz +dOz +dbc +ege +efX +dbc +ege +efX +dbc +ege +efX +dbc +ege +efX +dbc +ege +efX +dbc +ege +efX +dbc +ege +efX +dbc +ege +efX +dOy +eek +een +cLV +cZA +ciR +dqS +daJ +eca +eeh +ebT +cLT +cLT +cLT +cLW +cLW +cLW +cLW +cLW +gaK +ebK +dkl +bdh +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(218,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +dAC +deb +dXS +dzX +dXJ +ddW +dAC +bsw +bsw +dOv +egK +mcx +efZ +efX +efX +efX +efX +efX +efX +efX +dbe +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +dbq +efX +efX +efX +efX +efZ +dba +eek +eek +cLV +cZA +ecg +dqS +ciR +daE +ebW +edL +edL +iPc +bgN +bgL +xVw +sHR +ebQ +qpc +qpc +ebL +coi +bDM +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(219,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +dcs +eqN +eqM +cNt +dcj +bta +bta +bsw +dOv +egL +dbW +efZ +efZ +efZ +dbN +dPx +efX +efX +efZ +dPx +efX +efX +efZ +dPx +efX +efX +efZ +ego +efX +efZ +efX +efX +efZ +efX +efX +efX +efZ +efZ +dba +eek +eek +cLV +cZA +ciR +dqS +ecd +ecb +ebX +eee +cLT +fun +bgO +bgM +bgI +qaN +qpc +qpc +qpc +ebM +bDM +coi +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(220,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +dct +cYT +cYU +eqH +dck +cML +bta +bsw +dOv +cMa +efZ +efZ +efZ +efX +clr +dOv +egj +egz +egv +dOv +dbI +egd +egv +dOv +egj +egd +egr +egp +dbo +efZ +efZ +efX +efZ +efX +efX +efX +dbe +efZ +dOz +eek +eek +cLV +cZA +cZo +dqS +cZo +cZi +dqY +edL +eed +cLT +cLT +cLT +ddI +cLW +qvh +cLW +ddI +ebN +dmX +bDM +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(221,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +dcu +eqN +cqy +dXN +dcl +cML +bta +bsw +dOv +aVj +mcx +efZ +efZ +efZ +clr +egn +dbc +ege +xsr +egn +dbc +ege +xsr +egn +dbc +ege +xsr +egn +cjL +efZ +efZ +dbc +urT +efX +dbc +urT +egf +dbc +urT +eek +een +cLV +daU +eei +daK +cYY +daF +bta +bsw +bsw +cLT +cLT +cLT +bsw +bsw +cLT +cLT +ebP +ebO +bDM +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(222,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +dcv +eqN +cqy +eqH +dcl +bta +bta +bsw +dOv +egL +dbW +efZ +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efZ +efZ +ega +efW +dbf +ega +efW +dbf +ega +efW +eek +een +bta +daO +cNf +cYU +bgD +daG +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(223,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dcu +cNC +cqy +eqI +dcl +bta +bsw +bsw +dOv +cMa +efZ +efX +efX +efX +efX +efX +dbK +efX +efX +efX +efZ +efX +efX +efX +efX +efZ +efZ +efX +efX +efX +efX +egb +egb +clP +bta +clP +dbg +dOv +dOv +dOv +een +bta +qVt +eMV +cqy +cMT +iez +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(224,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNJ +dYa +cNz +eqJ +dcl +bta +bsw +bsw +dOv +egK +mcx +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +efX +egb +dOv +egk +cmS +cmS +egg +egb +dOv +dOv +bsw +bta +aDO +eMV +cqy +eMV +iez +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(225,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNJ +dYa +cqy +eqJ +cNl +bta +bsw +bsw +dOv +akM +dbW +efX +efX +efZ +loy +uBF +dbc +urT +xsr +uBF +dbc +urT +dbF +uBF +bdT +urT +xsr +ego +dbw +efZ +efX +dOv +dOv +dbo +efZ +efX +loy +egb +dOv +dOv +bsw +bta +cNh +eMV +cqy +cMX +cMP +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(226,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +cNJ +eqN +cqy +cNx +cNl +bta +bta +bsw +dOv +dOv +dbk +dbU +egb +efZ +clr +egb +ega +efW +egs +egb +ega +efW +egs +egb +ega +efW +egs +dOv +cjL +efZ +efZ +eTP +akz +dFJ +dFJ +egh +dbh +aid +dTm +dOv +bta +bta +qVt +cMY +cNb +cMY +iez +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(227,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +cNJ +eqN +cqy +eqH +cNl +cML +bta +bsw +dOv +adg +dbR +dbR +egH +efX +efX +egn +efX +efZ +efZ +egn +efX +efZ +efZ +egn +efX +efZ +efZ +egc +efZ +efZ +efZ +eTQ +eTN +dFJ +dFJ +egh +eMd +efZ +dTm +dOv +bta +cNj +qVt +cMY +cqy +cMZ +cMP +cML +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(228,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +cNJ +cND +cqy +eqH +cNl +cML +bta +bsw +dOv +egM +egJ +dvn +egH +efX +efX +efX +efX +efX +efX +efX +efX +efZ +efZ +efX +efZ +efX +efX +efX +efX +eTM +efX +eTO +eTO +efX +efX +efX +efX +efX +dTm +dOv +bta +cNj +cNi +bgD +cqy +cMY +cMP +cML +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(229,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +cNJ +eqN +cqy +dXO +cNl +bta +bta +dOv +dOv +egN +adf +adf +egH +efX +loy +dbc +urT +egA +dbc +urT +efX +egw +urT +efX +dbc +urT +efX +dbc +cjL +efX +efX +eTR +eTN +eTM +efX +efX +efX +efX +dTm +dOv +bta +bta +cNi +cNg +cqy +bgD +cMP +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(230,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNJ +eqP +cqy +eqI +dcl +bta +bsw +dOv +ljT +amL +adf +adf +egI +efX +loy +ega +efW +dbf +ega +efW +dbf +ega +efW +dbf +ega +efW +dbf +dbc +clc +ckD +dbf +eTR +eTN +efX +efX +efX +efX +efX +dOv +dOv +bsw +bta +qVt +eMV +cNe +eMV +iez +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(231,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dcu +dYa +cqy +eqI +dcl +bta +bsw +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +ckp +ckp +ckp +dOv +dOv +dOv +dOv +dOv +dOv +dOv +dOv +bsw +bsw +bta +qVt +eMV +cqy +eMV +iez +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(232,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +dcu +dYa +cqy +eqI +cNl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +qVt +eMV +cqy +eMV +iez +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(233,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +cNJ +eqN +cqy +eqK +cNl +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +qVt +cMY +cqy +bgD +iez +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(234,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +cNJ +eqQ +cqy +eqK +cNl +cML +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +bta +bta +bta +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +qVt +cMY +cqy +bgD +iez +cML +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(235,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +dcu +eqQ +cqy +eqH +cNl +cML +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bte +bte +bte +eqE +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNj +qVt +cMY +cqy +bgD +cMP +cML +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(236,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +eqR +eqQ +cqy +eqL +cNl +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bte +eqG +eqG +eqE +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +cNi +cMY +cqy +cMY +cMP +bta +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(237,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +eqS +eqP +cqy +eqI +cNl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bte +eqG +eqG +eqF +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNi +eMV +cqy +cMX +cMP +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(238,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNJ +dYa +cqy +eqI +dcl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +eij +bta +bta +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cNi +eMV +cqy +eMV +iez +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(239,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +eqT +eqP +cqy +eqI +dcl +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bte +eqG +bte +bta +eqb +eqb +eqb +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +qVt +eMV +cqy +eMV +att +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(240,1,1) = {" +sqe +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cMS +cMS +cMS +cMS +cMS +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +bta +epU +bta +bta +eij +eij +eij +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bta +cMS +cMS +cMS +cMS +cMS +bta +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(241,1,1) = {" +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +"} + +(1,1,2) = {" +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +"} +(2,1,2) = {" +sqe +buZ +buZ +aTv +aTt +aTs +aoW +aUT +bsy +bvb +buZ +aTv +aTt +aTs +aoW +aUT +bsy +bvb +buZ +aTv +aTt +aTs +aoW +aUT +bsy +bvb +buZ +aTv +aTt +aTs +aoW +aUT +bsy +bvb +bdN +aTv +aTt +aTs +aoW +aUT +bsy +bvb +erz +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(3,1,2) = {" +sqe +bsB +bTk +bLw +bLw +bLw +bLZ +bLZ +bLZ +bLw +bLw +bLw +bLZ +bLZ +bLZ +bLw +bLZ +bLZ +bLw +bLw +bLw +bLw +bLZ +cHC +bLZ +bLZ +bLZ +bLZ +bLw +bLZ +bLZ +bLw +bMu +bbF +bLZ +bLZ +bLZ +bLZ +bLZ +bLw +bLw +eqU +eqU +erk +erz +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +aTn +eqU +aTw +buc +buc +buc +eqU +eqU +eqU +erl +erk +buZ +bEY +eqU +bFR +bFG +eHI +eqU +eqU +era +eqZ +era +eqZ +era +aUS +aUS +bxC +aUS +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +sqe +"} +(4,1,2) = {" +sqe +bsC +bTn +bLw +bLw +bLZ +cHC +bPH +bPy +bPp +bLZ +bLZ +bLZ +bMu +bLZ +bLZ +cHC +bLZ +bLZ +bLZ +bLZ +bLZ +bLZ +bOe +bLZ +cHC +bbt +bLZ +eUU +aWX +bLZ +bLZ +bLZ +eJj +bLI +eJf +bLZ +bbt +cHC +bLZ +bLZ +bLw +eqU +eqU +erj +erA +bsw +bsw +bsw +eqU +eqU +bGK +bGA +bIU +aUd +bEZ +bFa +bFb +aTL +eHN +eHN +eHM +eTZ +bGB +bGK +bGA +bsx +bFn +bFn +bFn +bFn +bFn +bEY +eqU +bsw +bsw +era +bsw +era +bsw +bsw +bxC +eqU +aUS +bxC +aUS +eqU +eqU +eqU +bxC +aUS +bxC +aUS +aUS +bxC +aUS +aUS +bxC +aUS +aUS +bxC +eqZ +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +bxC +eqZ +era +eqZ +bsw +bsw +bsw +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(5,1,2) = {" +sqe +bsC +bTl +bLw +bLw +bLZ +bLZ +bLZ +bLZ +bLZ +bLZ +eUU +bLZ +bLZ +bPI +bLZ +bLZ +bLZ +bPH +bcA +bMu +bPH +bPy +bPp +bLZ +bPc +bMu +bLZ +eUT +eUT +bLZ +eJk +eYX +bLx +bLx +bSz +eJg +bLZ +bLZ +bMu +cHC +bLZ +eqU +eqU +erc +erB +bsw +bsw +bsw +eqU +eqU +bGK +bGB +bIV +bGL +bHh +bGL +bGL +bat +bHE +bGL +bGW +bFo +bFo +bGK +bGB +buT +bGg +bFn +bFo +bFo +bFo +bEZ +eqU +eqZ +era +eqZ +era +eqZ +era +era +eqZ +era +bsw +era +bsw +bxC +aUS +bxC +aUS +bsw +era +bsw +bsw +era +bsw +bsw +era +bsw +bsw +era +bsw +bsw +bsw +era +eqZ +era +eqZ +era +aUS +eqU +eqU +bxC +aUS +bxC +eqZ +bsw +era +bsw +eqZ +era +eqZ +bta +bte +bte +bte +bte +bte +aRq +bte +bte +bte +bte +aRq +bte +bte +bte +bte +bte +bta +bxC +aUS +bxC +aUS +bxC +aUS +bxC +eqU +eqU +bxC +aUS +bta +bte +bte +bte +bte +bte +aRq +bte +bte +bte +bte +aRq +bte +bte +bte +bte +bte +bta +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +bsw +eqU +sqe +"} +(6,1,2) = {" +sqe +bsB +bTq +bTk +adU +bMu +bLZ +bPI +bLZ +bLZ +eUT +eUT +eUT +bOe +bLZ +bLZ +bLZ +cHC +bLZ +bLZ +bLZ +bPI +bLZ +bLZ +bNP +bLI +bLI +bLI +eJf +bLZ +aWK +bLx +bLx +bLx +eDN +eDG +bLx +eJf +bLZ +bbt +bLZ +bLZ +erE +eqU +erj +erA +bsw +bsw +bsw +bsw +eqU +bFa +bGB +bIW +bGL +bGL +bFn +bFn +bau +bHy +aMy +bGL +bHh +bGL +bGL +bFa +bsC +buU +bFn +bFS +bFo +bFn +bFa +bxC +eqU +bsw +era +eqZ +era +eqZ +bsw +era +eqZ +era +eqZ +era +bsw +bsw +era +bsw +era +eqZ +era +era +eqZ +era +era +eqZ +era +era +eqZ +era +era +eqZ +bsw +eqU +bxC +eqU +bxC +eqU +aUS +bxC +aUS +eqU +bxC +bsw +era +eqZ +era +eqZ +era +eqZ +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +bxC +aUS +bxC +bxC +aUS +bxC +eqU +eqU +aUS +bxC +aUS +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(7,1,2) = {" +sqe +bvb +bTk +bLw +bLZ +bdu +bdl +bLZ +bLZ +cHC +bMw +eJx +bPy +bPy +eJo +bLZ +bMu +eJn +bLI +bLI +eJf +bLZ +bLZ +eJl +bLx +eEt +eEm +aou +aou +bOv +bLx +eEb +eDY +bMW +rYz +foZ +bMW +dBX +bLI +eJd +bLZ +bLZ +cHC +eqU +bsw +erd +erj +bsw +bsw +bsw +eqU +bGC +bGA +bIX +bIE +dpH +bFn +bHq +bav +aTF +aTx +bFn +bGL +bFo +bGL +bGC +bsB +buV +bFo +bFo +bFo +bFn +bFb +eqU +eqU +eqZ +bsw +bsw +era +bsw +eqZ +era +bsw +bsw +bsw +era +eqZ +era +eqZ +era +eqZ +era +bsw +bsw +era +eqZ +era +bsw +bsw +era +bsw +era +eqZ +era +eqZ +era +eqZ +era +eqZ +era +bsw +era +bsw +era +eqZ +era +bsw +bsw +eqU +eqU +bxC +eqU +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +bif +bid +bhZ +bhR +bif +bid +bhZ +bhR +bgA +bhR +bgA +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(8,1,2) = {" +sqe +bsB +bTn +bLZ +bLZ +bLZ +bOe +bLZ +bMu +bLZ +bLZ +bLZ +bLZ +bLZ +eJp +bLI +bLI +bLx +bLx +eYM +bLx +bLI +eJm +bLx +bMW +nFo +nFo +bMW +bMW +bMW +nFo +nFo +nFo +bMW +aWd +bqT +bMW +eDo +bLx +bLx +bLI +eYF +bLI +eqU +bsw +erd +erc +bsw +bsw +eqU +eqU +bFa +bGB +bIW +bGL +dpI +bFo +eux +baw +aTy +aTy +bFn +bFn +bGL +bGL +bEZ +bFa +bvb +buZ +bFo +bFo +bFn +bFc +eqU +bkP +eqU +aUS +bxC +aUS +bxC +eqZ +era +bsw +era +eqZ +era +eqZ +bsw +bsw +bsw +bsw +era +era +eqZ +era +eqZ +era +aUS +bxC +aUS +aUS +eqU +era +eqZ +era +eqZ +era +eqZ +era +eqZ +era +eqZ +era +bsw +bsw +bsw +eqZ +bxC +aUS +bxC +aUS +bxC +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +bsP +buA +bsP +bsP +bsP +bsP +bsP +bsP +bup +bsP +bsP +bta +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bte +bta +eqU +eqU +eqU +eqU +bsx +eqU +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(9,1,2) = {" +sqe +bsA +bTr +adU +bLZ +adU +bLZ +eJp +bLI +bLI +bLI +bLI +bLI +bLI +bLx +bLx +bMJ +qNt +bMJ +bMJ +bMJ +aou +aou +bLx +bMW +eYY +qRe +aXl +aWe +hmM +aWd +fUa +dhp +omL +aWh +aWe +bMW +eDp +eDg +qNt +qNt +qNt +qNt +eqU +bsw +erl +erk +bsw +bsw +eqU +bGK +bGB +bIV +bGL +bIF +bFo +bFo +baE +aTM +aTG +aTz +bGX +aTo +bGW +eqU +eqU +bsA +bsB +bsx +bFo +cOQ +bFp +bFd +eqU +eqU +eqU +bxC +eqU +eqU +eqU +bxC +boK +eqU +eqU +eqU +bxC +eqU +aUS +bxC +aUS +bxC +aUS +eqU +eqU +bxC +eqU +aUS +bxC +eqU +eqU +eqU +aUS +eqU +eqU +bxC +eqU +eqZ +era +eqZ +era +bsw +eqZ +eqZ +eqZ +bxC +aUS +bxC +aUS +bxC +dkz +dky +dkx +bta +bte +bte +bte +bte +bte +aRq +bte +bte +bte +bte +aRq +bte +bte +bte +bte +aug +bta +bsZ +biw +bsY +bsZ +bsY +bkZ +bsY +bsY +bsY +btq +buj +bta +bte +bte +bte +bte +bte +aRq +bte +bte +bte +bte +aRq +bte +bte +bte +bte +aug +bta +eqU +eqU +eqU +eqU +bsy +eqU +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(10,1,2) = {" +sqe +bsC +bTm +bLw +bLZ +bLZ +bLZ +bOp +eYM +bMJ +bMJ +bLx +bLx +bMJ +qNt +qNt +wcz +ndL +aYN +bQf +aYt +eMQ +bPz +aXP +bMW +bMW +aWe +aWe +bqX +aWY +aWL +adr +aWr +rSp +aWe +bMW +bMW +bMW +oGw +bMx +aVN +bQg +aHo +eqU +bsw +erk +erz +bsw +bsw +bsA +bsB +bIU +cCW +bGL +dcY +bFo +bFo +aTS +aTN +bao +baj +dkg +aTp +bGX +cCW +eqU +bsA +bsC +bAl +cnU +cnU +byS +byS +bzU +bzG +bzz +bzj +byR +eqU +eqU +eqU +aUS +eqU +aUS +bxC +aUS +bxC +bxC +aUS +bxC +eqU +eqU +aUS +bxC +aUS +bxC +eqU +eqU +byS +bzU +bzG +bzz +aUS +bxC +aUS +bxC +aUS +era +eqZ +eqZ +era +eqZ +era +era +eqU +eqU +eqU +dkA +dky +aQt +aQt +aQt +bta +bte +bte +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bte +bte +bta +bsZ +bsZ +bsZ +bsZ +bsZ +btq +bsZ +bsZ +bsZ +bun +bsZ +bta +bte +bte +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bte +bte +bta +eqU +eqU +eqU +eqU +bsz +eqU +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(11,1,2) = {" +sqe +bsB +bTs +bLx +bLZ +bPI +bLZ +bOp +bMJ +qNt +bCf +bQf +bMx +bQf +bPz +bQg +bQv +aZb +aYO +cyO +brc +aYk +bLJ +bQP +bMW +cwG +aWe +aXn +wIc +aWZ +aWe +adr +aWs +aWl +rSp +adr +bNg +bMW +bQg +eMQ +aVO +bMa +bLJ +eqU +eqU +eUd +eri +bsw +bsw +bsy +bvb +buZ +cCW +cCW +aTl +bIi +bIi +cCW +bax +bap +aTA +cCW +aTl +aTl +cCW +cCW +bzV +bAx +bzk +aUh +dke +bxJ +bzk +bAN +bzk +bzW +byS +byS +byB +byg +bzU +bzG +bzz +bzj +byR +byS +byS +bxI +byS +bzU +bzG +bzz +bzj +byS +byR +byS +byS +bxI +byS +byS +byS +byS +bzj +eqU +bsy +bvb +buZ +eqU +bsw +eOv +bsw +bsw +erD +bsy +bvb +buZ +akx +aQt +aQt +dkq +dkq +aQt +bta +bte +bte +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bte +bte +bta +biR +biR +biR +biR +cOL +bsO +buk +buk +buk +buk +buk +bta +bte +bte +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bte +bte +bta +bsA +bsA +bsB +eqU +bsy +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(12,1,2) = {" +sqe +bvb +bTk +bLx +bLZ +eUT +adU +bOp +bMJ +bDg +bQP +aZv +aZr +bQP +bQK +aZm +eMT +tkG +bQg +bor +aYu +bra +bQP +bQg +bMW +adr +dcO +aXo +adr +bMW +koN +vHf +bMW +dcM +aWi +adr +adr +bMW +bQg +bRs +bqF +aVH +aYP +tkG +eqU +eqU +buU +eqU +eqU +bsz +bsB +buV +cCW +bIZ +aUg +aTZ +aTV +bxz +aTO +aTH +aTB +bzX +eOK +aTm +aTh +bGD +byS +aTc +bzk +bxJ +dkf +bFv +bxJ +bxJ +bxJ +bzk +bzk +bzk +bzk +byC +byC +byS +byS +bxI +byC +byB +gvn +bzk +bzk +byC +bCU +byS +bzk +byS +byS +gkG +gvn +bzk +bBQ +bzk +byC +byS +byS +byR +eqU +bAM +eqU +eqU +aTv +bsw +eOs +eOp +eqU +eqU +bkD +dkB +akx +akx +bfC +bfC +bfC +bfC +bta +bta +bte +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bte +bta +bta +bta +dlz +dlz +dlz +dlz +bsO +bvZ +biI +biI +biI +bta +bta +bta +bte +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bte +bta +bta +bsA +bsA +bsB +bsx +bsA +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(13,1,2) = {" +sqe +bsB +bTn +bLw +bLZ +eUT +bLZ +bOp +bMJ +bDu +aZB +bRs +aZs +rwL +rwL +rwL +saO +rwL +uDH +fXz +bPW +tkG +aVP +aYP +bMW +bMW +bMW +jGd +foZ +bMW +bIs +aWy +bNQ +bMW +rru +bMW +bMW +bMW +rwL +rwL +yew +bKe +rwL +dkK +dkJ +eqU +eqU +buV +eqU +eqU +bsy +bJu +bJm +dkC +bIG +aUa +bGN +aTT +aTP +aTI +aTC +bHr +eOK +bGN +aTi +bzk +aPh +bzk +bzk +bxJ +dkf +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bzk +bzk +byS +bxJ +bzk +bzk +bzk +bzk +bxJ +bxJ +bxJ +bxJ +byC +bzk +bxJ +bxJ +bxJ +bxJ +bzk +byk +bxJ +byC +bzk +aUe +eqU +eOy +eqU +eqU +eOi +eqU +eOm +eOl +eOi +eOh +eOb +bfY +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +bta +bta +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bta +bta +cug +cug +cyc +cug +dku +cug +bie +bia +cmc +cmc +blM +bhK +aSL +bta +bta +bte +bte +bte +btu +btu +btu +btu +btu +btu +bte +bte +bte +bta +bta +dly +dly +dly +eqU +bsy +bsA +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(14,1,2) = {" +sqe +bsC +bTl +bLw +bMu +bLZ +bLZ +eJB +bMJ +aZL +brt +bRt +eJr +bKe +bKe +bJN +bJN +aSo +aYQ +bKe +bJN +bKe +bKe +ddC +bJN +bJN +rpc +xct +bbO +bIJ +aWM +bck +euR +bMW +eJi +xsW +bMW +ddx +bJN +bJO +bJN +bJN +bJN +dkI +dkI +dkI +eqU +aUS +eqU +bsA +bsC +bJv +dkD +bJb +bIH +dmA +xTr +bHW +aTQ +bHF +aTD +bai +aTq +bGN +aTj +bxJ +bzk +bxJ +bxJ +bxJ +bHi +bFq +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bBV +bxJ +ewi +ewi +eFI +eFG +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bDc +bxJ +bxJ +bxJ +bxJ +byk +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +byh +byC +eOj +eqU +eqU +eOx +eqU +eOt +eqU +eOm +eOj +byC +eOc +bfY +bsJ +yfR +bsX +bsJ +bsJ +bsJ +bsJ +bta +bta +bta +bta +ocO +ocO +ocO +ocO +ocO +ocO +bta +bta +bta +bta +cug +cug +cug +cug +cmh +cug +cug +cmc +cmc +cmc +cmc +cmc +bgF +bdc +dkv +bta +bta +bta +bta +ocO +ocO +ocO +ocO +ocO +ocO +bta +bta +bta +bta +cug +cug +aQt +dly +eqU +bsz +bsy +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(15,1,2) = {" +sqe +bsC +bTm +bLZ +bLZ +adU +xNb +bLx +bMJ +bSg +bRt +eJy +eJs +bJN +bJN +bJN +dcL +aZe +bQm +mjT +bJN +bPi +bPi +bPi +bPi +bPi +qWJ +aXp +aXe +bII +aWN +aPz +dcL +euR +eJc +eJh +bPi +bPi +eJe +euP +eJc +eJc +eJc +eJc +dkG +dkC +eqU +eqU +bsy +bvb +dkE +dkD +aUs +baO +aUi +bIs +bIj +bHr +bay +bHG +bak +bHs +eOL +bGN +aTj +bBJ +bxJ +bxJ +bxR +bxJ +bae +ewy +bxJ +bxJ +bBJ +bBJ +bBJ +bxJ +bxJ +bBJ +bBJ +bBJ +eFJ +bxL +eFF +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +byk +bxJ +bBq +bxJ +bxJ +bBV +bcl +bBH +bxJ +bxJ +bxJ +bxJ +bxJ +byC +eOn +eqU +eqU +eOq +eqU +eOq +eOn +eOk +bxJ +eOd +bfY +bsJ +bwu +bsJ +bsJ +dcz +bsJ +bsJ +bsJ +erW +cfd +bsN +btr +exN +btv +btv +eWG +eQu +eQs +cfd +erJ +cug +cug +dku +bbb +dcC +erJ +bbb +aSh +aSd +cmc +bIY +cug +cug +dku +bdf +cug +cug +bbb +cfd +bsN +btr +exN +btv +btv +exM +btr +bsN +cfd +bsU +bsJ +bsJ +cug +aQt +dly +eqU +bsy +bsz +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(16,1,2) = {" +sqe +bsA +bTr +bTl +bLZ +bLZ +bOp +bLx +htK +bSh +bRv +eJz +aZt +bJN +dnL +evg +evf +bKe +aYR +bKe +euP +bIs +bIs +bIs +bIs +bIs +bIs +bbP +aXf +aXa +aWO +aWz +bKe +bbG +bIs +bIs +aWa +bIs +bIs +bIs +bMn +bIJ +bIs +bIs +bIs +dkG +eqU +eqU +eqU +bsB +bJK +bJn +bIH +aUo +aUj +bIs +aTX +bxV +baz +bDt +dFh +bxz +bac +bac +bxJ +bBJ +bGE +bBJ +bxJ +byk +eGe +bxJ +bxJ +byk +bBJ +eqU +bva +bBJ +bxJ +bxJ +bCr +eUz +eFK +bvl +bxJ +bzk +byC +bAZ +bzk +bzk +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +byk +bos +bcv +bbM +bah +bxJ +bxJ +bxJ +bxJ +bxJ +byC +eOk +eOj +eOw +eqU +eOm +bzk +bxJ +bxJ +bxJ +bfY +bsJ +bsJ +mxN +dVs +bsJ +buF +bsX +bth +bsN +bsN +btr +btr +exN +btv +btv +eWH +eQv +eQt +bsN +bsN +bsL +bsL +bsL +bsN +bsN +bsN +bsN +bsN +bsN +bsL +bsL +bsL +aRy +bsL +bsL +bsL +dcB +bsN +btU +btr +btr +exN +btv +btv +exM +btr +btr +bsN +bsU +bsX +bsJ +bsJ +cug +dly +eqU +bsA +bsy +eqU +eqU +eqU +eqU +eqU +bsw +eqU +sqe +"} +(17,1,2) = {" +sqe +bvb +bTk +bLZ +bLZ +eUT +eJC +bLx +htK +aZM +bRC +daS +bKe +bPi +euP +bIs +aZi +bPq +aYS +bPs +bIs +aYm +bPA +eUO +eUY +dnF +dnF +euW +aXg +bKe +aWP +aVn +bLy +bNL +bIs +bIJ +bOi +bOi +aVU +bOi +bOi +bMb +bIs +bIs +bIs +dkG +eqU +bKs +eqU +bKb +dkD +bIH +bIH +aUp +aUk +bIs +bxz +bxz +baz +byp +bAy +bxz +eUF +ewJ +ewC +bwi +bxJ +bBJ +bxJ +byC +byC +eGa +bxJ +bxJ +bBJ +eqU +aUS +bBJ +aTf +bxJ +bxJ +ewT +eFL +bxJ +bzk +byC +eqU +eNo +blR +bzk +byC +bzk +bxJ +bxJ +bxJ +bxJ +bwb +boH +bcx +bbS +bxJ +byk +bxJ +bxJ +bzk +bzk +evH +byC +byC +byC +eOu +eOr +bAZ +bxJ +eti +bFu +aMG +bxm +bsL +erZ +dVs +buF +buF +bsJ +btc +dcS +btr +btr +exO +btv +btv +btv +eWI +eQw +btr +btr +btr +aMG +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +exO +btv +btv +btv +btv +exL +btr +dcP +bsN +erZ +bsJ +bhp +cug +dly +eqU +bsA +bsA +eqU +eqU +eqU +eqU +eqU +bsw +eqU +sqe +"} +(18,1,2) = {" +sqe +bsB +bTn +bLw +bPI +eUT +bMw +bOp +htK +bDA +bRB +bRt +bPs +bOw +bIs +bOi +bIJ +eve +aYT +aYF +euR +bIt +bOi +eVb +bIs +bIs +bOW +aXq +euX +aXb +aWQ +aWA +aWt +bIs +bIs +bIs +bIs +bMz +bMz +bMz +bIs +bMc +bIs +bIs +bJx +dkD +eqU +eqU +bKb +anf +dkG +bIH +bIs +bII +bII +bIt +bxz +etc +baA +byp +bDt +bxz +eUG +eUE +ewD +ewB +bxJ +bxJ +bxJ +bzk +bzk +bEz +bxJ +bBJ +aTf +eqU +eqU +bfX +bBJ +bBJ +bxJ +bxJ +bFv +bzk +bAZ +byS +eqU +bDk +eqU +bAn +blN +byC +bxJ +bxJ +byk +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bzk +eqU +eNn +bAv +bzk +bxJ +bxJ +bxJ +bzl +bxJ +bxK +bxT +deB +eyv +bxn +bTN +bPG +bsJ +buF +buF +erW +bsN +bsN +jyh +exP +nLk +nLk +nLk +nLk +nLk +qvI +aRY +exP +exP +gZu +aRY +aSl +aSl +exP +exP +exP +exP +exP +exP +exP +exP +aRY +exP +exP +exP +exP +exP +exP +exP +nLk +nLk +nLk +nLk +nLk +nLk +kjp +bsN +bsN +bsN +dcA +bsJ +cug +dlz +eqU +bsy +bsx +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(19,1,2) = {" +sqe +bsC +bTl +bLw +eUT +eVh +bLZ +bOp +bMJ +bSl +aZC +bRu +bKe +bOO +bIs +bOi +bIs +aZf +evd +aYG +aYv +euR +aYa +euN +bci +aWf +aWm +bbC +euY +aVw +aVl +aWB +aVX +aWm +bbC +aWf +bby +bbx +aVW +aVS +bbs +bbp +aVA +euR +bIs +dkG +dkD +eqU +anf +eqU +dkD +bIs +bIs +bOi +bOi +bIs +bIk +bDj +baB +byp +etJ +bxz +bag +ewK +ewE +bGF +dbL +bxJ +bCt +bCt +bCt +bFr +bxJ +bxJ +bBJ +bBJ +eqU +aUS +bBJ +bBJ +bxJ +bxJ +bzk +byC +byS +bec +bDk +eqU +eqU +bzV +bAx +bCU +bBr +bxJ +bxJ +bxJ +bBJ +bBJ +bdb +cgn +bxJ +bxJ +bxJ +bzk +eqU +eqU +bzH +bzk +bxJ +byG +bxJ +bxJ +eti +bxT +byj +bxN +bxy +bxo +bwW +bTK +bsJ +buF +bsJ +btc +bsN +bsN +eyg +btx +hkX +btx +glF +btx +btx +beF +aRC +aRC +glF +btx +btx +ged +aRC +aRC +glF +btx +btx +ckN +btx +btx +glF +aRC +btx +btx +btx +aRC +aRK +aRC +btx +ckN +btx +btx +glF +btx +hkX +exK +btr +bsN +buv +erU +bsJ +cug +dlz +eqU +bsz +bsy +eqU +eqU +bsw +bsw +eqU +eqU +eqU +sqe +"} +(20,1,2) = {" +sqe +bsC +bTm +bLw +bLZ +bMu +bLZ +bOp +bLx +bMJ +bCQ +bRt +bKe +bJN +euR +bIt +eKY +bMz +bMz +bPq +aYw +bKe +bci +euZ +aXH +bJN +bKk +bJN +bJN +eDy +aWR +aWC +aVE +aWn +aVp +bJN +eDy +eDq +eDh +bLy +bJb +aVp +aVB +aVw +bbi +bIs +dkD +eqU +eqU +apx +bJL +bIs +bOi +bOi +eUO +bIs +bxz +bDj +baC +bDt +bxz +bxz +eUH +bBJ +ewF +dbO +bxJ +byD +bxJ +bFT +bxJ +bxJ +bxJ +bxJ +byD +bwN +bBJ +eqU +bBJ +bxJ +bxJ +bxJ +bzk +byS +bDk +bDk +eqU +eqU +bAO +bxI +byC +bzk +bxJ +bxJ +bHj +bBJ +bBJ +bBJ +bBJ +bBJ +bxJ +bxJ +bxJ +bzk +byC +eqU +bxI +bzk +bxJ +bxJ +byD +byD +bmD +bxL +bkN +bxO +bkE +bxp +bwX +bPG +bsJ +buF +bsJ +erV +bsN +bsN +eyg +btx +hkX +btx +btx +btx +buR +bLK +bew +bdI +aRC +btx +btx +btx +aRC +aRB +btx +btx +btx +btx +btx +btx +btx +aRC +btx +btx +aRC +btx +btx +aRC +aRC +btx +btx +btx +btx +btx +hkX +exK +btr +bsN +bsU +bsJ +bsX +cug +dly +eqU +bsy +bsz +eqU +eqU +bsw +bsw +eqU +eqU +eqU +sqe +"} +(21,1,2) = {" +sqe +bsB +bTs +bLw +bLZ +bLZ +bPc +eJC +bLx +bSi +fut +uqw +bQL +eJq +bcV +aZo +eGP +aZg +bMz +aYH +aYx +aYn +aYb +aXR +aVp +bJN +eEn +eDq +eDq +eDO +aWS +aWD +eDZ +eDq +eDh +eDH +eCH +eDr +eCH +eCG +bKk +aVL +bJb +bJN +bbj +bIs +apE +apz +eqU +dkD +bOi +bIs +bOi +bOi +bIs +bIs +bxz +bDj +baC +bDt +bzX +eUK +eEq +ewL +ewG +bGF +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +byk +bxJ +bxJ +bxJ +bBJ +bBJ +byk +bxJ +bxJ +bzk +byC +byS +buV +bDk +eqU +eqU +bzV +dig +bzk +bzk +bxJ +bxJ +bxJ +bDN +bBJ +bBW +bBJ +bxJ +bxJ +bBq +bxJ +bxJ +bxJ +bAN +bzk +bxJ +bxJ +bxJ +bxJ +bzm +etk +bxL +did +bxP +bxq +eWM +bwY +bfH +bsJ +bsJ +bsJ +erW +bsN +btr +eyg +btx +hkX +ppc +btx +nhC +beJ +bLN +bLK +nhC +buR +aUf +btx +ppc +aRC +aRz +aSk +aRz +aRC +aRE +aRB +aRE +aRC +aRz +btx +aRz +aRC +aRz +btx +aRz +aRC +aRE +aRB +aRz +btx +btx +hkX +exK +btr +bsN +erU +bsJ +buF +cug +dly +eqU +bsA +bsy +eqU +eqU +bsw +bsw +eqU +eqU +eqU +sqe +"} +(22,1,2) = {" +sqe +bvb +bTk +bLw +bLw +bLZ +bLZ +eJl +bLx +eJA +fut +fut +eJt +bQQ +bcW +aZp +bJn +bIJ +bIs +bIs +aWy +bLy +aYd +bLy +bJN +eDy +eDz +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCS +eCF +bJN +bJN +aVp +aVm +bIs +aUX +dkG +dkG +aUH +bIs +bIs +bIs +bIt +baL +baH +bxz +bDj +bpD +bDt +bxz +eUK +qHT +ewF +ewH +bGM +bxJ +bxJ +bxJ +aNm +bxJ +bBY +bxJ +bxJ +byh +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bzk +bzk +byS +eNq +eqU +eqU +bzV +dip +bAN +bzk +bxJ +bxJ +bxJ +bBJ +bBJ +bBJ +bxu +bBJ +bxJ +bas +bBr +byD +bxJ +bxJ +bxJ +bxJ +bxJ +byk +bzn +bBJ +bBJ +bkY +etk +bkK +bxQ +dez +cKs +bsN +bwF +bwv +bsJ +bth +bsW +bsN +btr +eyg +btx +hkX +sJd +btx +tzk +bLK +bMd +bLL +bdJ +aVb +sJd +aRC +aSe +aRB +aRA +aRC +aSe +aRC +aSe +aRC +sJd +aRB +aRZ +aRB +aRA +btx +sJd +btx +sJd +btx +sJd +aRC +aRA +btx +btx +hkX +exK +btr +bsU +bsJ +buF +buF +cug +dly +eqU +bsA +bsA +eqU +eqU +bsw +bsw +eqU +eqU +eqU +sqe +"} +(23,1,2) = {" +sqe +bsB +bTn +bLw +bLZ +bLZ +bLZ +bdj +bMJ +htK +aZD +bRv +bKe +bJN +bPe +bIs +bJn +bIH +aYU +bKt +bck +bLy +bJb +bJN +eDy +eCH +eCH +eDi +eCH +eCH +eDr +eCH +eCH +eCH +eCH +eDI +eCH +eCH +eCH +eCH +eCG +bJN +bJN +bJN +aVn +euO +bIs +bIs +bIH +bIs +bIs +bJw +bIs +bJc +aUl +aUb +bxz +bHY +bHN +bDt +bxV +bxz +ewT +ewM +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +byD +evS +bxJ +bzk +byC +byC +eqU +eqU +byg +diJ +bzk +bxJ +bxJ +bxJ +bBJ +bBJ +bBJ +bCc +bBJ +beX +bxJ +bxJ +bxJ +bzk +bzk +bzk +byC +byC +bxJ +byh +bBJ +bBJ +bKZ +bxJ +bxJ +etk +bco +bvw +bsW +erU +aob +bsJ +bsJ +bvS +aNb +btc +btr +eyg +btx +hkX +btx +btx +bex +buR +bLK +bex +btx +aRB +aRB +aRB +ddd +aRC +btx +btx +btx +btx +btx +aRC +btx +btx +btx +aRC +aRC +aRC +btx +btx +btx +btx +btx +btx +btx +btx +btx +hkX +exK +btr +bsN +erZ +bsJ +buF +cug +dly +eqU +bsy +bsA +eqU +eqU +eqU +bsw +bsw +eqU +eqU +sqe +"} +(24,1,2) = {" +sqe +bsC +bTl +aZP +bLw +bPI +bLZ +eJC +eYM +htK +aZE +bRw +blS +bJN +bPe +bJx +bIH +bJc +bIs +bPf +aYy +aYo +bJN +eEC +eCH +eCH +eCH +eCH +eCH +eEc +eCH +eCH +eDi +eCH +eCH +eCH +eCH +eDi +eCH +eCH +eCH +eCy +eCp +bJN +aVo +bKU +bIs +aUU +bml +bIs +bIs +bIs +bIs +aUq +aQa +baI +bxz +bHY +bHG +bDt +bxz +bxz +byh +bxJ +eti +hYu +lnt +vrH +bGj +bxJ +byh +bxJ +eOH +boF +nfT +bxJ +bxR +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +byC +byC +eqU +eNp +bCM +bzk +bxJ +bNE +bxJ +bxJ +bBJ +bCr +bBJ +bBJ +bBJ +bxJ +bxJ +bxJ +bzk +byS +aTk +byS +byC +bAw +bzk +bxJ +bzl +bBJ +bBJ +bBJ +bxJ +bxJ +eOd +bfY +bsJ +bsJ +bsJ +bsJ +bsJ +boP +bcj +aTK +btr +eyg +btx +hkX +btx +glF +btx +btx +buR +bey +btx +glF +btx +btx +btx +aRC +btx +glF +btx +btx +qyP +btx +btx +glF +btx +btx +btx +aRC +aRC +glF +btx +btx +qyP +btx +btx +glF +btx +hkX +exK +btr +bsN +bsU +bsJ +bsJ +cug +dlz +eqU +bsz +bsy +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(25,1,2) = {" +sqe +bsC +bTm +bLZ +bLZ +bLZ +adU +eJl +bLx +htK +tKJ +eMU +bRb +bJN +bPe +bIs +bIs +bIs +bIJ +bPr +bPX +bKk +eDy +eCH +eCH +eEu +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCT +eCT +eCI +bLi +bLi +bLi +bLi +aVg +aUY +baZ +baZ +aUI +bIs +bJx +aUt +baP +baM +cDX +bxz +bDj +aTR +bHH +bxz +bEt +bxJ +bxJ +dYG +cIZ +ehX +bxL +bwr +bxJ +dnw +bFt +pwl +vhI +omA +bxJ +bxJ +bxJ +bxJ +cgn +bxJ +bxJ +bxJ +bDy +bDJ +bzk +bDy +aQq +aVe +bxJ +byk +bxJ +bLW +bxJ +bBJ +bBJ +bBJ +bBJ +bxJ +bce +bzk +byS +eqU +eqU +bAn +bgz +byC +byC +bzk +bxJ +bxJ +bxJ +bBJ +bxJ +bmy +cRY +cRY +cRY +bsJ +bsX +bsJ +bsJ +bsJ +btc +aTK +btr +njD +ouv +ouv +ouv +ouv +ouv +ouv +dug +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +aRN +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +ouv +hNm +btr +bsN +bsU +bsJ +sZl +cug +dlz +eqU +bsy +bsz +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(26,1,2) = {" +sqe +bsB +bTs +adU +bLZ +bdv +bLZ +bOp +bMJ +htK +aZF +aZw +bRb +bJN +bPe +bIs +aYm +bIs +bIs +bQi +aPz +aYp +eEy +eED +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eEc +aWu +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCJ +bLi +bLi +bLi +bKV +bKV +bLy +bJN +bKk +bJN +bJM +baU +baQ +bJd +aQa +cDX +dpG +bDj +bHG +bHH +bxz +bxz +bxJ +bxJ +tET +cLm +byn +bvl +rSG +mlH +uIN +bcb +sGT +bQM +tMb +bEz +bxJ +bxJ +bxJ +bxJ +byh +bxJ +bxJ +bDO +bDr +aQq +bDr +bDr +bDn +bxJ +bxJ +bxJ +bCD +bxJ +bxJ +bBJ +bBJ +bxJ +bxJ +bzk +byS +eqU +eqU +buV +eqU +eqU +bAn +bAl +evE +byC +bxJ +bxJ +bxJ +eti +eyA +eye +eyw +bsN +bsN +erZ +bsJ +bsJ +bsJ +btc +aTK +dcT +bsN +btr +btr +btr +btr +btr +btr +btr +btr +aMG +btr +aSm +aSm +aSm +aSm +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +btr +bsN +bsN +btr +btr +btr +btr +btr +btr +btr +dcQ +bsN +bsU +bsJ +bsJ +cug +dly +eqU +bsA +bsy +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(27,1,2) = {" +sqe +bsA +bTr +bLw +bLZ +bdx +bLZ +bOp +adQ +htK +adO +wcw +bKe +bQR +bPe +bIs +bMz +eVe +bIs +aYI +aYz +bLy +eEy +eED +eCH +eCH +eCH +eCH +eDi +eCH +eCH +eCH +eCH +eCH +eDO +eCH +eDi +eCH +eCH +eCU +eCJ +bJb +bJN +bJN +bJb +bJN +bLy +bKu +bJb +bJN +bJN +aUz +aUu +bIu +aUm +cDX +bxz +bDj +bHG +bDt +bxz +bxz +bxJ +bxJ +vUV +xBa +bGq +bxJ +boY +aZd +jGc +diQ +bRD +dnA +cDh +bxJ +bxJ +bzk +ewi +evX +byk +bxJ +bxJ +bDP +bDr +bDr +bDs +bDs +bDo +bxJ +bxJ +evP +bCt +evO +evM +bFr +qxT +qxT +bfm +bzk +byC +eqU +bsC +buU +bsw +bxC +eqU +eqU +bzV +bzH +bzk +bxJ +bxJ +eyD +eyB +eyy +eyx +dew +eym +bsN +erZ +bsJ +bsJ +btc +bsN +bsN +bjl +aUN +aMw +aMw +beY +bcQ +bsW +bsW +bsW +bsW +bsW +bsN +bsN +bsM +asF +bsN +bsV +bsN +buv +bsN +bsN +bsN +bsN +bsN +bsN +bsN +bsN +bsN +bsW +bsN +bsN +bsN +buv +bsW +bsN +bsN +bsN +bsN +bsN +bsN +erU +btf +bsJ +cug +dly +eqU +bsA +bsA +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(28,1,2) = {" +sqe +bsB +bTn +bMu +bSx +bSU +bLZ +bPI +bLx +bMJ +cCk +uVb +nSY +bJN +bPe +bIs +eVe +eVf +eVd +evc +aVr +bJP +eDj +eEE +eCH +eCH +eDi +eDi +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eDr +eDi +eCH +eCH +eCz +eCq +bJN +aVp +bLy +euM +bmm +aUO +bKk +bJO +bJN +bJN +bPe +bxz +bEt +eIt +euy +byp +bHI +bxz +bxV +bHj +bxJ +sVu +cLt +cID +bwi +byG +bxJ +bxJ +boN +etk +eOG +eOE +bxJ +bxJ +bzk +bAw +evY +bxJ +bxJ +bBr +bxJ +ase +gjE +gjE +tPn +bzk +bzk +bNO +bxJ +byk +bmD +bEM +bFu +bFu +bFu +bwi +byC +byC +byC +eqU +erj +erh +bsw +bxC +eqU +eqU +byg +bxI +bzk +bxJ +etk +bxL +eyz +spk +eyo +eyo +eyj +bsN +bsX +bsJ +erV +bsW +eIr +bsW +bsW +bsW +bsW +erU +bsJ +bsJ +bsJ +bsJ +bsJ +sZl +erV +bsN +aSr +asF +bsN +bsN +bsN +bsN +bsN +bsW +erU +bcC +bsW +erU +erV +bsN +erU +sZl +erV +bsW +bsW +erU +bsJ +erV +bsN +bsN +bsN +bsN +erU +bsJ +bsJ +buF +cug +dly +eqU +bsy +bsx +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(29,1,2) = {" +sqe +bsC +bTl +bLZ +bOp +bSU +bLZ +bLZ +bOp +bSj +bRS +qng +nSY +bJN +evi +bIs +eVe +bOi +bIs +bIs +bbI +bJN +bKe +bJN +eEy +eCH +eCH +eCH +eDr +eCH +eEe +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCK +bJN +eCr +bKk +aVq +euP +euN +bJM +bJN +bKe +bJN +bJN +dcK +byp +bIK +bxz +etc +byp +byp +byp +etm +bxz +aVI +byk +cnU +cLx +mRz +bxL +bwi +bFt +bxJ +cKv +boJ +byD +eOF +bxJ +byC +qOa +bzk +evZ +bwi +bxJ +bxJ +bxJ +byC +bxC +eqU +bzV +blU +byC +bzk +bNf +eti +bxL +bEV +bDW +byw +bBX +bxL +bzk +blE +byC +eqU +erc +eri +bxC +eqU +eqU +bzV +ajA +byC +bzk +bxJ +bxJ +byl +cRY +cRY +cRY +eyp +eyk +bsJ +buF +buF +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +eIl +exY +exY +bsJ +btb +buh +bsJ +bsJ +buN +btc +aSs +aSP +aKC +aKC +aKC +aKC +beP +jVP +jVP +jVP +jVP +jVP +aSJ +bud +aSH +jVP +jVP +jVP +jVP +jVP +jVP +aRx +aRt +aKC +aKC +aQb +jVP +ivt +bds +buF +cug +dlz +eqU +bsz +bsy +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(30,1,2) = {" +sqe +bsC +bTm +adU +bTe +bSU +bLZ +adU +bOp +htK +brE +bRt +eJu +bJN +bPe +bIJ +bIs +bIs +bIs +bOw +bcu +aVp +bLy +bJb +eDj +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCH +eCJ +bJN +bJN +bJN +bLy +bbl +bIs +bKL +aUV +bKm +aOA +bJP +bJN +bHG +byp +bGs +bIw +byp +byp +bHG +byp +bDt +bxz +bxz +bxJ +cnU +bpe +bpd +etk +arR +bwi +bHm +bxJ +byh +byk +bxt +bxJ +bzk +nTN +byC +ewa +bxL +evQ +bxJ +bzk +byS +bsB +eqU +bDk +eqU +byg +bdU +bzk +bxL +bKQ +bEX +bEd +byO +boX +bxL +bxL +byC +byC +eqU +erk +buZ +eqU +eqU +bAn +bgx +bzk +bzk +bxJ +bxJ +byk +bxJ +eOd +bfY +eys +eyq +bsN +erZ +bwl +buF +buF +bjD +bfl +bsJ +bsJ +erW +jDG +beP +eIk +eyb +eya +exY +bsJ +evz +bsJ +cLz +aSt +aSQ +aSM +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +aKD +awn +ast +buF +buF +cug +dlz +eqU +bsy +bsz +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(31,1,2) = {" +sqe +bsB +bTs +bLZ +bTf +bSV +bLZ +bMw +bOp +htK +ryO +brs +eJv +bms +euP +bIs +bIs +bQp +bIs +bIs +euL +bcn +aQy +aXR +bJN +eDj +eEo +eDT +eDT +eDT +aWT +aWE +eEa +eDT +eCK +eDj +eDz +eCH +eCH +eCJ +bJN +aVL +aVE +aVx +bbj +bIJ +bbe +bKm +aUP +aUJ +aOA +bEP +bJo +bHG +bHG +bIx +bHG +bch +bHG +byp +eut +bxz +aTr +bxJ +bpg +bGF +bGr +bwS +bGb +boT +qbN +bxb +bzl +bxJ +bEF +bxJ +bzk +bAZ +bzk +ewb +bEO +bvl +bxJ +bzk +byS +blX +bDk +eqU +eqU +bzV +ajA +byC +bMY +bLr +bGh +bCx +bzM +boZ +bfp +bxL +bzk +byC +eqU +erl +eqU +bAn +bgz +byC +bzW +bzk +bxJ +bxJ +bBJ +bBJ +bxJ +eOe +bfY +eyt +bfQ +bfF +bsN +bsJ +buF +buF +buF +bsJ +bsJ +erW +aSP +vTk +beZ +beR +bvd +qix +exZ +erZ +buS +bsJ +bsJ +aSu +aSQ +buB +aKE +bhh +bhn +bhl +bhj +bhh +bhn +bhl +bhj +bhh +bhn +bhl +bhj +bhh +bhn +bhl +bhj +bhh +bhn +bhl +bhj +bhh +aKE +aJs +ast +buF +buF +aos +dlz +eqU +bsA +bsy +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(32,1,2) = {" +sqe +bvb +bTk +bLw +bLZ +bLZ +bdm +bLZ +bOp +htK +gFh +bRu +eJw +bPe +bIs +bIs +bIs +bIs +eKU +aYJ +eKN +bPK +aYe +aXS +bLy +aVp +bJN +bJb +bJN +eEf +aWU +aWF +bLy +aWo +aVp +bJN +eDj +eDs +eDj +eCV +bLy +aVp +aVF +aVy +euP +euQ +bbf +bKw +bKf +bKf +bJQ +bJy +bxz +bDj +byp +byp +bHG +btO +bHG +byp +adR +etm +bxz +bxz +bGN +bpf +oJo +bGk +bpa +jzN +jzN +eOI +gwJ +bxz +bxz +bxz +bxJ +bzk +ewj +ewc +bxJ +bxJ +bxJ +bzk +byC +byS +buV +eqU +bDk +eqU +bAn +blR +bCM +bxL +bGi +bEB +bCx +bpc +bfZ +bxL +byC +byC +eqU +bsz +eqU +bzV +bAx +bzk +bzk +bas +bxJ +bxJ +bBJ +bBJ +bxJ +eOf +bvw +eyu +eyr +eyl +esW +bsJ +bsJ +bsJ +erW +bsL +bsL +eye +uRJ +bvd +beK +oSA +beK +bvd +rTG +exU +aWI +esj +cLe +blz +aSQ +buB +bim +btt +dSU +btt +btt +btt +btt +btt +btt +btt +btt +dSU +btt +btt +btt +btt +btt +btt +btt +btt +dSU +btt +bha +aJs +ast +buF +buF +cug +dlz +eqU +bsA +bsA +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(33,1,2) = {" +sqe +bsB +bTn +eUT +eUT +bLZ +bLZ +bLZ +bOp +htK +fBS +bRx +nSY +bPe +bIJ +bQD +aZk +eKX +eKV +eKR +eKO +euR +eKL +bKe +bPj +aXB +aXh +aPj +aXh +bbu +aWV +bbu +aWv +aWj +euV +aWg +bJN +bLy +bLy +bLy +bJN +aVK +aVG +euP +bIs +bKy +bKJ +bKx +aUQ +bKf +aUC +bDt +bxz +bzA +byp +byp +bRa +bvc +bbz +byp +byp +byp +bBL +bxA +bxA +bEP +uYo +dnE +bCE +byp +byp +byp +bxA +bxA +etm +bxz +bEt +ewo +ewk +bxz +bxz +bxJ +bxJ +bxJ +bzk +byC +byS +blW +eqU +bDk +eqU +bAn +blN +bzk +bxL +bEG +uIv +bqZ +bnI +bxL +bzk +byC +eqU +bsA +eqU +bAO +bxI +bzk +bxJ +bls +bxJ +bBJ +byT +bxJ +eti +eOg +bwm +eye +bfR +bvr +aTK +erZ +bsJ +bsJ +btc +eye +dew +eyf +udG +btl +cBi +xCi +cBi +btl +spt +exV +bsN +cLa +cLa +blz +bfM +buB +bin +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhb +aJs +ast +bsJ +bsJ +bad +dly +eqU +bsy +bsA +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(34,1,2) = {" +sqe +bsC +bTl +eUT +eUT +bMu +adU +eJl +bLx +htK +aZH +bRy +nSY +bPe +bIs +bIH +aZl +aZh +eKW +eKS +eKP +eKM +bIt +bKL +aXI +bPe +euN +aXr +euR +bOw +bIs +bIs +bIs +bMz +euW +bPi +aWc +aVY +bbw +bbu +aVQ +aVM +euP +bIt +bLj +bmn +bKL +aUW +aUR +aUK +bJR +bDt +bxz +aZn +dFp +bof +byp +bMI +byp +byp +byp +byp +byp +bGs +byp +byp +dVn +aTU +aTY +aTY +lSF +lSF +byp +byp +byp +bxA +etm +bxz +bxz +bxV +bxz +bxz +bxz +bxz +bxJ +bzk +byC +byS +bsz +eqU +eqU +bzV +bAx +bzk +etk +bxL +bDz +bri +bxL +bvl +bzk +byC +eqU +eqU +eqU +bzV +bzH +bzk +bxJ +bxJ +bxJ +bxJ +bxJ +evB +bkO +eOg +bwm +bgb +bwn +bgb +bwm +bsN +bwe +bsJ +btc +exE +eyh +bsW +rDi +bvd +bvd +beS +beL +bvd +qEB +exE +aXF +cLa +cLa +aSw +aSR +buB +bip +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhc +aJs +ast +exA +btb +erJ +dly +eqU +bsz +bsy +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(35,1,2) = {" +sqe +bsC +bTm +aZQ +bLZ +bLZ +eJl +bLx +bLx +htK +bRA +bRt +dJL +dlf +bIs +bQE +bIH +bIs +eJc +eKT +eKQ +euP +bMz +bPr +aVr +bJN +bJN +bON +aXi +bIs +bIs +bKt +bIJ +aWp +bIs +bIt +bIs +aVZ +bIs +bIs +bIt +bIJ +bIs +bIs +bLk +bKW +aUZ +bKe +bKe +bKg +bJS +euI +baS +bdL +bol +boj +byp +bmi +bbN +bpy +lbE +ojB +byp +byp +bph +byp +bGs +bGl +cGO +cGO +drV +lSF +lbE +bEP +byp +bEA +byp +bBL +bxA +bxA +etm +bDY +bxz +bDQ +bxJ +bxJ +bzk +byC +byS +eqU +eqU +bAO +bxI +bzk +bxJ +etk +bEO +bEO +bvl +bxJ +bxJ +bzk +byC +eqU +byS +bgx +bzk +bxJ +bxJ +eti +eIw +bxJ +bxJ +bxJ +bym +bwm +bwm +bgn +bkj +bgd +bwm +bwm +beV +bsJ +erV +erU +eyi +bsJ +eyd +boU +bvd +beR +beK +eKH +bez +exW +exS +cLi +cLd +aSx +aSR +buB +biq +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhd +aJs +ast +erM +exp +asz +dlz +eqU +bsy +bsz +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(36,1,2) = {" +sqe +bsB +bTn +bLw +bPp +bLZ +bOp +eYM +bMJ +htK +brF +bRv +dJL +dlm +bKt +bOw +bIs +bIs +dnJ +dnI +dnH +bIs +aYf +aXT +aXJ +bPe +euL +aXt +aXj +aXc +bIs +bIs +bIs +bIs +bIs +bIs +bIs +bIJ +bIs +bIs +bIs +bIs +bIs +bIs +bLl +aVh +aVa +bJN +bKk +bJN +bDt +bxz +bxz +bxz +etl +bxB +bGs +bNA +byp +bEP +psN +igi +bEP +bDt +aOO +bzA +bxB +bxB +cPZ +cPZ +cFQ +bFx +boG +lbE +lbE +cYL +cYK +byp +byp +byp +byp +etm +bxz +bxz +bxJ +bxJ +bxJ +bzk +bzW +byS +eqU +bzV +bCP +bxJ +bxJ +bxJ +bxJ +bxJ +byV +bxJ +bzl +bxJ +bzk +bAZ +eqU +bzk +bzk +bxJ +eti +eIA +eIx +bzo +bxJ +eti +bxL +bxT +bgu +bgo +bgk +bge +cgw +bgb +btr +erZ +bsJ +bsJ +bsJ +bsJ +bsJ +vEd +mEH +mEH +mEH +beG +beA +exX +aYW +cLB +cLd +aSy +aSR +buB +bir +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhe +aJs +asu +exC +exq +dkq +cwR +eqU +bsA +bsy +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(37,1,2) = {" +sqe +bsC +bTl +bLZ +adU +bLZ +eJE +bLx +bMJ +tph +bRT +bRv +dJL +dlm +bIs +bIs +bIs +dnK +aYV +aYK +aYA +bPL +bPB +aXU +aXK +euP +bJx +bIs +bIs +bIs +bIs +bIs +bIs +aWq +bIs +bIs +cMk +bIH +bML +bIs +bIs +bIs +bIs +bIs +aVt +aVi +aVc +euL +bPi +bPi +etJ +bxz +bxz +bJe +bxz +bSw +bDj +byp +bCE +bGs +aUL +bpk +bHk +etJ +bxz +bxz +bxz +bxz +bxz +bxz +bxz +bxz +bxz +etl +byp +bFU +byp +byp +eKn +byp +byp +byp +etm +bDR +bxz +bDD +bzX +bxz +bzk +byC +byC +bAZ +bxJ +bxJ +byk +bxJ +bxJ +bas +bxJ +bxJ +bxJ +bxJ +eIS +bzk +bzk +bzk +bxJ +eti +eIG +eIB +eIy +bxL +eFF +bmC +byn +bxT +bgv +bgp +bgj +bgf +bjS +bwn +bvr +bft +bsJ +buF +buF +buF +buN +bul +bfa +beU +beM +beH +beB +bdK +bsJ +buO +cLd +cLg +aSR +buB +bit +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +rus +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhf +bdz +bdr +exD +agd +bKI +dlz +eqU +bsA +bsA +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(38,1,2) = {" +sqe +bsC +bTm +bLw +bLZ +bLZ +eJl +eJD +bMJ +mlC +bRT +ygk +blS +bQS +evj +bMz +bIs +dnK +aYX +aYL +bPe +aYq +aYg +aXV +bPe +aXC +bIs +bIs +aXk +bIs +bIs +bIs +bIs +bIs +aWk +eGN +bJn +bMA +bIs +bIs +bIs +bIs +cwZ +bIH +bLm +aVk +aVd +bIs +bIs +bIs +bxz +aUA +aUv +aUn +bqf +baK +aTY +aTU +byp +bEP +bHk +etJ +ewU +ewN +bxr +bzJ +bxr +bvj +cfG +bCe +cfG +cfe +bxr +bxr +etl +bxB +bnP +aTU +aTY +aTY +aTY +byp +byp +bxA +etm +bxz +bxz +bxz +bxJ +bxJ +bzk +bzk +bxJ +bCD +bxJ +bBJ +eMf +bxJ +bxJ +bcg +bBq +bxJ +bxJ +bzk +bxJ +bxJ +bxJ +etk +blt +eIC +eIz +bvl +byV +etk +bxL +bxT +bgu +bgq +bfS +bgg +bgc +bgb +beV +bsJ +bsJ +buF +buF +buF +buF +bsJ +bsJ +bsJ +beN +asD +sZl +bsJ +bsJ +cLB +cLw +cLg +aSR +buB +biu +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bdE +bdz +asv +exE +exs +dks +dly +eqU +bsy +bsx +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(39,1,2) = {" +sqe +bsB +bTs +bLZ +bPI +bLZ +bOp +aZO +bMJ +ngP +aZI +bRx +nSY +bJN +bKU +bMz +bOi +dnK +aYY +aYM +aYB +bPL +bck +aXW +aXL +bIs +bIs +bMc +bIs +bIs +bOi +bOi +bIs +bIs +bIs +bIs +bIH +bIs +bIs +bIs +bIH +bIH +bJn +bJn +bIH +bIs +bIs +bIs +bIJ +bIs +bFw +aUB +etm +bxz +bIM +bHZ +byp +byp +byp +bDt +cbF +bpl +eUI +ewO +bxr +cLA +bvj +byP +ctJ +cfR +byP +bpN +bxr +bxr +bxr +bxz +bxz +etl +bow +byp +byp +byp +byp +byp +byp +etm +bxz +bxz +bxJ +byk +bxJ +bNh +bxJ +bLO +bBJ +bBJ +bBJ +bBJ +bCr +bxJ +bxJ +bxJ +bxJ +bxJ +bxJ +aRp +byD +eII +etk +eID +bvl +aST +bxJ +bxJ +bym +bwm +bwm +bgr +bkk +bgh +bwm +bwm +aTK +bfu +bsJ +buF +buF +buF +buF +bsJ +bsX +bsJ +aNy +bsJ +bsJ +bsJ +bsJ +cLB +cLd +cLg +aSR +buB +biv +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhg +aJs +erO +bsN +ext +cLI +dly +eqU +bsz +bsy +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(40,1,2) = {" +sqe +bvb +bTk +bLZ +bLZ +bLZ +bSy +bLx +bMJ +adM +bRU +bCd +gzA +bJN +bPe +bIs +bOi +bIs +dnF +dnF +dnF +evb +aPz +bKe +boq +bop +bJc +bIs +bIs +bOi +bOi +aWG +bIs +bIs +bIs +bIJ +bIs +bIs +bIs +bIH +bMo +bJn +eqU +anf +bJn +bIH +bIs +bIs +bIs +hLy +bFw +bEP +baT +bxz +bxz +dcJ +bDj +byp +byp +etJ +bxz +ewY +aSv +ewP +bDf +bvj +byP +cxW +eOJ +ciV +cfR +cff +bDf +bxr +bEe +bxr +bxr +bxz +bxz +etl +byp +bCE +byp +byp +byp +byp +bxA +etm +bxz +bxz +bxz +bxJ +bxJ +bBJ +bBJ +bCc +bBJ +bBJ +bxJ +bxz +bBC +bxz +bzX +bxV +bxz +bxz +bxz +dei +bzX +eIE +bxz +eIt +bxz +aOO +etl +bga +bwm +bwm +bgl +bwm +bwm +bsW +bsW +erU +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +bvi +beO +bsJ +bsJ +cLf +esj +cLd +cLa +cLy +aSR +buB +bir +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bha +aJs +exJ +bsN +exu +exk +dlz +eqU +bsy +bsz +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(41,1,2) = {" +sqe +bsB +bTn +bMu +bLZ +adU +bOe +bOp +bMJ +uIe +aZJ +brt +imz +mRr +bPe +bIs +bIs +bIs +aYZ +bcE +aYC +aYr +aYh +aXX +aXM +bIs +aXx +bIs +bIs +bOx +bOi +bOi +bIs +bMc +bIs +bIs +cmP +dkD +dkG +dkD +dkD +eqU +eqU +aTn +eqU +bKY +bIH +bIs +bIs +aUM +aUE +bEP +aUw +bHs +bxz +bHX +bCE +byp +bpE +bxz +bxz +eUK +eUJ +ewQ +ewI +byP +cxW +cye +eOJ +eOJ +cge +bEc +bEo +bxr +bxr +bvj +bmc +bqv +bxr +bxr +etl +bxB +bxB +byp +byp +byp +byp +byp +etm +bxz +bxz +bxJ +byk +bBJ +bBJ +bBJ +bxJ +bxJ +bxz +bxz +bxz +etc +bxA +bxA +bxA +bxA +bAy +bxz +bzY +bxA +bxA +bxA +bxA +bxA +etm +bxz +etc +cLg +cLf +cLf +cLf +cLK +cLf +cRE +cRE +cRE +cRE +cRE +dcp +dcp +dcp +bsJ +bsJ +esj +cLe +cLe +cLa +eIc +cLg +bsX +aSR +buB +bin +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +btt +bhb +aJs +exJ +exC +asG +dkr +dlz +eqU +bsA +bsy +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(42,1,2) = {" +sqe +bsA +bTr +bLZ +bLZ +bLZ +bSx +bLx +bMJ +bSk +bRC +bRz +nSY +aZq +bJN +evh +bOw +bIs +aZa +ifn +aYD +aYs +aYi +eva +aXN +bIs +bIJ +bIs +bIs +bOi +bOi +aWH +bIs +bIs +bIs +cmP +dkG +dkG +dkF +bMB +bsy +bvb +buZ +eqU +aTn +anf +bJn +bIH +bIs +bIs +aUF +bJz +aUx +bJf +bxz +bDj +byp +byp +bpE +bxz +eUK +ewZ +ewV +ewR +cLL +byP +ewA +cys +eOJ +ctu +byP +bqm +bxr +bxr +boB +bzd +byP +bQh +bpN +bxr +bxz +bxz +bxz +etl +byp +bAz +bCE +byp +byp +etX +bxz +bxz +bxz +bxz +bCu +bxz +bxz +bxz +bzX +bxz +baY +byp +byp +byp +eKb +byp +bAz +bxA +byp +byp +byp +byp +byp +bkT +byp +bxA +byp +cLa +baJ +cLe +cLe +esP +bwg +cLe +baJ +baJ +cLe +cLe +cLe +cLe +cLe +cLe +cLe +cLa +cLa +cLa +eIh +eId +cLa +cLv +aSR +buB +bip +btt +dSU +btt +btt +btt +btt +btt +btt +btt +btt +dSU +btt +btt +btt +btt +btt +btt +btt +btt +dSU +btt +bhc +aJs +exJ +awu +exv +dkt +dly +eqU +bsA +bsA +eqU +eqU +eqU +bsw +eqU +bsw +bsw +sqe +"} +(43,1,2) = {" +sqe +bsC +bTm +bMu +bLZ +bdm +eJC +bLx +htK +bRd +brG +bru +nSY +aYp +bmr +bQF +bmq +bIs +bIs +bIs +bIs +bIs +bIs +aXY +bIs +bIs +bIs +bIs +bIs +rKe +aWH +bmo +aWw +bIs +bIs +dkD +eqU +aVf +aUT +bsA +bsB +bsx +erd +erc +bsx +anf +arh +arh +arh +arh +bJT +arh +arg +arg +bwt +bAu +bxi +bxi +bHO +bwt +eUL +aSv +ewW +ewS +byP +byP +cIR +crt +cge +byP +bqm +bxr +bxr +bxr +bvj +bzd +bzd +bzd +bEc +bxr +bEb +bxr +bxr +bxz +bDj +byp +byp +aTU +bnP +aTY +bnC +bnC +blO +aUn +aUn +aUn +aUn +bnb +blG +bBL +byp +byp +eKj +eKf +eKc +eKa +aTY +aTY +byp +bxB +byp +byp +byp +byp +byp +bxU +byp +cLa +cLo +cLo +cLa +cLa +cLa +cLo +cLo +cLa +cLa +cLb +cLb +cLa +cLa +cLo +cLo +cLo +cLo +eIj +eIi +eIe +cLd +cLg +aSR +buB +aKE +bhi +bho +bhm +bhk +bhi +bho +bhm +bhk +bhi +bho +bhm +bhk +bhi +bho +bhm +bhk +bhi +bho +bhm +bhk +bhi +aKE +aJs +exJ +exF +asH +exl +dlz +eqU +bsy +bsA +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(44,1,2) = {" +sqe +bsB +bTs +bLZ +bLZ +bLZ +bMu +bdj +bMJ +bSl +bRx +bRA +nSY +bJN +bJN +bPe +bIJ +bIs +bmp +bIs +bII +bPM +bII +bLj +bIs +bIs +bIs +bIs +bIs +aXd +aWW +aWJ +aWx +bIs +bIs +cmP +eqU +aVf +aUT +abk +eru +erC +bsw +bsw +bsz +bsB +bxd +bJp +bJU +bJp +arg +arg +bkF +arg +bwt +exc +etL +bxi +bmh +esZ +exb +exa +ewX +cMl +bxr +eug +bDS +bDS +bDS +bqm +cgH +bxr +bxr +bvj +byP +bzd +bzd +bzd +bmb +bpN +bAc +bxr +byJ +bxz +etl +byp +byp +bDt +bxV +bDj +byp +eKn +byp +bxA +bxA +bxA +byH +blH +bDj +bAz +byp +eKm +byp +byp +bxB +bxB +bAA +bxB +bzZ +bxz +bzA +bxB +bxB +bxB +bmz +bgi +etd +cLb +cLa +cLa +cLo +cLo +cLa +cLa +cLb +cLb +cLk +dmO +dmO +cLi +cLD +cLb +cLb +cLb +cLb +cLa +cLa +eIf +eIa +cLg +aSR +aSO +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +bts +aKB +exJ +axA +asI +asA +dlz +eqU +bsz +bsy +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(45,1,2) = {" +sqe +bvb +bTk +bLw +adU +eUT +bLZ +bOp +eYM +htK +bRe +aZy +nSY +bQT +bJN +bJN +euR +bKt +bIs +bIs +bII +bOw +bII +bmm +bII +euN +bJM +euR +bIs +bIJ +bIs +bIs +bIs +bIs +bIs +cmP +cmP +eqU +aUT +eqU +erF +erD +eru +erC +bsw +bsy +byv +bxs +bJp +arh +arg +arg +arg +arg +eGw +bEw +bxi +bmh +bxi +bzf +bAt +bxr +bxY +bxY +bxY +bxY +bxr +byJ +bxr +bxr +bxr +bxr +bvj +bDL +bzd +bzd +byP +bzd +bzd +byP +bou +bxr +bxr +bxz +bxz +etl +bxB +bxB +bxA +byp +byp +byp +byp +byp +byp +byp +byp +blI +byp +byp +byp +bxB +bxB +etJ +bxz +bxV +bxz +bxz +bxz +bxz +bxz +bxz +bxz +bxz +aZn +bxV +bxz +cLf +esb +evA +bjT +cLF +cLa +esq +cLf +bsJ +btD +bsJ +bsJ +cLi +cLg +cLf +bsJ +bsJ +bsJ +cLs +cLa +cLa +eIb +cLd +esP +mEH +mEH +mEH +mEH +mEH +mEH +mEH +bhW +esc +exQ +aSK +bud +aSI +mEH +mEH +mEH +mEH +mEH +mEH +mEH +mEH +mEH +mEH +mEH +mEH +oDR +exG +exw +exm +dly +eqU +bsy +bsz +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(46,1,2) = {" +sqe +bsB +bTn +bLw +bPy +eUT +bLZ +bSy +bLx +htK +bRe +bRz +bRc +nSY +bJN +bJN +bJN +bIH +bIH +bIH +bIs +bIH +bIs +aXZ +aXO +aXE +aXy +bPe +bIs +bIs +bIs +euN +bJM +bJM +bJM +dlc +dkG +dkG +dkC +cjh +aVf +erD +erw +eru +erC +eqU +bsA +byv +bwR +arh +arh +arg +arg +aMT +eGx +esT +bxi +bmh +bxi +bzf +bwt +bxr +bxY +bxE +bxE +arO +eNv +bxY +bxr +bxr +bxr +bxr +bmf +bzd +bzd +bzd +bmd +bzd +bDL +bPC +byP +bpN +bBe +bxr +bxr +bxr +eAU +eAL +etl +bnx +blT +aTY +blP +bCE +byp +byp +byp +bnc +bxB +bxB +etJ +aZU +bxz +bAB +bAB +bAB +bAB +bxz +blu +bxz +bln +bxz +bxz +bxz +bdL +bxz +bxz +bgs +bwZ +bwG +vDS +bjh +bwf +bsJ +bsJ +bsX +bsJ +bvi +bsJ +cLi +cLa +cLv +bsJ +bsX +bsJ +ane +cLs +cLb +cLa +eHY +cLa +cLe +bfx +bsJ +bsJ +bsX +bsJ +erW +bsN +bhS +aRW +bsJ +bsJ +bsJ +bsJ +btV +bsJ +bsJ +bsJ +bsX +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +sZl +erW +exx +exn +dlz +eqU +bsA +bsy +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(47,1,2) = {" +sqe +bsC +buT +ekf +bLw +bLZ +bOe +bLZ +bOp +htK +bRV +aZz +bRd +nSY +bJN +bJN +bJa +bJa +bQn +bJa +aYE +bJa +bIH +euG +awm +bCs +aXz +bbQ +arg +arg +blL +bCs +awm +bCs +bCs +awm +arg +bJp +com +eqU +eqU +aUT +bsw +erw +eru +aXm +eqU +bsA +byc +bwB +arh +arg +aMT +eUP +eGy +eGu +bAR +bmh +bxi +eKz +bwt +bxr +bxE +bxE +bGO +bzD +bFI +bxY +bxY +ewz +bxr +bxr +eug +byP +bzd +bQy +bzd +bzd +bzd +bzd +byP +bzd +blZ +bpN +bxr +aSv +aSv +eAM +etm +bxz +bDd +etl +blQ +bxB +bxB +bxB +etJ +aNU +bxz +bxz +bxr +aZV +bxY +eqU +eqU +ekd +ejI +egD +asJ +eej +eej +eIu +ejG +eej +eej +eej +eej +bkv +bkl +bka +bjU +aZx +bjL +bsJ +bsJ +buF +buF +cxg +bsJ +erV +cLa +cLg +bsJ +bsJ +bsJ +ane +ane +ane +cLs +cLa +cLa +cLa +cLg +bsJ +buF +aVv +bsJ +bus +bhX +aXs +bhL +erZ +bsJ +buF +buF +bsJ +bsE +buX +buX +bsJ +bsJ +bsJ +buF +buF +buF +bsJ +ctQ +exH +exy +exn +dlz +eqU +bsA +bsA +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(48,1,2) = {" +sqe +bsC +buU +buU +ekg +ekf +bLw +dja +bLx +htK +eMZ +aZz +bRe +bQU +dkI +dkI +eqU +eqU +cxF +byc +bPP +arh +arg +arg +euG +bQB +bDI +arg +arg +arg +bNR +bCs +evs +coK +evq +bCs +bEi +arh +bJp +com +eqU +eqU +aUT +bsw +erw +eru +aUT +bsy +bBI +byb +bJU +arg +eEd +eGD +eGz +eGv +bAR +bxv +bxi +etT +bwt +bxr +bxE +eNr +eqU +eqU +bzD +bFy +bxY +bxY +bxr +bxr +bxr +eug +bzd +bNW +bzd +bzd +bjt +bzd +bzd +bzd +bzd +bzd +bpN +bAc +eWO +eAN +eAz +eAs +bxz +bxz +bxz +bxz +bxz +bxz +bxz +bxz +bxz +bxr +byJ +bxr +bxY +eqU +eqU +eke +ekc +ejJ +egD +eej +eej +ejN +ejH +bxG +byq +eej +eej +aQY +bkm +bkb +bjW +bjO +bwf +bsJ +buF +buF +buF +buF +bsJ +bsJ +cLi +cLg +bsJ +bsJ +bsJ +bsJ +bsJ +bsX +btD +cLi +cLa +cLd +cLd +esP +bsJ +buF +bsJ +erV +exR +bhT +bhM +btk +bsJ +bsJ +buF +buF +bsJ +bsE +bsE +bsJ +bsJ +bsJ +bsJ +bsJ +bsX +bsJ +erW +age +exz +exo +dly +eqU +bsy +bsA +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(49,1,2) = {" +sqe +bsA +bsC +eqU +aUS +aTn +ekf +bOp +bLx +htK +adM +bRB +aZu +nSY +dkI +eqU +cZa +eqU +bsy +byv +bPY +com +arh +arg +arg +arg +arg +arg +arg +arg +bOq +evu +bNT +oKO +vLz +evo +bCs +awm +arh +eqU +eqU +blV +eqU +cjh +bsw +eru +kyj +bEl +bsA +byc +bwB +arh +ctc +eGE +eGA +eGv +euA +bmh +bzf +bwt +ctD +bxY +bxE +bzD +eqU +eqU +bzb +bAC +bxE +bxY +boQ +bxr +bxr +bxr +bme +bzd +bzd +bzd +bzd +bzd +bzd +bzd +bzd +bzd +bzd +bDK +eWP +aSv +eAA +byP +bxr +bxr +bxr +bxr +bxr +bxr +bxr +bxr +bxr +bxr +aSv +bxr +bxr +eqU +eqU +eqU +ejR +eka +eeC +egD +eej +eIv +eIs +ejB +ebV +eej +eej +aJw +bkn +bfI +btr +btr +bsU +bsJ +buF +buF +buF +bti +bsJ +bsJ +bfb +cLg +bsJ +bsJ +bsJ +bti +bsJ +evy +bsJ +cLs +aSq +cLa +cLd +cLg +bsJ +bsJ +bsX +bsT +erV +bsN +erU +bsJ +bsJ +bub +bsJ +bsJ +bsJ +bsX +bsJ +bsJ +bsJ +bsJ +btf +bsJ +bsJ +esj +cLq +cLa +cLa +dkr +dlz +dcx +bsO +bsP +bhR +bsI +buL +bgX +bgY +bgX +bsx +sqe +"} +(50,1,2) = {" +sqe +bvb +buZ +eqU +aUS +aTn +aTn +bOp +bLx +htK +adM +bRe +bRe +cxX +eqU +eqU +eqU +bsz +bec +bdY +bPN +bPN +arh +arg +arg +qAO +eoV +bOF +bOF +eoV +tIC +evv +bNU +bNC +bNB +bNq +bCs +cHY +eqU +eqU +blV +cjh +blV +eqU +cvQ +cho +erw +bEl +bsA +byv +bwR +bJA +aMT +eGF +eGB +eGv +bAR +bmh +bzf +bwt +bwt +bxY +bxY +bzD +eqU +bxC +eqU +byu +eNt +bxE +bxY +bxY +bxr +bxr +eug +bEn +bzd +bzd +bPJ +bzd +bzd +bma +bOQ +bNW +bDL +bjt +byP +eWN +eAB +bqm +bxr +bNs +bxr +bxr +bxY +ask +bDE +btg +bxr +aSv +bba +baf +bxr +bxr +eqU +eqU +eqU +ejY +ejT +egD +eej +eej +bxG +bxG +bxG +eej +eej +bkw +bxa +bwH +erU +esQ +bsK +bsJ +buF +bsJ +dmP +dmP +dmP +erW +cLo +cLa +erZ +beI +dmP +bsJ +buF +buF +bsJ +ane +ane +bcd +cLd +cLd +cLu +cLf +btD +bxx +bxx +bfy +cRd +bsJ +bsJ +bsJ +bxx +bxx +bxx +bxx +bsJ +btD +bsJ +esj +cLl +cLf +aQf +cLa +cLd +cLd +asK +asB +abf +dkq +eqY +buc +buc +buc +buc +bsY +bsY +bAU +bsz +sqe +"} +(51,1,2) = {" +sqe +bsB +bsx +eqU +aTn +eqU +aUS +bOp +bLx +srO +brH +czd +bRd +cxX +eqU +eqU +bei +bee +cEU +cEU +bPN +bdQ +qAO +kkG +qAO +ido +eAd +cvA +cvA +gpR +aYc +wMe +bNC +bNC +bNC +bNr +bCs +arh +arh +cHb +cjh +eqU +bLM +eqU +eqU +erD +bsw +bEl +bsz +byc +bxd +eGJ +eGI +eEZ +dlw +bAt +bAR +bpO +bzf +eBt +bwt +bxr +bxr +eNr +eqU +bxC +eqU +bzb +bAp +bxE +bxE +bxY +bxY +bxr +bxr +eug +box +bDS +bzd +bzd +bDL +bzd +bzd +bzd +bzd +bNS +bji +aSv +eAC +ezH +bxr +bxr +bxr +bxY +mBO +qEX +bDF +buo +bxr +aSv +bbB +aSv +byW +aRQ +bxr +eqU +eqU +ekb +egD +eej +eej +ejP +bxG +bxG +eht +eej +eej +aJw +bko +bfJ +bty +bsJ +bsJ +bsJ +bsJ +dmR +bjm +bjc +biU +biM +bfc +cLo +bsU +bsJ +doj +aIG +buF +buP +buF +bsJ +ane +cLi +cLd +cLd +cLd +cLr +cLe +cLr +cLe +cLa +esP +cLf +esj +cLe +cLl +cLf +cLj +cLe +cLe +cLe +cLh +cLa +cLa +aRn +cLa +aMO +aEY +aBr +atl +asC +cKZ +asy +eqY +buc +buc +buc +buc +buc +buc +bAU +bsy +sqe +"} +(52,1,2) = {" +sqe +bsC +buT +aTn +aTn +eqU +aTn +bOp +htK +adM +bRe +bRe +bRd +cxX +eqU +eqU +bsB +bef +cEU +bdZ +cyG +bdR +qyX +eBG +rFd +qBR +pLW +bOG +wSR +cCv +aYc +buE +adG +coS +adv +iGC +bCs +cxQ +arg +arh +bJp +eqU +cjh +eqU +eqU +cjh +aVf +aUT +bBK +byv +bxs +arh +bJp +eFa +bwt +bwt +bAR +bxi +bzf +bwt +bwt +bxr +bxY +bxX +eqU +eqZ +bxC +eqU +eqU +bzD +eNs +bxE +bxY +bxY +bxY +bxr +bxr +bxr +eug +byP +bji +bzd +bjt +bDS +byP +eWR +aSv +eAO +eAD +eAt +bxr +bxr +bxr +byJ +bBe +bxY +bxY +bvm +bxr +bxr +aSv +aSv +aSp +bxr +bxr +bxY +bxY +egD +egD +eej +eej +eej +ehs +bxG +eej +egx +eej +bky +uBU +bfK +bsJ +bsJ +bsJ +buz +bsJ +dmR +bjn +bvs +biV +biO +cLF +aUc +biG +bsJ +bsJ +aIG +buF +buF +buF +buF +ane +cLi +cLw +cLd +cLa +cLa +cLd +cLp +cLd +cLa +cLd +cLr +cLa +cLa +cLa +cLe +cLd +cLd +cLa +cLa +cLd +aMO +aMO +aEY +aRm +aNk +cLb +aBQ +cLc +dkt +dkq +dkq +eqY +buc +bsY +bsY +buc +buc +bsY +bAU +bsy +sqe +"} +(53,1,2) = {" +sqe +bsC +buU +aUS +ekf +ekg +bLw +bOp +htK +bRd +bRe +bRd +cxX +bCs +awm +eqU +eqU +bvb +cEU +cyP +dkh +bPO +vYq +bPk +bPk +hYh +pLW +bOG +eSP +mOi +cTy +evw +buE +bNN +aNa +evp +awm +bDI +arg +arh +buW +arh +arh +bJp +eqU +eqU +blV +bCL +bBR +byv +bwR +bJg +eON +eOM +bIB +dlv +bpS +dlb +dhW +bwt +bwt +bxY +bxY +eNy +eqU +era +eqX +bkP +eqU +eqU +bzD +bFy +bxE +bxE +bxY +bxr +bxr +cLA +bxr +eug +bDS +bDS +bqm +bxr +eTI +aSv +eWQ +bzp +bnQ +bzq +byJ +aSv +aSv +aSv +bCv +bxr +bxr +bxr +byJ +bxr +bbD +aSv +aSv +aSf +bxr +bxr +bxr +eej +aDG +ejO +bzB +ejQ +eej +eej +byt +eej +eej +cRY +cRY +bwf +ctQ +bsJ +bsJ +bsJ +bsJ +dmR +bjo +bjd +bvs +biP +cLo +aUc +bwf +bsJ +bsJ +aIG +buF +buF +buF +buF +bsJ +cLi +cLd +cLa +cLa +cLb +cLa +cLa +eJY +eJX +cLd +cLd +eIh +coI +cLa +cLd +aRG +cLb +cLa +cLa +cLa +cLa +cLa +aSq +erT +aNy +bsJ +exI +btD +dkv +dly +dcx +bsO +eqW +bhR +bsI +bhR +bsI +buL +bgX +bsx +sqe +"} +(54,1,2) = {" +sqe +bsB +buV +ekf +eNB +bLw +bLZ +eYP +htK +bRd +aZI +brv +cxX +awm +awm +awm +eqU +buU +cEU +bea +bPZ +dmN +qyX +nwB +aVJ +qBR +ujG +adJ +adJ +tZL +bQB +bCs +evt +evr +evp +buD +bDI +arg +bQc +arg +arg +arg +krt +arh +bJp +arh +bJp +arh +arh +arh +arh +arh +arg +arg +bwt +etH +bxi +bxi +bzf +bwt +bwt +bxY +bxE +bAo +eqU +ere +era +bsw +bkP +eqU +eqU +bzb +bCm +bza +bxE +bAq +bxY +bxr +bxr +bxr +bxr +byJ +bxr +bxr +exa +eAX +exa +bnW +aNV +bxY +bxr +bxr +eUu +aSv +aSv +aSv +etR +bxr +bxr +bxr +bxr +bxr +bxr +byJ +bxr +bxr +byr +eej +eej +ejS +eej +ejO +eej +eej +eej +bgS +cRY +cRY +cRY +bwI +bsJ +bsJ +bsJ +bsX +bsJ +bsJ +dmQ +dmQ +dmQ +erV +cLF +cLo +erU +bsJ +bsJ +bJI +bsJ +buF +buI +buF +bsJ +btc +asF +bsN +erU +bsJ +esb +cLa +cLa +cLa +eJW +eJT +eJR +cLa +cLd +cLa +esq +bsJ +erV +cLa +cLa +cLa +erU +avK +bsJ +aNz +aKO +bsJ +bsX +cug +dly +eqU +bsA +bsx +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(55,1,2) = {" +sqe +bvb +buZ +bLw +bLZ +bLZ +adU +bOp +htK +adM +brI +bRu +cxX +awm +awm +com +eqU +beg +cEU +cEU +bdW +bdR +oNn +ayN +oNn +hri +rpB +bOF +bOF +arg +arg +euG +bQB +bDI +bNR +bFX +arg +arg +arg +arg +arg +bJC +arg +bLC +arh +bJp +bDG +bJp +arg +arg +arg +arg +arg +euF +bwD +bIN +bxi +bxi +bzf +bwt +bwt +bxY +bxE +bAb +eqU +bxC +ery +ere +ere +boK +bxC +eqU +eqU +byu +bBd +byZ +bxr +bxr +bxr +ewd +bxr +bxr +bxY +bxD +bxY +bxY +bnZ +bxE +bnR +bxY +bxY +bxr +bxr +bxr +eTI +aSv +aSv +bxr +bxr +bxr +bxE +bxY +bxr +bxr +bxr +bxY +bxY +ejT +egD +egD +egD +aDG +eej +egl +egD +eeC +eqU +bsB +bwO +bsE +buX +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +bsJ +exY +erW +cLa +cLJ +esn +bsJ +bsJ +bJZ +bsJ +bsJ +buF +bsJ +erW +asF +asF +erU +bsJ +bsJ +bsX +esb +cLa +cLa +cLa +eJU +eJS +cLd +cLd +esq +bsJ +bsJ +bsJ +btc +bsN +bsN +bsL +erZ +bsJ +bsJ +buF +buF +bsJ +cug +dly +eqU +bsA +bsy +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(56,1,2) = {" +sqe +bsB +bTn +bLw +bLw +bPc +bLZ +bOp +htK +adM +brJ +bRz +cxX +awm +bDI +com +eqU +beh +bsx +bPN +bPN +bPN +arh +arg +bxF +arg +arg +arg +arg +arg +arg +arg +bFX +bGd +awm +awm +bBB +arg +arg +arg +arg +bEr +bEr +buW +bEr +bkF +arg +arg +arg +arg +eGK +bkF +dUM +bqj +dZp +bIz +dYJ +bIN +eOU +bAt +bwt +bxY +bxE +bAp +bzD +eqU +era +era +eqX +eqX +boR +eqU +aUS +eqU +eqU +arO +byL +cfG +bpN +bxr +bxY +bxE +bot +bAa +aTt +aTs +aoW +aUT +eaa +bnK +bnD +dZe +cBX +bxr +bKv +aSv +aSv +bxr +bxY +bxE +eqU +bAo +bmK +bxr +ask +bxE +bxE +egD +eeC +eeC +eeC +egD +egO +egD +eeC +eqU +eqU +bsC +bwK +bwx +buX +bsJ +buF +buF +bsJ +bsJ +bsJ +erW +biW +sGF +cLG +cLF +bsU +bsJ +dok +ber +exT +bsE +bsJ +bsJ +btc +asF +bsU +bsJ +bhr +buF +bsJ +bti +esb +cLa +bhN +eJV +cLa +cLd +cLg +bsJ +bhr +bsJ +erW +bsN +bsN +bsN +bsN +bsU +bsJ +bsJ +bds +buF +bsT +cug +dly +eqU +bsy +bsz +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(57,1,2) = {" +sqe +bsC +bTl +bLw +eUT +eUT +bLZ +bOp +bMJ +adM +bRW +bRz +cxX +awm +bFX +arh +eqU +eqU +eqU +bsz +bdX +bPP +arh +arg +arg +arg +aMT +eUV +arg +gLe +arg +arg +aws +awm +wDF +rBt +aTu +arg +arg +bOj +arg +bMf +abh +bkF +exe +bEi +cKy +arg +arg +eCg +arg +euF +awm +evl +bqg +bpY +bIl +bIN +dii +bwt +eUM +bxY +bxE +bxD +byu +eqU +bsw +ere +bsw +ere +eqX +bsw +eqX +eqU +eqU +bsB +ews +byP +byP +cfG +bxY +eqU +bxC +aUS +bxC +eqU +bxC +eqU +bxC +bDk +buV +eqU +dYS +bxY +edt +bCl +bxr +bxr +ask +eqU +eqU +bBs +bBd +bxY +bxY +ask +bxE +eqU +ejW +eNj +bzC +bzt +byY +ejC +bvb +buZ +eqU +eqU +bsC +bke +bww +bsJ +buF +buF +buF +bsJ +bvs +bvs +bvp +cLF +cLF +cLF +biH +bsJ +bsJ +bes +buX +bsE +bsJ +erW +bsN +bsN +bsN +erZ +bsJ +buF +buF +bsJ +bsJ +cLi +cLa +cLd +cLd +cLa +esq +bsJ +bsJ +bsJ +btc +bsN +erU +erV +bsN +bsU +bsJ +bsJ +buF +buF +btd +cug +dlz +eqU +bsz +bsy +eqU +eqU +eqU +eqU +eqU +eqU +bsw +sqe +"} +(58,1,2) = {" +sqe +bsC +bTm +bTm +bLw +eUT +bLZ +bOp +bMJ +brZ +bRX +bRd +cxX +awm +cxQ +arg +bQw +eqU +eqU +bsy +bBI +bPQ +arh +arh +eEz +aMT +aMT +eUW +eEh +arg +arg +arg +arg +euG +bdO +bdM +iun +arg +arg +aMT +arg +awi +bGe +bGe +bLp +exd +cwf +bKA +bGw +arg +arg +aws +bCs +bqk +bqh +bqa +dYQ +eBK +bxi +eUM +eUM +bxY +bxE +bxD +bnK +bxC +bkP +era +eqZ +bsw +eqX +ere +bsw +eqU +eqU +eww +ewt +ewp +ewl +ewe +byP +bxC +cCX +cCX +cCX +cCX +cCX +cCX +cCX +cCX +cCX +cCX +bCF +bCF +bxY +bxr +bcc +bxY +bxY +bxE +eqU +bzb +bxY +bxr +bxE +bxE +bxD +eNm +bxC +eqU +eqU +bsA +eqU +bsB +eqU +bsx +bxC +eqU +bsB +bwJ +buX +buF +buF +buF +buF +bsJ +bsJ +bjg +bsJ +erV +cLa +beW +erU +bsJ +bsJ +bet +buX +bsX +bsJ +btc +bsN +bsN +bsN +bsN +bsL +erZ +bsJ +buF +bsJ +esb +cLa +cLd +cLd +cLn +bsJ +bsJ +bsX +erY +bsN +btk +bsJ +evx +erV +bsV +erZ +bsJ +bsJ +buF +btd +dkw +dly +eqU +bsz +bsA +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(59,1,2) = {" +sqe +bsB +bTs +bTn +eUT +eVh +bLI +bSz +htK +bsa +brK +bRt +cxX +awm +cxQ +arg +arh +eqU +eqU +byc +bwB +com +arh +arh +eEA +eUP +bQx +eEj +eEi +aMT +aMT +arg +arg +bdP +gXO +bLb +cok +bxF +aMT +aMT +buW +jpb +clZ +abg +coN +bLa +bMv +awm +bCj +arg +bxF +arg +euG +bQB +evk +bAK +bIN +bht +bxv +eUM +eUM +bxY +bxE +bxD +bGP +eqU +eqU +eqX +bsw +eqZ +era +ere +eqU +eqU +bnS +boy +ewm +ewq +ewm +ewf +evT +bdX +cCX +ebm +ebc +eaR +eaG +eat +eab +dZM +dZv +dZf +dYT +bCF +evN +bxr +bxr +bxY +bxr +bxY +bxY +bxY +bxr +bxr +bxY +bxE +bxD +bdX +eqU +aUS +bxC +eqU +bxC +eqU +ere +bsw +era +eqU +eqU +eHs +bwx +buF +buF +bjI +buF +bsJ +bsJ +bsJ +bsJ +bsJ +cLi +cLE +bsJ +bsJ +bsJ +bKa +bsE +bsJ +erW +bsN +bsV +bsN +bsW +bsN +bsN +bsN +erZ +bsX +bsJ +bsJ +cLi +aRS +cLd +cLg +bsJ +bsJ +aRH +bsN +bsU +bsJ +buF +bds +bsJ +btc +bsN +erZ +bsJ +bti +dcz +cug +dly +eqU +bsy +bsA +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(60,1,2) = {" +sqe +bsA +bTr +bLw +eUT +bLZ +bOp +bLx +bMJ +aZD +bRB +bRE +cxX +awm +cxQ +arg +arh +com +eqU +byv +bwR +bPR +arh +eKK +eEB +eEv +eEp +eEk +aMT +aMT +aMT +arg +arg +arg +arg +arg +arg +aMT +aMT +buW +bOg +awi +evn +evn +evm +ojt +sva +bDh +arg +arg +arg +arg +aMT +arg +esT +bxi +bxi +bmh +bzf +bwt +eUM +bxr +bxE +bxD +byK +eqU +aUS +era +bsw +eqZ +era +bxC +eqU +eqU +boC +ewx +ewu +ewg +ewg +ewg +evU +eby +dYN +ebn +dZj +dZw +eaH +eau +dZj +dZN +dZw +dZg +dYU +dYN +bpN +bzr +bbD +bxr +byr +bys +bxr +bxr +bmL +bxr +bxE +bxE +bxD +aUS +eqU +bxC +eqU +eqU +aUS +bxC +eqU +bxC +eqZ +eqU +eqU +dky +bwy +bsJ +buF +buF +bsJ +bsJ +bsJ +bsX +bsJ +bsJ +cLi +bar +bsJ +buF +bsX +bsJ +bsJ +btm +btc +bsN +bsN +erU +bsJ +erV +bsN +bsN +bsN +esd +btw +bsJ +cLi +aRS +cLd +cLg +bti +bsJ +btm +btc +bsN +btj +bsJ +cnh +btw +btc +bsN +bsN +esd +bsJ +bsJ +cug +dly +eqU +eQq +bsy +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(61,1,2) = {" +sqe +bsB +bTn +bLw +bLZ +bLZ +beq +bMJ +srO +adM +brL +bRd +bRf +awm +cxQ +arg +arg +arh +bed +bwR +com +arh +arh +arg +euG +bDI +eEr +bDI +aMT +bDw +aMT +eEd +aMT +arg +arg +cji +arg +eDt +arg +arg +arg +arg +arg +jtu +arg +arg +arg +arg +arg +arg +aMT +aMT +aMT +aMT +bwt +esT +bxi +bxi +bzf +bwt +bwt +bxY +bxE +bxD +bGQ +eqU +bxC +era +eqZ +eqZ +eqX +eqU +eqU +bEQ +boD +bxY +ewv +ewr +ewn +ewh +evV +ebz +dYN +ebo +ebd +dZO +eaI +eav +eac +dZO +dZx +dZh +dYV +dYN +ezR +ezH +bxr +bBZ +bxr +byJ +bxr +bxr +eze +bxr +bxZ +ask +bxE +eqU +eNl +eNk +bzt +byY +ejC +ejo +egB +eqU +bxC +eqU +bsC +bwM +bsE +bsJ +bsJ +bsJ +bsJ +esK +erW +bsL +bsJ +est +cLa +bar +bsJ +buF +buF +bsJ +bsJ +erW +bsN +aOG +bsN +btY +bsJ +bsX +eHV +bsN +eHT +eHR +erZ +bsJ +bcd +baD +cLa +cLg +bsJ +bth +bsL +bsN +bsN +bsU +bsJ +btd +erW +eye +bdF +bdC +bdt +bdq +bsX +cug +dlz +eqU +bsA +bsz +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(62,1,2) = {" +sqe +bsC +bTl +bLw +adU +bSx +bLx +htK +bRe +dkU +brM +bRx +cxX +awm +cxQ +bOj +arg +arg +arh +beb +arh +arg +arg +bkF +buW +arg +bDv +arg +aMT +eEg +aMT +aMT +ctc +arg +bkF +arg +arg +arg +bkF +arg +arg +eVr +aMT +arg +arg +arg +arg +ddL +arg +aMT +aMT +aMT +aMT +aMT +bIz +bwt +bAR +bxi +bzf +bwt +bAt +bxr +bxY +bxD +bzb +eqU +bxC +bsw +erx +bxC +eqU +eqU +byu +arJ +bxY +bxY +bDS +bDS +bDS +bDS +bDS +bxY +dYN +ebo +ebe +dZP +bdS +eaw +eae +dZP +dZy +dZi +dYW +dYN +ezS +ezI +bxr +bnd +bmW +bmQ +bzq +bxr +aOa +bys +ezb +bxY +bxE +eeC +egD +ejT +eeC +bzu +eeq +eeq +eeq +bsz +eqU +eqU +bkp +bkf +bwz +bsJ +bsJ +bsJ +erW +bjx +bjp +bsN +esy +bsN +cLa +aTJ +erZ +bsJ +bsJ +bsE +adF +eIg +eHP +eHZ +bdF +eHX +eHW +cCO +eye +eHU +exr +eHS +eHR +bdq +esb +esa +cLa +cLg +bsJ +btc +eHQ +eHP +eyw +bsU +bsJ +cCO +bsD +bdH +bdG +exr +bdy +bdq +bsX +cug +dlz +eqU +bsy +bsy +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(63,1,2) = {" +sqe +bsC +bTm +bLw +bLZ +bLx +bsB +buV +bRe +bsb +bRd +bRt +cxX +awm +cxQ +arg +arg +arg +bcF +arh +arg +arg +arg +arg +bxF +arg +bxF +arg +aMT +aMT +bLc +aMT +arg +arg +arg +arg +bJp +cjg +bQl +arg +eVs +aMT +eCs +eCl +eCj +bLb +arg +arg +aMT +aMT +bDw +aMT +aMT +bNT +bIP +bwt +bpT +bxi +bpF +dhu +bVT +dbT +bxY +dbP +eUD +eqU +aUS +ere +era +eqU +eqU +bzb +bAC +bxE +bxY +bxr +bxr +bvm +bxr +bxr +evW +evR +dYN +ebp +boi +eaS +aXw +eax +eaf +aXw +aXw +dZj +bnt +dYN +ezT +ezH +bxr +bne +bmX +bmR +bxr +bzJ +edf +byr +byr +bxr +bCl +eej +egD +egD +egD +egD +ejI +eeC +eeq +eeq +bsz +eqU +bsB +eNJ +bsE +bsJ +bsJ +erW +btr +aJL +bjq +bjh +biY +cLo +cLa +cLa +bsN +erZ +bsJ +bKM +eqU +aRr +btn +btn +btn +aLF +aCa +aRv +aRr +btn +btn +btn +aLF +aCa +cLf +aRU +cLa +aRO +aRv +aRr +btn +btn +btn +aLF +aCa +aRu +aRr +btn +btn +btn +aLF +aCa +bsJ +cug +dlz +eqU +blX +bsA +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(64,1,2) = {" +sqe +bsB +bTs +bLw +bLw +eqU +bsC +buT +bRd +bRA +bRe +bRt +cxX +awm +cxQ +bQG +bcL +bcG +buW +arg +cxp +bDv +bEy +bkF +arg +bGf +arg +arg +arg +arg +arg +arg +arh +aPq +arg +bJp +osT +bJU +aMT +eCW +eCL +aMT +eCt +eCm +eCk +arg +arg +bDv +arg +arg +aMT +aMT +bNT +dmz +bAJ +bqb +bAR +fZz +dhX +ddM +ddM +dbX +dbQ +dbQ +bzD +eqU +bkP +era +eqU +eqU +bzD +bAo +bxE +bxY +bxY +bxY +bxY +bxY +bxX +bxY +bzs +bxr +bCF +bDT +ebf +dZk +eaJ +eay +eag +dZk +dZk +dZk +dYX +bCF +bqm +bxr +bxr +bnf +eOA +bTO +bmM +bxr +edg +bzr +bzr +bxr +bxr +eej +eza +boW +eyI +eej +egD +egD +eeC +eeq +bsz +eqU +bsC +eNK +bsE +bsE +bsJ +btc +btr +cfE +wpq +bvv +mWj +aTJ +cLa +cLo +bsW +biE +aQt +eqU +aQw +aSW +aSV +aSV +aSV +abT +aCa +aSi +aSW +aSV +aSV +aSV +abT +aCa +cLf +aRV +cLa +bhv +aRv +aSW +aSV +aSV +aSV +abT +aCa +aRv +aSW +aSV +aSV +aSV +abT +aCa +bsJ +cug +dly +eqU +bsy +bsx +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(65,1,2) = {" +sqe +bvb +buZ +eqU +eqU +eqU +bsB +buV +bRU +bRe +bRd +bRu +cxX +awm +bDI +arg +bcM +bcH +bkF +arg +buW +arg +arg +arg +arg +arg +bMg +arg +arg +bJp +bJp +bJp +bJU +arh +arh +arg +sKd +bvT +aMT +eCX +eCM +eCA +eCu +eCn +bDI +arg +aMT +aMT +arg +arg +arg +buQ +bNC +bNC +bqi +bIA +bAR +bxi +bzf +bpz +bHB +bHt +bpj +bpi +eNr +eqU +eqU +eqZ +eqU +bzD +bAb +bxE +bmK +bxY +bxY +bxY +eqU +bAp +bxY +bxr +bys +bxr +bCF +bCF +bCF +eaT +dZw +bCF +bCF +dZQ +dZw +bCF +bCF +bCF +bnr +bnq +bni +bxr +eOA +bBM +bxr +bxr +edh +bxr +bxr +bxr +bxY +eej +eyQ +eyX +eyT +eyI +eej +eej +egD +eeq +eeq +eqU +bsC +buU +aVT +bsJ +bsJ +erV +buv +bvw +bjr +aZG +biZ +cLJ +cLa +esq +cug +aQt +eqU +eqU +bDB +aSW +aSV +aSV +aSV +abT +aCa +btA +aSW +bto +bto +bto +abT +btA +esj +bhC +cLo +aRP +btA +aSW +aSV +aSV +aSV +abT +aCa +btA +aSW +aSV +aSV +aSV +abT +aCa +bsJ +aQt +dly +eqU +eQq +bsy +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(66,1,2) = {" +sqe +erc +eri +bsw +bsw +bsw +bsC +buU +bRe +bRd +eMZ +bRd +cxX +cxQ +arg +arg +aMT +bcI +arg +bLn +arg +euF +bEi +bFX +arg +bPg +buW +arg +arh +bJp +bJp +bBK +com +bJp +aPn +arh +bJp +bJp +eDk +eCY +eCN +awm +eCv +arg +arg +bLc +arg +arg +bxF +buW +arg +arg +buE +aNa +bwt +bIA +bAR +bxv +bzf +bwt +bwt +bxY +bxE +bxD +bxD +bAp +eqU +eqU +eqU +bzb +boS +bxE +bxr +bxE +bxY +bxD +bsC +buT +bzL +bxY +bxr +edv +boe +eJa +bCF +dZS +dZz +bCF +bCF +dZS +dZz +bCF +dYY +bxr +bCl +bxr +dbs +bng +bxr +bxr +bxr +bxr +bzc +bxr +bmH +bzL +bxE +egD +eej +eyY +eyU +eyN +eyI +eej +egD +eeC +eeq +eqU +eqU +bwL +bjY +eNC +bsX +bsJ +erV +bvw +bjs +bvw +btr +cLo +cLa +cLv +eJH +cnX +eqU +bKN +bsO +aRs +bto +bto +bto +aMD +bsO +bsO +aRs +bto +bto +bto +aMD +bsO +aRX +bhD +cLq +cLo +bsO +aRs +bto +bto +bto +aMD +bsO +bsO +aRs +bto +bto +bto +aMD +bsO +aQt +aQt +dly +eqU +eQq +bsz +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(67,1,2) = {" +sqe +erj +erh +bsw +bsw +bsw +bsw +bvb +buZ +bRz +bRd +bRd +cxX +cxQ +arg +aMT +aMT +eUV +eEh +euF +bEi +bcp +bPD +awm +bca +bFX +arg +arg +arh +bJp +com +eqU +bBI +byb +com +arh +arg +arg +arg +bkF +arg +euF +bEi +bGw +arg +bLd +arg +bqo +bFX +arg +arg +arg +arg +arg +bwt +bqc +bpU +bxi +bpG +bwt +ctD +bxY +bxE +bxE +bxD +eNx +eqU +eqU +byu +arJ +bza +bxY +bxr +bxY +aPG +eqU +bEl +eqU +bsC +bAo +bxY +bxr +boe +byJ +bom +bnG +bDe +bDe +bnU +eIX +bDe +bCV +bxr +bxE +bnm +bnk +dbt +bnh +bmY +bmS +bmO +bxr +bxr +byJ +bxY +bxE +eqU +ejK +ejI +ejU +eyV +eyO +eyJ +eyE +eej +egD +eqU +eqU +bvb +buZ +bsE +bsJ +bty +bsJ +bvt +erV +bsW +bsW +erU +cLi +cLa +esq +aQt +cmo +eqU +anf +bsO +aRs +bto +bto +bto +aMD +bsO +bsO +aRs +bto +bto +bto +aMD +bsO +bhO +bhE +bhy +aZN +bsO +aRs +bto +bto +bto +aMD +bsO +bsO +aRs +bto +bto +bto +aMD +bsO +aQt +aQt +dly +eqU +eQr +bsy +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(68,1,2) = {" +sqe +erj +erA +bsw +bsw +bsw +bsw +erk +buZ +eqU +bsC +buU +cxX +eFe +aMT +bcS +bQx +eEY +eEU +bQj +bCs +bPD +bPD +awm +awm +bbW +arg +ctK +arg +com +com +eqU +bsB +bwB +com +arh +arg +cji +arg +arg +arg +bLd +bHw +awm +bEi +bCs +bEi +bCs +awm +bFX +arg +buW +arg +arg +bAt +bwt +bAR +eKe +bpH +bwt +bwt +bxr +bxr +bxE +bxE +eqU +eqU +bzb +bCm +bxE +bxY +bxY +bxY +bxY +aPG +eqU +erw +eru +eqU +bzb +bCm +bxr +boe +bxr +bon +bog +eaK +eaz +eah +bJs +bJs +dZl +dYZ +eIV +bnn +bnk +bnj +bxr +bmS +bmS +bxr +bxr +bxW +bxr +bxY +bxE +eqU +ejR +ejY +egD +eej +eyP +eyK +eyF +eej +egO +eeC +eqU +eqU +eNL +buX +bsJ +bsJ +bvD +bsJ +bsJ +bsJ +aOq +cLf +cLi +cLg +cLf +aQt +eqU +eqU +aQw +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bgH +bhF +bhz +beo +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +eqU +bsz +bsA +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(69,1,2) = {" +sqe +erc +eri +bsw +bsw +bsw +bsw +bsw +bsw +eqU +bvb +buZ +bCs +eFf +eFd +eFb +eEv +eEZ +eEV +bNR +bOP +eEK +eEH +eEF +bOP +bbX +arg +arg +arg +arh +eqU +eqU +bsC +bwR +com +arh +eCj +arg +arg +arg +arg +bNR +bCs +bJV +bCs +bCs +bCs +bJV +bCs +cxQ +arg +arg +arg +arg +bwt +bwt +bAR +bxi +euv +esZ +aTE +bxr +bxY +bxY +bxE +eqU +bzb +bzD +bFy +bxE +bxY +bxr +bxr +bxY +eqU +eqU +bsB +buV +bsB +bCm +bxY +bxr +boe +bxr +boo +boh +bob +eaA +eai +bDe +dZA +dZm +bxr +bxY +bno +bnk +bnj +byX +bmZ +bmT +bxr +bBt +bxr +bxr +bxr +bxE +eqU +ejo +egB +ejI +egD +eyQ +eyL +eyG +eyC +eej +bxc +eqU +eqU +bkg +bsJ +bsJ +bsJ +erW +bfo +erZ +bsJ +cLf +esj +cLD +esq +cug +cmo +aQt +eqU +dkc +bsB +bsx +bsQ +bsP +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +dcR +bsO +buc +bhG +bhA +bhw +bsO +aRI +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsP +eqU +bsz +bsA +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(70,1,2) = {" +sqe +erc +eri +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsB +buV +awm +cxQ +bcY +eFc +bcN +eFa +cXN +bOP +bOP +bPt +sfx +bPt +bOP +bOP +cXN +arg +arh +com +bsA +eqU +bsC +buU +com +arh +arg +arg +bkF +arg +euF +bNY +bJV +bJV +bbg +lcu +ceC +bJV +bJV +cXI +arg +arg +aMT +arg +etH +esZ +bAR +bxi +bpI +bxi +dFi +bxr +bxr +bxr +bxE +eqU +eNw +bAb +bnZ +bxY +bxr +bvm +bxr +bxY +bxE +bxE +eNr +bAp +bxZ +bxY +bxr +bxr +boe +bxr +boo +eaU +cMe +eaB +eaj +bDl +bnE +bnz +bnu +dYO +dYC +bnk +bnj +bxr +bmT +bmU +ekq +aSv +bBe +bxr +bvm +bxY +eqU +eqU +ejR +bzv +eeC +egD +eyH +eyH +eej +bya +bxc +bxc +bxc +bcO +bsL +bjP +bcO +bsN +bsN +bsN +bvE +esj +cLa +biQ +cLH +aQt +aQt +adH +eqU +bKX +buT +eqU +bjX +bsQ +bsP +bsZ +bsZ +vje +vje +bsZ +bsZ +btE +bhY +bhU +bhP +bhH +bhB +bhx +btW +bhs +bsZ +btN +bsZ +btE +btq +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bsz +eqU +bsy +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(71,1,2) = {" +sqe +erj +erh +bsw +bsw +bsw +bsw +bsw +bsw +bsC +buT +bsO +awm +awm +bFX +bcT +arg +arg +cuw +bOP +bcw +bcq +bPE +bPu +aQE +bOP +bOP +arh +com +com +bsA +eqU +bsB +buV +cov +arh +arg +arg +arg +bGx +awm +cqr +bJV +bLE +bbn +bLe +bKP +bKB +bJV +cqr +arg +arg +arg +arg +bAR +cou +bxi +bxi +bpJ +bxi +bzf +bxr +bHl +bpN +bxr +eqU +eqU +eNu +bxY +cix +bxr +byJ +bxr +bxr +ask +bxY +bxY +bxY +bxr +aSf +bxr +bxr +boe +bAq +ebg +eaV +bod +bDe +eak +bnN +bnF +bnA +bzr +bxW +bxr +byJ +dYn +bxr +bna +bxr +bxr +ezg +aSv +cLA +bxr +bxE +bAa +eqU +eqU +ejo +egB +eeC +egD +egD +bxG +bxG +eej +eej +esX +bvH +esH +esR +bfy +btr +cLF +cLF +bfk +cLa +bff +esu +cug +cmo +aQt +adH +adH +bLz +buU +eqU +buK +bsQ +bsZ +btK +bsZ +btp +vje +vje +btq +bur +aSa +bhQ +bhQ +buf +bue +aMx +aRM +baR +bsZ +btq +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +btp +bsZ +bsZ +bsZ +bsP +bsP +eqU +bsz +bsz +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(72,1,2) = {" +sqe +erj +eri +bsw +bsw +bsw +bsw +bsw +eqU +bsC +buT +bsO +bCR +bCR +bQN +brh +brh +cuw +cuw +bOP +aRb +bPv +bPv +bPv +aQF +bOP +bOP +bOP +bFj +bHa +eqU +aPE +eqU +bvb +buZ +bDm +bCX +bnX +bnX +bCR +cqr +cqr +bJV +ceD +bKC +bKC +bKC +ceA +bJV +cqr +cqr +bCX +bCX +bnX +bIQ +cou +cou +bpP +bHK +bxi +bpt +bHl +bHl +bGR +bGR +bGm +bGm +bGm +bxr +bxr +bxr +bxr +bxr +bxr +byJ +bxr +bxr +bxr +bxr +eVn +bxr +bxr +boe +bxr +ebg +bnL +bRF +eaC +eal +bDe +bnG +bnA +byI +bxr +dYD +bxr +dYn +bxr +bmT +byr +bxr +aSv +aSv +bxr +bxr +bxY +bxY +egB +eqU +eqU +ejR +bzv +ejJ +egD +eej +eej +eNX +boW +bvW +bwP +bwA +bwo +btc +aMG +bjE +bjy +cLa +cLa +cLg +cug +aQt +aQt +adH +adH +eqU +bLB +eqU +eqU +bdV +bsQ +bsP +bur +bsZ +vje +vje +vje +eWe +bsZ +tpL +bhV +buf +bhI +buf +aMC +aTW +bcR +btP +bsZ +bsZ +btF +btB +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsY +bsQ +bsF +bsB +bsy +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(73,1,2) = {" +sqe +erc +erh +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bsB +bsO +anq +bBD +etU +bpC +bBO +bDX +bBO +bOP +bQa +bPm +bPm +bPm +bPl +bOP +bBg +bEL +bGH +bGG +aPG +aPE +eqU +bsB +bGo +bEL +bBw +bBg +bBg +bMC +bBg +bBg +bJV +ceE +bKD +bKD +bKD +ceB +bJV +bpC +bBO +bBO +etU +bBg +bAu +cou +bwt +bIa +bpK +eKA +bpu +bpn +cou +bwt +bxr +bxr +bxr +bxr +bxr +bFJ +bvU +bFz +bER +bER +bEH +bED +bEu +bEo +edx +aSv +eVl +bCv +boe +byJ +ebh +eaL +bDe +bDe +eam +bDe +bnG +dZo +bzJ +bnv +dYE +dYv +dYn +bxr +bmT +aOa +bxr +bxr +ezf +ezc +bzJ +bxr +bxE +eeC +bzK +eqU +eqU +ejo +egB +eeC +eej +eyQ +eNY +eNU +eNR +eNM +eNF +aOb +bfz +cLF +bjF +bjz +bju +cLa +bja +cug +aQt +cmo +adH +adH +eqU +bDk +buV +eqU +buL +bsQ +bsZ +bsZ +bsZ +bsZ +eVZ +vje +vje +vje +btE +bbo +buc +bhJ +bue +aRR +btZ +bsZ +bsZ +btE +btM +btG +baX +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsY +bsZ +bsQ +bsz +eqU +bsA +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(74,1,2) = {" +sqe +erc +eri +bsw +bsw +bsw +bsw +bsB +buT +cBU +eNa +bRl +bQV +bBw +bBg +bBg +bBg +bBh +bBg +bOP +bPm +bPm +bPm +bPm +bPm +bOP +bEL +bFj +bGH +bGu +aPG +bOk +eqU +bsC +bGt +bFj +bEL +bBg +eul +bBg +bMq +bBg +bJV +bKD +bKD +bKD +bKD +bKD +bJV +dni +bBg +bBh +bBg +bBg +bIB +bIB +bpV +bpQ +bpL +bpA +bpv +esZ +bHn +bwt +byJ +bxr +bxr +bxr +bxr +bwp +bFK +bjt +bFe +bES +bEI +bEE +bEv +bBa +eUM +euc +bwt +ebA +dYo +eIZ +eIZ +eIY +bny +eaD +ean +dZT +dZB +dYI +esZ +dYP +bns +bwt +dYo +dzW +cMO +bwt +bzr +bxr +byJ +bxr +dbd +cRQ +cRJ +egD +eeC +egB +eqU +eqU +ejK +ejD +eej +eyQ +eNZ +eNO +eNO +eNN +eNG +eND +erV +cLa +bvV +bvL +bjv +esC +agp +aSU +aQt +adH +adH +eqU +eqU +buZ +eqU +eqU +bjX +bsQ +bsQ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +bcR +bsZ +bui +buc +aMC +buc +btS +bsZ +bsZ +btI +aRk +bhq +ads +aRw +bsZ +bsZ +vje +vje +bsZ +bsZ +bsP +bsP +bsR +bsG +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(75,1,2) = {" +sqe +erd +erj +bsw +bsw +bsw +bsw +bsC +buT +eNb +bRl +bRl +bQV +brj +bCy +bBg +bCH +bCH +bBg +bOP +bPm +bPm +bPm +bPm +bPm +bOP +bEL +bFj +bHa +bGG +aPG +bOk +eqU +bsC +bGZ +bEL +bBg +eBb +eCZ +eCZ +eCO +bBg +bJV +bKD +bKD +bKD +bKD +bKD +bJV +dni +eCa +bCH +bCH +bCH +eUM +bqd +bpW +bpR +bpM +bpB +bpw +bpo +esZ +bwt +bwt +bwt +bwt +bGn +bGc +bFV +bGc +bFA +bFf +bET +bEJ +cnr +bqm +bwt +eBf +bwt +bwt +ebB +dYo +dYo +bnB +bnM +bnB +eaE +eap +dZU +dZC +dZq +bIQ +dYF +dYF +dYo +dYo +dzY +cTb +bBS +bxr +aSf +bxr +bxr +dbl +cSG +cRK +eej +aMZ +eeC +aUS +eqU +ejK +byM +eej +eyQ +eOa +eNV +eNS +eNO +eNH +eNE +esE +bvW +bvW +esL +esH +bfh +bfg +dly +biK +dcx +dcx +eqU +bDk +bsx +eqU +eqU +buK +bsQ +bsP +bsY +but +bsZ +bij +bfd +bcX +bsZ +bsZ +bsZ +bbo +buc +aMx +buc +btS +bsZ +bcR +bsZ +btI +btH +btC +aXu +bsZ +bsZ +vje +vje +bsZ +bsZ +bsY +bsP +bsP +bsF +bsC +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(76,1,2) = {" +sqe +erj +erA +bsw +bsw +bsw +bsw +bvb +buT +eNc +brN +bRk +bQV +brk +bKp +bBg +bBg +bBg +bBg +bOP +bOP +bPm +bPm +bPm +bOP +bOP +bFj +bFj +bHu +bGu +aPG +bOk +eqU +bGu +bGY +bFj +bEL +eDu +eDm +eDa +eCP +eCB +bJV +bKD +bKD +bKD +bKD +bKD +bJV +dni +bBg +eBU +bBg +bCH +bwt +bwt +bwt +bIb +bHQ +esT +bxi +eKy +bIN +bIy +bIy +esZ +bwt +bwt +eGf +eGf +eGf +bAP +bwt +bwt +bwt +bwt +bwt +etH +bwD +eKp +ebF +edw +ebu +ebq +dYI +eaW +dYI +dYy +eaq +dZV +dZD +dYI +dYI +dYI +dbD +dYw +dYp +dGA +aVu +bIy +esZ +bwt +bwt +bxr +dbn +cVL +cRP +eej +eej +egD +eeC +bzu +eeC +egD +eej +bvk +esR +eNW +bkq +eNO +eNI +eNE +bfA +bvW +bvW +bjA +bvk +bwQ +bvu +bvn +aQt +adH +adH +eqU +buT +eqU +eqU +eqU +buM +bsQ +bsP +bsZ +buq +bik +btW +btG +btS +bsZ +btp +bsZ +bsZ +bui +bug +buc +baR +bsZ +bsZ +btp +bsZ +btI +bbA +bsZ +bsZ +vje +vje +vje +bsZ +bsY +bsY +bsY +bsS +bsH +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(77,1,2) = {" +sqe +erc +erB +bsw +bsw +bsw +eqU +bsC +buV +bsc +brO +bRi +bQV +bBw +bBg +etV +bCb +bBv +bBg +bBg +cuw +bPm +cKL +bPm +cuw +cog +bFj +bFj +bKz +bHa +eqU +bOk +eqU +bGS +bGI +cCf +bEL +bBg +eDn +eDb +eCQ +bBg +bJV +bJV +bKD +bKD +bKD +bJV +bJV +bBg +etV +eBV +etP +bBg +bBg +bBg +bBg +dcI +bwt +bwt +esT +bws +bxi +bIN +eBB +bxi +esZ +eBu +bwt +eGj +eGg +bAt +bFg +bwt +euh +etH +bwD +bxi +bAL +bIN +ebG +ebC +ebv +dYI +ebi +eaX +eaF +eaF +bnV +dZW +dZE +dZr +dYH +dYH +dYH +dYy +dYq +dGH +bIN +bIN +bIN +djc +bBb +bxr +dbr +cWm +bxr +eLT +eej +bxG +eej +egD +eej +ejE +bxG +bwQ +bAf +esR +eNT +eNP +esH +bbV +bfB +esR +bvW +etj +bvF +bCk +bwQ +bvn +cmo +adH +adH +bsz +bsB +buV +eqU +eqU +aSG +bsQ +bsZ +bsZ +bgw +bux +bgt +bgm +bib +bsZ +bsZ +bsZ +bbH +buc +buc +btS +bsZ +btN +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +eVZ +bsZ +bsY +bsY +bsP +bsF +bsH +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(78,1,2) = {" +sqe +bvb +buZ +eqU +eqU +eqU +bsC +buV +bRi +bRL +brP +bRi +bQV +bBw +eBr +bQH +bNM +bQq +etP +bBi +cuw +cuw +cuw +cuw +cuw +bEL +bEL +bFj +bGH +bGu +eqU +bOk +eqU +bGu +bGo +bNt +bEL +bCH +bBh +eBj +bBg +eCC +eCw +cqr +bKD +cKJ +bKD +cqr +bBg +etV +eCb +eBW +eGl +etP +bBh +bBg +bCH +bBg +bAt +bwt +bwt +bmg +esT +bxi +bIN +diZ +bIN +bwD +esZ +bwt +bwt +cny +bFh +bEU +bwD +bxi +bxi +eBk +eBg +eBc +ebH +dZF +ebw +dZF +dYI +dbD +dYI +dZa +dZF +dZF +dZF +dZa +dYI +dYy +dYI +eaW +dYr +dGQ +bIN +bIN +bIN +bxi +esZ +bxr +bxr +byN +bxr +bxr +bxG +ebV +bxG +eej +ejL +eej +eej +bvk +bvk +bwA +bxe +eNQ +bvk +bvk +bJJ +bvx +esR +bvW +etj +bvk +esE +cfj +cmo +adH +adH +bsB +buV +eqU +eqU +eqU +bjX +bsQ +bsP +bbH +bue +buy +cWR +adt +aSb +bsZ +bsZ +bbR +buc +buc +buc +bbk +bsZ +bsZ +bsZ +bsZ +bsZ +btJ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsS +bsI +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +sqe +"} +(79,1,2) = {" +sqe +bsB +bsx +eqU +eqU +bSW +buV +bSq +bSp +bSm +brQ +bRJ +bRg +bQW +eBr +bQI +adB +bQr +bBw +bBg +bBg +bcr +bPn +bPn +bPn +bbY +bEL +bFj +bFj +bGH +aPN +aPF +eqU +bGG +bGt +bFj +bEL +bCH +bCH +bBg +bBg +bBg +bpC +cqr +cqr +cqr +cqr +cqr +bBg +bpC +eCd +eGn +eBS +eBP +bBg +bDi +bCH +eUN +bwt +bwt +bwt +bwt +bwt +esT +bIO +bIN +bIN +eKw +bIN +bIy +bIy +bFC +bIy +bIN +bIN +bws +bws +etT +bwt +bwt +bwt +ebD +dYt +ebr +esT +bnO +etY +bAP +bwt +bwt +bwt +bwt +esT +dYR +bIN +etT +dYs +dHm +bIO +bIN +bxi +bzg +bxi +esZ +bwt +bAP +byJ +bxY +eej +bxG +eej +eej +boW +ejA +ejA +bwc +bwc +bwc +bwc +bwc +baN +bwc +bwh +bwc +bvk +bvN +bvW +bwc +bvG +bvG +cmI +adH +dkA +bsC +buT +eqU +buK +bsQ +bsQ +bsQ +bsY +buc +btW +bil +buu +blY +bic +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +btP +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsF +bsG +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(80,1,2) = {" +sqe +bsC +bTt +bTo +bTg +bSX +bmu +bSA +bSs +bSn +brR +bRi +bQV +bBw +eBr +eJQ +bNV +bND +bre +bBg +bBg +bcs +bBg +bBg +bBg +bbZ +bBg +bFj +bFj +bHa +aPN +aPF +eqU +bGG +bGZ +bFj +bEL +bCH +bCH +eBI +bBg +bBg +bBg +bBg +bBg +bBg +bBg +eCh +bBg +bBg +eCe +eBY +eBT +etU +bBg +bBg +eBM +bCH +bHR +eBI +bBg +bBg +bAt +bwt +bwt +esT +bws +bIO +euo +boO +bFM +boO +boL +bIO +etT +boA +bwt +bwt +bwt +bwt +bwt +ebE +ebx +bDU +boa +bnT +bwt +bwt +eUM +bHP +bnH +bwt +bwt +djd +dii +dYz +dYt +dHq +bBT +esT +eKe +bxi +eKk +bxi +bAQ +bwt +bAE +bxE +ejZ +eej +boW +bld +ejF +ejF +bvG +bvG +bvG +bvW +bvG +bvG +bvG +bvG +bvG +bvW +bvX +bvG +bvG +bvW +bvG +esv +bvf +cmI +bsA +bsB +bsx +cMm +bsQ +bsQ +bsY +btp +bsZ +bfn +lOr +bua +btW +btW +btS +btq +bcK +buc +buc +buc +btS +bsZ +aNg +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +btp +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bsF +bsH +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(81,1,2) = {" +sqe +bsC +bTu +bTo +bSX +bSD +bSH +bSu +bSs +bSn +bRY +bRi +bQV +bBw +bBg +bpC +bBD +bBE +etU +bMp +bBg +bcm +bcm +bBg +bBh +bBg +bEL +bFj +bFj +bHu +aPO +aPG +dmb +dlX +dlV +bFj +bEL +bCH +bCH +bCH +bBg +cMt +bBg +bCH +bCH +bBg +bBg +eCa +bBg +bBg +bBg +eBZ +etU +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +edy +bBg +bBg +bBg +bBg +bwt +bwt +bwt +bwt +bwt +bwt +bwt +bwt +bwt +bwt +bBb +bCH +bBh +ebI +bBg +bBi +bBg +ebs +boc +bBw +bBg +bCo +eMD +eMC +bCH +dZs +bBg +bCG +dYK +bBg +dYu +dVl +bBg +bwt +esT +bws +bxi +eKg +bxi +esZ +bwt +bxE +etx +eej +bzE +ejF +ejM +bvG +bvG +adP +uuo +vke +bkr +uuo +bjZ +bvW +bvG +bvG +aKd +cfF +aOd +bvG +bvG +esw +bgZ +cMR +cMR +cMR +erP +dep +buc +bsY +bur +bsZ +bsZ +bsZ +bsZ +bsZ +bfn +aZX +baR +bsZ +bui +buc +buc +buc +baR +bsZ +bsZ +btE +eWe +vje +vje +eWa +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsQ +bsS +bsH +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(82,1,2) = {" +sqe +bsA +bTv +bSX +bTh +bSO +bSD +bSu +bSs +bSn +adN +brw +bQV +bBw +bBg +bBg +bcP +brg +bBg +bBg +bBg +bBg +bBg +bRG +bBi +bBg +bEL +bEL +bFj +aPT +bOk +eqU +dmd +dlY +dlW +bNu +bBg +bRG +bBg +bBg +bBg +hCg +bCH +bCH +eKJ +bCH +bBg +bBg +bBg +bCp +bBg +bBg +bBg +bBg +bEL +bEL +bEL +bBg +bBg +bBg +bBg +bBg +euq +bBg +eul +bBg +bwt +bwt +bwt +bFB +bwt +bmg +eBt +bwt +bBc +bwt +eUM +bCH +bCH +ebJ +bCa +bBg +bBg +bBg +ebj +eaY +bLD +bLD +eas +dZX +dZG +bCW +dZb +bJD +bnp +dYA +bBg +bBg +bBg +bBg +aTE +bwt +eKl +eKh +eKd +bzf +bwt +bAq +bAd +boW +ejF +ejM +adP +uuo +gsl +aMI +bvY +bkz +bks +eLO +aPw +bab +aML +bjJ +bvY +bjB +aMI +bjj +bvG +esw +bgZ +bgZ +bgZ +bgZ +erQ +esg +dep +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bbH +buc +buc +buc +baR +bsZ +btp +bsZ +bsZ +bsZ +bsZ +btq +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bsR +bsG +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(83,1,2) = {" +sqe +bvb +bTw +bSX +bSD +bSD +bSL +bSB +bSq +bSo +brS +brx +bQV +bBw +bBg +bBh +bBg +bBg +bBg +bBg +bMM +bBg +bBg +bBg +eBb +bBg +bBg +bEL +bFj +bFj +eqU +bGu +dme +dlZ +bKO +bEL +bBg +bBg +bBg +bBg +bBg +bBg +bCH +eEl +bRG +bCH +euH +bBg +bCo +bBg +bBg +bBg +bJq +bFj +bEL +bEL +bIm +bFj +bBg +bBg +bEL +bEL +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bCH +bBg +bBg +bBg +bBg +bBg +bBg +eEx +bCH +bCH +bBg +bBg +bBi +bBg +ebk +eaZ +etZ +bBg +bBg +bBg +bKo +bBg +bBg +bJD +dYL +dYB +eaM +bCa +bBg +bBg +bwt +bwt +bAu +bAL +bxi +bxi +esZ +bxr +eej +bzE +ejF +adP +xkr +adV +bkQ +bkI +cKD +bxf +bxf +bvY +bvY +lNS +aOX +aMI +bjG +aUr +cCa +bjk +bvG +esw +bgZ +bgZ +bgZ +bgZ +bgZ +erX +dep +cuV +bsZ +bsZ +vje +vje +vje +btN +bsZ +bsZ +bbH +buc +buc +buc +baR +bsZ +bsZ +bsZ +btM +aRJ +btQ +aRD +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsS +bsI +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(84,1,2) = {" +sqe +bsB +bTx +bSD +bSD +bSD +bSD +bSu +bSn +bRl +brT +bRK +bQV +bBw +bBg +bBg +bBg +eCa +bCH +bCH +bBg +etV +etP +bBg +bCH +eEw +bBg +bBg +bEL +bFj +bFj +bGG +dmf +dma +bEL +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBh +bBg +eCf +bBg +bEL +bEL +bGu +bGY +bEL +bEL +bGH +bGu +bGo +bHu +bGu +bGY +bEL +bEL +bBg +bBg +bFW +bCH +bCH +eUA +bBg +boI +bBg +bBg +bBg +bBg +bCy +bBg +bBh +bBg +bBg +clC +ebl +eba +eaN +bBg +bBg +bBg +dZI +bBg +bFN +etV +dYM +bBg +bBg +bBi +bCH +eAQ +bCH +bBg +bwt +esT +bxi +bxi +blx +bwt +eej +ejV +ejM +bzw +aZA +bvY +chr +bjH +bkG +bkB +bjH +bki +bjw +bjQ +bjM +bjw +bjH +bjC +bjw +bvW +bvG +esw +bgZ +bgZ +bgZ +bgZ +bgZ +erQ +esg +dep +cuV +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bbH +buc +buc +buc +btX +bsZ +bsZ +bsZ +btF +bhu +aNH +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btp +bsZ +bsZ +bsY +bsF +bsG +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(85,1,2) = {" +sqe +bsC +bTt +bSX +bSN +bSY +bSD +eYO +bSn +bRi +bRO +bRi +bQV +bBw +bBg +bBg +bBg +bCH +bCH +eVc +bBg +eEL +bBD +etP +bBg +bCH +bCH +bBg +bBg +bEL +bEL +bFj +bGZ +bEL +bBg +bBi +bBg +bBg +bLq +bBg +etV +bCb +bCb +bCb +etP +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bEL +bGH +bGu +bHa +bGG +bGZ +bGH +bGG +bGt +bHa +bGG +bGZ +bEL +bEL +bBg +bBg +bBg +eUC +eUB +bCH +bFi +bBg +bCz +bEf +bCb +bCb +bEf +bCb +bEf +bCb +etP +bBg +bBg +ebb +eaO +bBg +bBg +cMu +dZJ +bCI +dZc +bBD +bBw +bBg +clC +bBg +bBg +bCH +bCH +bCH +bwt +bwt +bAR +bxv +bAF +bAr +esE +bvW +adP +ble +eLO +byx +bvG +bvW +bkH +bvH +bvW +bvW +bvG +bvG +bvW +bwa +bwa +bwa +bvW +bvW +bvG +esw +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +erQ +esg +dep +cuV +bsZ +btL +bsZ +bsZ +bbH +buc +buc +buc +btS +bsZ +bsZ +btq +bsZ +bui +bua +btW +btT +aRF +aRD +btL +bsZ +bsZ +bsZ +bsY +bsY +bsP +bsF +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(86,1,2) = {" +sqe +bsC +bTu +bmx +bSD +bSD +bSD +bSu +bSn +bRi +cKB +bRi +bQV +bBw +bBg +bBg +bRG +bCH +bCH +bBg +etV +eEM +eEI +bBw +bBg +eEx +eEs +bCH +bBg +bBg +bEL +bEL +bEL +bEL +bBg +bBg +bBg +bBg +etV +bCb +bBD +bBD +bBD +bBD +bPh +bCb +etP +bBg +bKo +bBg +bBg +bBg +bEL +bFj +bGH +bHu +bGu +bGY +eqU +bOk +bOk +eqU +bOk +eqU +bGH +bGG +bGt +bBg +bBg +bCH +eaQ +bCH +bBg +bBg +bEK +dmZ +bDV +bEp +bBE +bBE +bDV +dmZ +bBw +bBg +bCH +eaQ +eaP +bCH +bBg +dZY +dZK +dZt +dZd +bBO +etU +bBg +bCH +bBi +bBg +bBg +bCH +bBi +bBg +bwt +bAR +bxi +bAG +etz +bvW +bvW +bzw +aPc +bze +bjj +bvW +bvW +ete +bvx +esR +bvW +bvW +esS +esL +bjK +bvW +esM +esD +bvW +bvG +esw +bgZ +bgZ +bgZ +erK +erG +erR +bgZ +erQ +esg +dep +dep +dep +dep +dep +cuV +cuV +cuV +cuV +dep +dep +cMj +dep +dep +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +bsS +bsH +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(87,1,2) = {" +sqe +bsB +bTy +eWX +bTi +bSF +bSE +bSu +bSn +bSc +bRZ +bRL +bQV +bBw +bBg +bBg +bCH +bCH +bCH +bBg +eEP +eEN +eEJ +etU +bBg +bBg +bCH +eEl +bCH +bBg +bBg +bBg +bBg +eDU +bBg +bBg +bBg +etV +bBD +bBD +bBE +bBE +bBE +bBE +bBE +bBD +dEg +etP +bBg +cMt +bBg +bEL +bEL +bFj +bHa +bHa +bGG +bGZ +eqU +bOk +eqU +aNs +eqU +bOk +eqU +bGH +bGu +bGo +bBg +bBg +bCH +bCH +bBg +bBg +cXH +bDV +bDV +bEk +agP +bEk +bDV +bDV +cXG +ebt +bCH +bCH +bCH +bCH +bBg +dZZ +dZL +dZu +etU +bBg +bIR +bBg +bBg +etV +bCb +etP +bBg +bBg +bBh +bwt +etE +bxi +blA +bxi +bvW +eJZ +bzw +aOR +bvY +bjk +bvW +bvA +bvk +bvk +bkt +bfL +aMt +bfv +bfv +bfv +bfq +bvQ +bvk +esD +bvG +esw +bgZ +bgZ +bgZ +erX +bdA +erS +erR +bgZ +erQ +cMR +ese +cMR +cMR +aSj +aSg +aSg +aSc +cMR +cMR +cMR +cMR +erP +dep +dep +dep +dep +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsQ +bsR +bsG +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +bsw +eqU +eqU +eqU +sqe +"} +(88,1,2) = {" +sqe +bvb +bTw +eWZ +eWX +bSD +bSD +bSu +bSq +bsd +bRi +bRi +bQV +bBw +bBh +bBg +bCH +bCH +bBg +bBg +bpC +eEO +etU +eEG +bLq +bBg +bBg +bBg +bOH +bOy +bCb +etP +bBg +bLq +etV +bCb +bCb +bBD +bBD +bBE +bBE +bLH +bLQ +adu +bBE +bBE +bBD +bBw +bBg +bCH +bBg +bBg +bEL +bEL +bHu +bGu +bHu +bGu +bGY +eqU +bOk +aNh +eqU +aNs +aNh +eqU +eqU +bKH +bBg +bBg +bBg +bBg +bBg +bBg +cnm +bDV +bbc +nIP +dGu +aQM +wgF +bDV +cnm +bCZ +dZI +bCH +eaQ +bCH +bBg +bBg +bCp +bBg +bBg +bBg +bBg +etV +bCb +bBD +bBD +bmV +etP +bBg +bBg +etK +bwt +bAR +blA +bzf +esR +bvW +bzw +bkU +cKt +bkc +bkR +bvM +bvk +bfU +bxg +bvW +bwC +cCp +cCp +cCp +bfr +bvk +bvk +bvk +bzN +esw +bgZ +bgZ +bgZ +erX +beC +bdA +erS +erR +bgZ +bgZ +afS +bgZ +bgZ +aSj +aSg +aSg +aSc +bgZ +bgZ +bgZ +bgZ +erQ +cMR +cMR +erP +dep +dep +dep +dep +dep +bsZ +bsZ +bsY +bsF +bsG +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +eqU +bsw +eqU +eqU +eqU +eqU +eqU +sqe +"} +(89,1,2) = {" +sqe +bsB +bTx +bSX +bSO +bSD +bSD +bSu +bSt +bse +brU +bry +bQV +bBw +bBg +bBg +eDU +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +aQr +bBg +etV +bBD +bBD +bBD +bCb +bCb +bBD +bBE +bLP +bBE +bBE +bBE +bLH +bLt +anW +bLt +bLs +bBE +bBD +bBw +bBg +bCH +bCH +bBi +bBg +bEL +bBg +bEL +bFj +bFj +bHa +bGG +bGZ +bGH +bGG +bGt +bGH +bGu +bGo +bKH +bKH +bnX +bFO +bnX +bnX +cnm +cnm +bDV +cey +hXV +hXV +hXV +cew +bDV +cnm +cnm +bCR +bCX +bnX +bnX +bKH +bKH +bBv +bBg +bBg +bBg +bBN +eBR +eFC +eFB +bBN +bBD +bLf +bBg +bBg +eKi +bwt +dil +blA +bzf +bAe +bvN +bzw +blf +bvY +bkd +bvW +bwa +bxg +bwa +bwa +bvW +bwC +cCp +cCp +cCp +bfr +bvk +bvI +bvk +bzN +esw +bgZ +bgZ +bgZ +erX +beD +bev +bdA +esi +bgZ +bgZ +afS +bgZ +bgZ +aSj +aSg +aSg +aSc +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +erQ +cMR +cMR +cMR +erP +dep +cuV +cMh +bsS +bsI +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +iGN +sqe +"} +(90,1,2) = {" +sqe +bsC +bTt +bSX +bSD +bSD +bSD +bSu +bSq +bSc +bRi +bRk +bQV +bBw +bBg +bCZ +bBg +bBg +bBg +bBg +bBg +bBg +bBh +bBg +bCz +bCb +bCb +bIe +dnD +dnD +bBD +bOl +bBE +bBE +bBE +bBE +aPb +bMX +bMN +aOH +aOC +aOr +bLR +aOh +aOe +bBE +bBD +etU +bBg +bBg +bCH +bCH +bBg +bBg +bBg +bBg +aNQ +aNK +aNG +aNG +bGH +bGG +bGt +bHa +bGS +bGI +bKH +bKH +bBg +bBg +bBg +bBg +bBh +eBr +eBo +bDV +cez +bEg +bEg +bEg +cex +bDV +dlU +aIu +bBO +etU +bCH +bBg +bBg +bKH +bCR +etP +bBg +bBN +bBN +wEx +hFZ +wEx +bBN +bBN +bBD +bBu +bBg +bwt +bwt +dil +blB +bxi +ety +bvN +blo +blg +bvY +bkc +bvW +bio +esH +rKn +bku +bvW +bfG +bfw +bfw +bfw +bfs +bwQ +bvJ +bvk +bzN +esw +bgZ +bgZ +bgZ +erX +bdA +erH +cMR +erI +bgZ +bgZ +afS +bgZ +bgZ +aSj +aSg +aSg +aSc +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +erX +bsY +bsP +cMi +cMg +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +eqU +iGN +iGN +sqe +"} +(91,1,2) = {" +sqe +bsC +bTu +bSX +bSD +bSD +bSD +bSB +bSq +bSp +aZK +bRk +bBE +bBD +etP +bBg +bBg +cMt +brf +bBg +bBg +etV +bBv +bBg +bEK +bPh +bBD +bBD +csq +csq +bBE +bOm +bMS +adA +bNF +bMS +bNj +aOU +aOP +bMk +aOD +bMi +aJK +aOi +aJC +bBE +bBw +bBg +bBg +bBg +bBg +bBh +bBg +bBg +bBg +bBg +cog +bIc +bHb +bHb +bHc +eik +bHb +bHb +aNj +bEL +bGv +bBg +eCZ +eGk +etP +bBg +bBg +eBr +eBp +bDV +bEg +bEg +bEg +bEg +bEg +bDV +bHc +cNd +bBg +bBg +bBg +bBg +bBg +bEK +bCR +bCR +bCb +bBN +diC +fdA +fcd +blJ +fQa +eFy +bBD +bBw +bBg +bBb +bAX +esT +blC +bIN +bxi +bvW +blp +blh +bla +bvW +bvW +bjV +aVs +aXD +bvk +esX +esU +bvk +bvx +bwQ +bwQ +bwQ +aOM +esE +bvG +esw +bgZ +bgZ +bgZ +erQ +cMR +esl +erG +erG +erG +erG +esf +erR +bgZ +aSj +aSg +aSg +aSc +bgZ +bgZ +bgZ +bgZ +erK +erG +erR +bgZ +bgZ +bgZ +bgZ +erQ +cMR +cMR +cMR +cMR +cMR +cMR +cMR +erP +eqU +eqU +eqU +eqU +eqU +eqU +erH +cMR +cMR +cMR +cMR +cMR +cMR +spq +sqe +"} +(92,1,2) = {" +sqe +bsB +bTy +bSX +bSD +bSZ +bSD +bSu +bSs +bSq +bSa +brz +brn +bBD +bBw +bBg +bBh +bQs +bBg +bCz +brd +aRa +bBD +bCb +bPh +bBD +csq +aQk +bOI +iOu +aPP +bbJ +aPu +aPr +bMk +aPi +aPd +aJE +bMr +bMr +bMr +aOs +aOk +aJG +aJD +aOc +bBw +bBg +bBg +bBg +bEL +bBg +bBg +bCo +eCZ +bBh +bBg +bIc +bHc +bHc +bHc +bHc +bHc +bHc +aNj +bBg +bEL +etV +eGo +eGl +bBD +eGb +bBg +eBs +eBq +bDV +bEg +bEg +bEg +bEg +bEg +bDV +bHc +cNd +bDx +bBg +bBg +bBg +bBg +bpC +bBD +bCR +bCR +bBN +ceu +rIB +nWO +obm +koq +eFz +eFx +bBw +bBg +bBc +etH +blD +bAH +eMB +bxi +bvG +blq +bli +bjk +bvW +bvW +bkJ +bvk +coU +bvI +bvN +aMt +bfv +bfv +bfv +bfq +bwQ +bvk +bvN +bvG +esw +bgZ +bgZ +bgZ +erK +erG +erL +dep +dep +dep +dep +dep +erS +erG +aSj +aSg +aSg +aSc +erG +erG +erG +erG +erL +dep +erS +erG +erG +erG +erG +erG +erR +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +erQ +cMR +cMR +cMR +cMR +cMR +cMR +erI +bgZ +bgZ +bgZ +bgZ +bgZ +bgZ +spq +sqe +"} +(93,1,2) = {" +sqe +bsA +bTv +bSD +bSD +bmw +bSD +bSC +bSs +bSq +bSa +eMW +bBE +bQX +bBw +bBg +bBg +bEK +bCb +bBE +bBE +bBE +bBE +bBE +bBE +bBE +bBE +aQl +aQc +bMk +bOr +bMk +bMl +aJE +bMr +bNv +bMr +bMr +bMO +bOE +bMr +aOt +aOl +aJH +exf +bBD +bBw +bBg +bKp +bBg +eFD +bEL +euH +etV +eKG +etP +eCZ +bHL +bHc +bHc +bHc +bHc +bHc +bHc +bGT +eGq +bBg +bpC +eGn +eGm +eGh +eGc +eCB +eul +bpC +bDV +bEg +bEg +bEg +bEg +bEg +bDV +bHv +bGT +bBg +bBg +eua +bBh +bBg +bBg +bpC +bBO +bCS +bvo +aQm +icU +dLj +tnr +fQa +eFA +bBD +bBw +bBi +etG +eFv +bAS +bAI +bAs +bIN +bvG +bzw +bvY +blb +bvW +bvA +boV +bwh +bwc +etj +bwT +bwC +cCp +cCp +cCp +bfr +bwQ +bvK +bzN +esz +esx +bgZ +bgZ +bgZ +erX +dep +deq +btX +bsZ +bsZ +bsZ +cuV +dep +cuV +cuV +cuV +cuV +dep +dep +dep +dep +dep +dep +dep +dep +dep +dep +dep +dep +dep +erS +erG +erG +erG +erG +erG +erR +bgZ +bgZ +bgZ +erK +erG +erG +erG +erG +erG +erG +erG +erG +erG +erG +spq +sqe +"} +(94,1,2) = {" +sqe +bsB +bTx +bSD +bSP +bSD +bSN +bSD +bSu +bSn +bSb +bRj +bro +byQ +bzy +bwE +bwE +bIq +byQ +bzi +bLH +bLQ +aKI +bBE +bBE +bLH +dkp +aQn +bLS +bMr +bMr +bMr +bMr +bMr +bMr +bME +bME +bMF +bME +bPV +ecj +cKK +bLS +exg +dEg +bqp +etU +bBg +bBg +bEL +bRG +eFD +bBg +bJh +eML +eKF +bIn +eCB +bHL +bHc +bHc +bHc +bHc +bGT +bBg +bBg +bBg +bBg +bpC +eGn +eGi +eGd +eCB +bBg +bBg +bDV +bDV +bEg +bEg +bEg +bDV +bDV +bBg +bBg +eBb +eAY +eFD +eFD +bBg +bBg +bBg +bBg +bKH +bvo +cLM +aMu +bCg +eAZ +bBN +bBN +bBD +etN +bBg +etG +eFw +bAT +bAJ +blw +bIN +bvG +aOu +blj +bvY +bjk +bkS +bkL +bvB +esR +bvH +bwa +bwC +cCp +cCp +cCp +bfr +bwQ +bvk +bvN +dic +dia +dia +dia +dia +dhZ +btX +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bfn +buc +buc +buc +buc +baR +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +buc +dep +dep +dep +dep +dep +dep +erS +erG +erG +erG +erL +dep +dep +dep +dep +dep +dep +dep +dep +dep +iGN +iGN +sqe +"} +(95,1,2) = {" +sqe +bsC +bTt +bSN +bSD +bSD +bSD +bSD +bSu +bSn +bSc +bRM +bzi +bzi +bzy +bwE +bwE +bIq +bzi +bQk +bLU +cti +aQU +aQN +bLQ +bLt +aQs +aQo +adC +bMr +bME +dko +bME +bME +bNk +bNk +bFk +bME +bMP +bMD +edk +bMj +aOm +bBE +bBD +etU +bBg +bBh +bBg +bBg +bBg +bBh +bBg +bJi +eBZ +eGn +eKD +eKB +bBg +bHL +bHv +bHv +bGT +bBg +bBg +bDi +bBg +bBg +bBg +bpC +etU +eBj +bEL +bEL +bBg +bBg +cnm +bEg +cKF +bEg +cnm +bBg +bBg +bBg +cYJ +etP +bBg +bEL +bBg +bBg +bBg +bBg +bKH +bKH +bvo +bvo +bBN +bBN +bBN +bBO +bBx +bBg +bBg +bwt +dil +evk +bAK +etA +bxi +bvG +aOu +blk +aMK +bjj +bvW +esH +bvx +bvk +bJJ +bwT +bfG +bfw +bfw +bfw +bfs +bwQ +bvC +bzN +esA +cfg +cfg +cfg +eso +afX +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +eWt +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +dep +dep +dep +dep +dep +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +buM +eqU +iGN +sqe +"} +(96,1,2) = {" +sqe +bsC +bTu +bSD +bSD +eWY +bSO +bSD +bSu +bSn +bSc +bRi +bRh +bQY +bzy +bwE +bwE +dTb +bzi +bMj +bMi +cBI +aQV +aQO +aQG +aQx +aJE +bMr +bMr +bOz +bME +bME +bNk +bNw +dcn +bMZ +bNl +bMR +bME +bME +csq +bLt +aOm +bBE +bBD +etP +bBg +bBg +bBg +bCH +bBg +bBg +bBg +aNW +bBg +eCe +eKE +etP +bNi +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBh +bBg +bCp +bBg +bEL +bFj +aMA +bBg +bBg +cnm +cnm +cnm +cnm +cnm +bBg +bBg +bBg +cYz +bBx +bBg +bCp +bcm +bLq +bBg +bBg +bBg +bKH +bKH +dmV +dmV +dmV +bBg +bBg +bBF +bBg +bBg +aSZ +dil +bIN +bIN +eFu +bxi +bvG +bzw +eLP +byx +bkV +byy +bvk +bvk +aOM +bvI +esY +esV +bvx +bvk +bwQ +bwQ +bwQ +cxu +aNZ +esA +cfg +cfg +esr +esp +afX +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bui +buc +buc +buc +baR +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsQ +bwk +eqU +eqU +sqe +"} +(97,1,2) = {" +sqe +bsB +bTy +bSD +bSD +eWX +eWX +bSD +eYO +bSq +bSc +bRi +bRi +bQY +bzy +cRR +bwE +bIq +bzi +aRd +aRc +bPS +aJF +aQP +exj +bMr +bMr +bMr +bME +bME +eVx +bGU +bNZ +bNb +bNG +bNx +bNm +ddy +bMQ +dnB +csq +aOv +bLt +csq +bBD +bBw +bBg +bBg +bCH +bCH +bCH +eUQ +bBg +bJi +bIo +bBg +bpC +eKC +bCp +bBg +bBg +bCp +bBh +bBg +bCH +bCH +bCH +bBg +bBg +bBg +bEL +bEL +aME +aMB +bEL +bBg +bpC +eBl +eBh +eBd +etU +bBg +bBg +bBg +bBh +bBg +bBg +bBg +bBg +bCH +bCH +bCH +eUv +etW +bBg +bBg +bBg +bBg +bBg +clC +bBg +bBn +bBj +bwD +bxi +bIN +bAL +bxi +bpb +bvG +bzw +chY +blc +bvG +bmA +etj +esE +bfV +bvk +bwT +aMt +bfv +bfv +bfv +bfq +bvk +bvC +bzN +esA +cfg +cfg +eso +wiH +afX +bsZ +vje +vje +vje +bsZ +bsZ +bbH +buc +buc +buc +dec +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsY +bsS +eqU +eqU +eqU +sqe +"} +(98,1,2) = {" +sqe +bvb +bTw +bSD +bSG +eWX +eWX +bSE +bSu +bSq +bSc +brA +bRj +bQY +bzy +bwE +bwE +bIq +byQ +bzi +aQZ +aQs +aQW +aKH +aQH +msB +bME +bME +aQd +aPU +eVy +bOn +bNa +bNa +cuW +djq +bNa +bNa +bMR +bME +csq +aOw +bLT +csq +dnn +bLf +bBg +bBg +eEl +eAQ +bCH +bCH +bIR +aNX +bIR +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bBg +bCH +bCH +bCH +hCg +bCH +bBg +bBg +bBg +bEL +aMF +bEL +bBg +bBg +bBg +bpC +eBi +eBe +eBb +bBg +bBg +bBg +bBg +bDH +bBg +cXg +eUy +cXb +eUx +bCH +bCH +bCH +bBg +bCp +bBg +bBg +bBg +bBg +bBG +etO +bBl +bxi +eKe +bxi +bxi +bzf +bvx +bzN +bzw +xXy +bvY +bkW +bwa +bkM +bwa +bvO +bxg +bwa +bwC +cCp +cCp +cCp +bfr +bvk +bvk +bzN +esA +cfg +cfg +eso +wiH +btX +bsZ +vje +vje +bsZ +bsZ +bbH +buc +buc +buc +baR +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsP +bsY +bsP +bsQ +bsF +eqU +eqU +eqU +sqe +"} +(99,1,2) = {" +sqe +bsB +bTx +bSD +bSD +bSD +eWX +bSD +bSu +bSn +bSc +bRi +bRk +bQY +bzy +bwE +bwE +etw +bKn +byQ +bzi +bMj +bLV +bMr +bPo +aQz +bOX +exi +aKb +aPV +bME +aKe +aJZ +aJX +bNH +bNy +bNa +ank +bME +bME +bMr +aOs +bLU +csq +dnn +bKi +bBg +bBg +bBg +bBg +bBg +bIR +bJr +bJj +bBn +bBn +etO +bBP +eue +bBn +bBn +bBn +bGp +bHd +bGp +bGp +bBl +bGp +bBn +bBn +bBn +bBg +bEL +bBg +bBg +bBg +bBg +bBi +eBj +bBg +eUC +bCH +bBg +bJD +cXA +cXu +cYG +eFE +cXf +dcF +bCH +eUw +eaQ +bCH +bBg +bBg +bBg +bBh +bBg +bBg +etO +bBl +bBl +bxi +bxi +eIM +bxi +bmG +bAf +bzN +blr +bll +aOX +bkc +bvW +esH +bbU +bkC +bfT +bvW +bwC +cCp +cCp +cCp +bfr +bvk +bvk +bzN +esA +cfg +cfg +eso +afX +bsZ +vje +vje +vje +bsZ +bbH +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +buL +eqU +eqU +eqU +eqU +sqe +"} +(100,1,2) = {" +sqe +bsB +bTx +bTo +bSX +bSD +bSD +bmt +bSu +bSq +brV +bRi +brp +bQY +bQO +bQo +bQz +bwE +etw +aRe +bzi +bMj +bLS +bMr +bMr +aQA +bME +bOS +aQe +aKq +aKl +cww +aPv +ann +aPo +bNa +bNn +bME +bME +cvE +bMr +bMj +bLV +csq +bBD +bBw +bBg +bBh +bBg +bKj +bBg +crh +bql +aNY +bqe +bqe +bpX +bDa +bBl +bBP +bBP +bBP +bGp +bGp +bGp +bGp +eKx +bBl +bBP +bId +eue +bBG +bBn +bBn +bBn +bBg +bBg +bBg +bCH +bCH +bCH +bCH +bNi +bLo +cXB +bTA +dbC +cXh +bBh +bcm +bBg +bBg +bBg +bBg +bBg +cMt +bBg +bBg +bBn +etO +bBl +bBl +eIT +eIR +eIP +eIN +bxi +bxi +bAg +bvG +bzw +bvY +bxf +bkX +byy +bvk +bvk +bvk +esR +bfO +bfG +bfw +bfw +bfw +bfs +bvk +esE +bvG +esA +cfg +cfg +eso +afX +bsZ +bsZ +bsZ +bsZ +bbH +buc +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsP +bsP +buK +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +aMS +eqU +eqU +eqU +eqU +sqe +"} +(101,1,2) = {" +sqe +bsC +bTt +bTo +bSO +bSD +bSD +bSD +bSu +bSn +brW +bRN +bRl +bQY +bzy +bwE +bwE +bwE +bwE +bIq +bzi +aOs +aQX +bOo +bMr +bME +dkT +arV +dmM +aKr +bbK +aPH +bOa +bcf +aJS +bqU +bME +bMr +bMr +bMr +bMr +aOx +aOn +bzi +byQ +byF +bwE +bwE +bBn +bBn +euJ +bov +dkM +diI +diI +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +bBl +eum +bBP +bBP +eue +bBn +bBg +bBg +bBg +bCH +bCH +bBh +bDx +cXF +cXC +bBg +cYH +cXi +bBg +bBg +bBg +bCZ +bBg +cWX +bBg +bCy +bBg +etO +bBP +bBl +bBl +bBl +bBl +bxv +eIQ +eIO +eIK +bxi +bvW +bvG +bjQ +blm +bjw +bvG +byy +bvk +bvx +bwQ +bvk +bvk +bvk +bvk +bvk +bvk +bvk +esE +bvW +bvG +esA +cfg +cfg +eso +afX +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +buc +buc +baR +bsZ +bsZ +bsZ +bsZ +bsZ +bsG +bsG +bsH +epE +bsP +epy +epw +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bwk +eqU +eqU +eqU +eqU +eqU +sqe +"} +(102,1,2) = {" +sqe +bsC +bTu +bSD +bSD +bSM +bSP +bSF +bSu +bSn +bSc +bRi +bRm +bQY +bzy +bwE +bwE +eVg +bwE +bIq +bzi +aKG +bNe +mpl +bOz +bME +bOY +atz +anR +aKs +anr +bLU +aYj +bLS +aJT +aPk +aJR +aOV +bMS +bLQ +bLQ +aOy +bLV +bzi +byQ +bzy +bGV +bBn +bBj +cCK +diI +diI +diI +diI +bBl +bBm +bBm +bBl +bBl +bBl +ddN +bBm +bHo +bBl +bBl +bBl +bBl +bBl +bBm +bBl +bBl +bBl +bBl +bBl +bBl +bBP +bBP +eue +bBn +bBn +bKr +dmY +bBn +bJr +bJr +cXv +cXq +bBn +bBz +bBn +dpz +bKE +bBn +bBn +dmt +bBn +bBn +bBk +bBl +bBl +bBl +bBl +bBl +bws +bzg +bxi +eIL +eIJ +bxi +bxi +bxi +bIN +bvG +bwa +bmB +bvk +bwQ +bwQ +bwQ +bvk +bvk +bjR +bjN +bvk +esE +bvR +bvG +esF +esB +cfg +cfg +eso +afX +bsZ +bsZ +bsZ +bbH +buc +buc +buc +buc +baR +bsZ +bsZ +bsZ +bsP +bsY +bsP +bsG +eqU +bsA +eqU +eqU +eqU +epz +bsP +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bwk +eqU +eqU +eqU +eqU +eqU +sqe +"} +(103,1,2) = {" +sqe +bsB +bTy +bSD +bSD +bSD +bSE +bSD +bSu +bSq +bSc +bRi +bRn +bQY +bzy +bwE +eHL +bQd +bwE +bIq +bFl +bzi +bMT +aOe +bMr +bME +bOS +cxn +aqe +aKt +dTa +bMG +bMG +cvW +aJU +dYl +aPe +aOW +bMG +aOI +aOE +bbq +aOo +bzi +byQ +bzy +bwE +etO +bBl +eJJ +cqs +eyc +bBl +bBl +etM +bHe +euB +diI +bJW +etM +bBn +bBn +eBD +euf +bBm +bBm +bBm +bBy +bBz +bBk +bBl +bBl +eKv +eKt +eKr +bBl +bBl +bBl +bBP +bov +bEh +bBn +bBn +dcH +diG +cXw +cXr +cXj +bBn +bBn +dpA +bBP +dbx +cWY +cWW +bBP +etS +bBl +bBl +bBl +bBl +bBm +etM +bwt +esT +bws +bxi +bxi +bxi +bxv +bxi +bxh +bwa +etp +bvk +byd +bwQ +bwQ +aOM +bvk +bvk +bvk +bvk +bvk +bvN +bvG +esF +esB +cfg +cfg +esr +esp +afX +atv +bsZ +bsZ +bui +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsP +bsY +bsP +bsH +eqU +bxC +eqU +bxC +eqU +eqU +bhZ +epA +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +buM +eqU +eqU +eqU +eqU +eqU +sqe +"} +(104,1,2) = {" +sqe +bvb +bTw +bSD +bSE +bSD +bSD +bSD +bSu +bSq +bSa +bRO +brq +bQY +bzy +bwE +bQd +bQt +bwE +bIq +bzi +bzi +bMT +bLV +bMr +dkn +bOS +aQp +bcJ +aKu +aPQ +aPI +aPx +csq +aJV +bME +bME +bMr +bMT +bMG +bMk +bMk +aJE +bzi +byQ +dBv +bwE +bKq +crc +crf +cCI +cpW +dex +diI +coG +bSK +bBk +aNL +bHT +eue +bBn +bBz +bBn +bHe +bBn +bBn +bGy +bBn +bBn +bEm +bBm +bBl +bBl +eKu +eKs +eKq +diI +bBl +bBl +bBl +bBl +bBP +diG +diI +dcG +diI +cXs +cXk +diG +dbx +dpB +bDa +bBl +bBl +bBl +bBl +bBl +bBl +bBm +bBm +etM +bBz +eGS +eFo +cYI +bAr +esT +bxi +bxi +bxi +bxi +bxi +bxi +esZ +bwt +bwt +tah +bwQ +bvk +bfW +bvk +bwq +bvk +esE +bvW +bvG +esA +cfg +cfg +cfg +eso +wiH +afX +atv +atv +eWy +cuV +buc +buc +buc +baR +bsZ +bsZ +bsP +bsP +bsY +bsY +bsH +eqU +eqU +eqU +aUS +eqU +eqU +eqU +bsI +epB +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +bwk +eqU +eqU +eqU +eqU +eqU +sqe +"} +(105,1,2) = {" +sqe +bsB +bTx +bSD +bSD +eWX +bSH +bSG +bSu +bSn +aZK +bRi +bRo +bQY +bzy +bwE +bwE +bwE +bwE +bIq +byQ +bzi +bPF +aQQ +bOo +bMr +bOS +bNa +bOJ +aKv +bMT +aPJ +cwi +aJY +aJW +aPl +bME +bNd +bMU +bLS +bzi +bzi +bzi +bzi +byQ +euk +eFs +bBl +crf +eWW +eWV +cpX +cpn +coJ +eFS +cMf +bIq +bIf +bzi +boM +bpx +bpq +aNx +aNu +aNl +bwE +bwE +bwE +bBn +bBn +bBn +euf +bEa +bBm +boE +diH +bEq +bEq +aMz +bDZ +dbJ +bDZ +aMv +aMv +bBl +aSX +diI +aSX +bBl +bCJ +bCJ +bCJ +bCJ +bCJ +bCA +bBl +ddN +etM +bBn +bBn +bBn +etO +eAb +eBX +epx +cXz +bwt +esT +bxi +bxi +bxi +bxi +bzg +bxi +byz +byz +esZ +bwt +bvk +bvk +bvk +bvk +esE +bvW +bvG +esF +esB +cfg +cfg +cfg +eso +wiH +btS +cJn +bbR +aMx +cuV +cuV +cuV +baR +bsZ +bsY +bsY +bsP +bsP +bsG +eqU +eqU +bsA +eqU +bsA +eqU +eqU +bsB +eqU +bsG +epC +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsQ +bsS +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(106,1,2) = {" +sqe +bsA +bTv +bSD +eWX +eWX +eWX +bSD +bSu +bSn +bRP +bRj +brr +bNz +bzy +bxw +bwE +bwE +cRW +bIq +byQ +bzi +aQZ +aQR +bLS +bMr +bOS +bOR +cxb +aKw +aKm +aKf +aKa +bMr +bNI +bME +bMr +bMr +aOQ +aOJ +bzi +bzi +bEW +bIg +byQ +eui +bKR +eJO +crg +bqn +bqn +bqn +aTe +cpg +cJw +byA +byQ +euz +euw +bwE +bHC +bpr +bpr +bpr +coD +bxk +bwE +bCi +bwE +bBn +bBn +bBn +bBn +bBn +bBn +bBn +bBn +euf +bBm +bBm +bBm +bEa +bBm +bBm +diH +dbE +cXm +cYD +eKo +cXc +cXa +bBm +bBm +bBm +bCB +cKG +bBn +bBn +bBn +bBn +bBn +etw +eGT +ezz +epD +eui +bwE +bwt +esT +bxi +bxi +bxi +bxi +bxi +bxi +bxi +bxi +bwD +bwD +esZ +bwt +esE +bvG +bvG +esF +esB +cfg +cfg +cfg +esr +ess +wiH +bhU +cJo +cJj +bug +buc +aMx +eWv +atv +bsZ +bsY +bgA +bsP +bsY +buL +aUS +bxC +eqU +bxC +bsw +bxC +bxC +eqU +eqU +bsG +epC +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +bsF +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(107,1,2) = {" +sqe +bsC +bTu +bSN +eWX +bSO +eWX +bSD +eYO +bSn +bRi +brB +bQY +brl +bzy +bwE +bwE +bQu +bwE +bIq +byQ +bzi +bzi +bMT +aQI +bMr +bME +bgy +ddB +bOA +aPR +bNa +aPy +bMR +cvE +bMr +bMr +bLH +bMV +aJE +bzi +bIr +byQ +byQ +byQ +byQ +byQ +eJP +crg +bqn +bqn +bqn +eWS +bJk +cLC +byQ +bIr +byQ +byQ +byA +eui +bwE +bwE +bwE +bxk +bwE +bwE +bwE +bwE +bwV +bxw +bwE +bQd +bQd +bQd +bGp +bGp +bBn +bBn +bBn +eFR +bBn +bBn +bBn +cXD +bBG +dEL +cYF +bBn +cXd +bBn +bBn +bBn +bBn +bBn +cjq +bBn +bBn +bwE +bwE +byf +bwE +eGU +eGR +epH +euk +bwE +bxw +bwt +esT +bws +bxi +bxi +bxv +bxi +bxh +bxi +cRG +bxh +bxi +bwD +bxi +bsO +esO +esN +cJL +cJL +cJL +cJL +bsO +cKV +der +anB +den +cIV +cJd +cIU +dek +bcR +bsZ +bsZ +bsF +bsY +bsY +aMS +eqU +bxC +eqU +eqU +era +bsw +eqU +aUS +bxC +eqU +bsH +buK +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsG +eqU +eqU +eqU +eqU +eqU +eqU +bsw +sqe +"} +(108,1,2) = {" +sqe +bsB +bTy +bSD +bSH +bSD +bSD +bSD +bSu +bSn +bSd +brq +bQY +bzi +bzy +bwE +bzh +bBo +bzh +etw +byQ +byQ +bzi +bMU +bLV +bMr +bME +bOS +aQg +ddz +aPS +bNa +bOb +bME +bMr +bMr +bLH +bNe +aOS +bzi +bzi +bzi +byQ +bzi +bzi +aUG +aUG +crf +eWW +bqn +bqn +bqn +cpg +deu +bzi +bFE +bzi +bzi +bzi +byQ +byQ +byA +byA +eui +anz +byA +byA +ana +byA +eui +bwE +bwE +bAV +bQd +bQd +bQd +bwE +bwE +bwE +eFo +eFo +bwE +bwE +dcU +eta +cXx +cXt +cXn +bwE +cXe +bwE +bQd +dVu +bQd +bQd +bQd +bCh +bwE +bxw +bwE +bwE +bwE +bwE +eFi +eFi +bzh +bwE +bwE +bwE +bwE +bwt +esT +bxi +bxi +bxi +bxh +bxi +bxv +bxi +bwU +bfD +bfD +agi +agi +agi +agi +afW +afJ +afJ +agj +afB +afz +cIW +cKU +cKU +cJe +cIV +eWw +bsZ +cIz +bsF +eqU +dkd +eqU +eqU +bsA +eqU +bsB +bsA +bsw +bsw +bsA +eqU +bsB +eqU +bsG +bwk +bsP +bsY +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsP +buL +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(109,1,2) = {" +sqe +bvb +bTw +bSD +bSD +bSY +bSP +bSD +bSu +bSn +bSc +bRi +bQY +bzi +bzy +bwE +bzh +aRj +aRg +bwE +bQb +dnG +csq +bLt +eMS +bMr +bMP +bME +bHS +bNm +bNa +aPK +bqV +bMr +bMr +adw +dce +aOY +bzi +bzi +bzi +bzi +bzi +bLH +aOf +bKS +bKS +bst +bqn +bqn +bqn +aXQ +eWT +aJy +aSF +aNS +aNv +aIQ +bzi +bzi +byQ +byQ +byQ +byQ +byQ +byQ +byQ +byQ +byQ +bEW +byA +bFD +eui +bwE +bwE +bwE +bwV +bwE +eFs +eFW +eFS +eui +bxw +bwE +bIq +cXy +byQ +cXo +bwE +bwE +bxw +bQd +bQd +cWZ +bQd +bQd +bQd +bQd +bwE +bwE +eIU +bzh +bzx +bOd +bzx +bzh +bzh +bzh +bCY +bwE +bwE +bwt +esT +bws +bws +bxi +bxh +bwU +bfD +bfE +bfE +bfE +bwj +bwj +bwj +bwj +bwj +aEj +aEj +cJH +cJx +cJv +cKU +cIQ +cIJ +cKU +eWx +bve +cIA +bsZ +bsZ +bsI +dkd +aUS +bxC +eqU +bxC +eqU +bsw +eqZ +era +bsw +era +eqU +eqU +epy +epw +bsP +bsY +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +aMS +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(110,1,2) = {" +sqe +bsB +bTx +bSX +bSD +bSD +bSD +bSE +bSu +bSn +brX +brC +bRp +bQY +bIg +bzh +bzh +bBo +aRh +bzh +byQ +dnG +csq +aQB +bLt +bOo +bNv +bME +bME +bHA +bNx +bqW +aPA +bMr +bLH +bLt +aPf +bMG +aOp +aOK +bLQ +aOz +aOp +bLt +aZT +aTg +aTg +aTg +aSY +aSY +aSY +aJz +aJz +aJz +aNT +aNB +aNR +aNM +bFl +cQX +aNF +aNF +bzi +bzi +bFE +bFl +byQ +bzi +bzi +bzi +bzi +bFE +byQ +byA +eui +bwE +bwE +bxw +eFs +eFX +eFT +eFN +eFM +bwE +cXE +eME +euk +cMQ +doM +bwE +bxw +bwE +bmk +bwE +bwE +bwE +bCi +bwE +bwE +bwE +bzh +bzx +bBo +bAj +bzQ +bzx +bzx +bzh +bzh +bwE +bwE +bwV +bwt +bwt +bwt +esT +bws +bfP +bfP +bfP +bws +cRF +bwj +bwj +bwj +bwj +bwj +bwj +bwj +agk +cKU +cKU +cKU +cKU +cKU +cKU +eHm +cIN +cKQ +cKQ +cKM +dkc +eqU +bxC +eqU +eqU +eqZ +era +bsw +era +bsw +bsw +eqZ +bxC +eqU +eqU +epz +bsP +bsZ +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +buM +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(111,1,2) = {" +sqe +bsC +bTt +bmx +bSX +bSD +bSN +bSD +bsi +bSq +bSc +bRi +mmu +brm +ghS +bwE +bQA +bzh +bzh +bwE +bIq +byQ +csq +aQT +aQJ +bLS +bMr +dko +aQh +bME +eVz +aPM +aPB +aOV +bLT +aPm +aPg +aKU +aJO +aOL +aOF +bMG +bLT +aOj +aOg +bzi +aSS +bKF +eJM +eJK +eJI +eJF +eFO +aSS +bzi +bzi +bmj +aNN +aNI +bFP +cSf +cQG +aNA +aNv +aIQ +bzi +bzi +bzi +aMP +bFY +aIQ +bzi +byQ +byQ +bzy +bwE +bCY +bwE +eFs +eFY +eFU +eFO +bDC +bwE +etw +cYy +bwE +bwE +eAE +byA +byA +eAj +bwE +ezZ +ezU +byA +byA +eui +ezl +bzh +bzh +bBo +bBp +eqU +bAk +bAW +bzx +bzx +eIH +bwE +bwE +bwE +bwE +bwE +bwt +bwt +bwt +bwt +bwt +bwt +bwt +esT +lBd +lBd +lBd +lBd +lBd +lBd +lBd +agq +cJy +cKU +cKU +cKU +cKU +cKU +esh +cKS +cIB +cKR +cKN +eqU +dkd +dkc +bsw +bsw +bsw +bsw +bsw +bsw +erd +bsw +erc +eqU +eqU +bhZ +epA +bsY +bsY +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(112,1,2) = {" +sqe +bsC +bTu +bSD +bSD +bSE +bSD +bSD +bSu +bSq +bSc +bRi +bRq +bQY +bzy +bwE +bwE +bwE +bwE +bwE +etw +bcD +bzi +csq +bMG +aOm +bMr +cuj +bMF +bME +bME +bME +exh +aJQ +bLt +bLS +bzi +cMQ +cMQ +cMQ +dlt +dls +dlr +bzi +bzi +byQ +byQ +bBl +eJN +eJL +bJW +eJG +bFF +byQ +bEW +bzi +aIY +aNP +aNJ +aIX +aNE +aND +eMK +aNw +aNn +bGJ +bGz +aMU +bFP +aIW +bFP +aIQ +bzi +byQ +bzy +eBn +bwE +bwE +eFs +eFZ +eFO +eFP +bwE +bwE +bwE +bwE +eta +eAP +eAb +ezy +ezy +eAk +byA +eAb +ezy +ezy +ezy +ezq +ezm +bzx +bBo +bBA +eqU +eqU +eqU +eqU +bAk +bzS +bzx +bzh +bwE +bQd +eqV +bQd +eiS +dVu +bQd +cJI +bwE +bwV +bGa +cJN +cJO +cJM +cJM +cJM +esJ +esG +bsO +agr +cJz +cKU +cJs +cKU +cKU +cKU +cKU +cKU +cIB +cIB +cKO +eqU +dkd +dkc +dkd +dkd +eqU +eqU +eqZ +era +bsw +bxC +eqU +eqU +eqU +bsI +epB +bsP +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +bwk +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(113,1,2) = {" +sqe +bsA +bTv +bSX +bSH +bSD +bSD +bSD +bSu +bSq +aZK +bRi +bQY +bzi +bzy +bwE +bwE +bwE +bwE +bwE +bwE +brb +byQ +bzi +aQK +bLV +bMr +cxe +edn +bMr +bMr +dRh +bOc +bMj +aPp +aJE +bzi +cPG +cPG +cPG +bqG +bFF +byQ +byQ +byQ +bFF +bFF +bBl +bBl +bBl +bBl +etM +bxj +eKI +dnV +bzi +bzi +bzi +aNF +aNF +aNF +bHx +bHp +aIY +aNo +aIZ +aNc +aMV +aMQ +bFZ +aMJ +aMH +bzi +byQ +bzy +bwE +bwE +bwE +bwE +eFi +eFi +bwE +bwV +bwE +bzh +bzh +bzh +eAb +eAc +ezV +ezz +eAl +ezy +eAc +ezV +ezJ +ezz +ezr +bzh +bBo +bBA +eqU +aPG +eqU +eqU +eqU +eqU +bAj +bAh +bzx +bwE +bMe +bQd +eHL +bQd +bwE +bwE +bwE +bxj +bIq +bzi +esA +aTa +aTa +cfg +esr +esp +cKV +det +des +cJA +cIQ +cKU +cKU +cKU +cJg +cKU +cIO +esh +cIB +cIu +cIo +clt +eqU +dkc +eqU +dkc +dkd +era +bsw +bsw +aUS +bxC +eqU +eqU +bsG +epC +bsP +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +buM +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(114,1,2) = {" +sqe +bvb +bTw +bSD +bSY +bSD +bSD +bSH +bSu +bSq +bSa +bRk +bQY +bzi +bzy +bye +bxk +bMe +bwE +bwE +bwE +etw +byQ +bzi +bMT +eSR +bOo +bMr +edA +bLH +bNF +bOo +bMr +bMj +mpl +bzi +bzi +byQ +byQ +euk +bwE +bwE +bLX +bFF +euk +bwE +bwE +css +bBl +bBl +bJE +bBn +dej +bwE +bzO +bFF +bFF +bIg +byQ +byQ +byQ +byQ +bzi +bzi +bzi +bzi +bFE +aMW +aMR +aMM +bFQ +aIR +bFl +bEW +bzy +bwE +bwE +bwV +bwE +bzh +bzh +bQe +bzx +bzx +bzx +bCK +byQ +eAR +ezV +eAu +eAo +ezJ +ezJ +ezJ +ezW +ezK +ezA +ezr +bBo +bBp +eqU +eqU +eqU +aPG +aPG +aPG +eqU +eqU +bAi +bzP +bzh +bwE +eFr +bQd +bQd +bwV +bCY +bwE +bwE +deA +esF +esB +cfg +cfg +cfg +eso +cKV +det +cKU +eIm +cJB +esm +cJp +cKU +cKU +cKU +cKU +cIP +cII +cKS +cIv +cIp +cuQ +cmD +coP +dkc +dkc +dkd +eqU +eqU +erd +eqU +bsB +eqU +eqU +bsG +epC +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +bwk +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(115,1,2) = {" +sqe +bsB +bTx +bSD +bSD +bSD +bSE +bSI +bSq +bSo +bSc +bRj +bQY +bzi +bzy +bxw +bwE +bwE +bwE +bwE +bwE +bPU +bIq +bzi +aQL +aQC +bLt +aKA +aKy +aPW +cti +aKg +aPC +bMi +aJE +bzi +byQ +byQ +bEN +euS +byA +byA +bLY +bwE +bwE +bwE +bwE +bKG +bBk +bBl +bBl +eue +bBn +bwE +bwE +bGV +bwE +bzO +dnT +bFF +bFF +bps +byQ +dje +byQ +byQ +bzi +bzi +aIY +aMN +aIU +bzi +bzi +byQ +bzy +bwE +bwE +bwE +egS +bzh +bzx +bDq +bAi +bzP +bDb +bCT +eAb +eAc +ezr +bBo +bzP +eIW +cCd +bBo +bBo +bCq +ezA +ezr +ezn +eqU +bOk +aPG +eqU +aPG +aPG +bOk +eqU +eqU +bAj +bzQ +bzx +bwE +bwE +eFo +bwE +erN +bwE +bwE +bwE +deA +esA +cfg +cfg +cfg +esr +esp +cKV +det +eIm +cKR +cJC +cKR +cJG +esm +cIY +cIY +dmS +cKU +cKU +cKo +cIw +anB +cIh +cuQ +cmD +coP +eqU +dkc +aUS +bxC +eqU +bxC +eqU +eqU +eqU +bsH +epE +bsZ +bsZ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bsQ +bsS +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(116,1,2) = {" +sqe +bsC +bTt +bSD +bSO +bSD +bSD +bSu +bSq +bsf +bSe +bRi +bQY +bQZ +bzy +bwE +bwE +bwE +aRi +cRR +bwE +bwE +dTb +bzi +aKG +aQD +aQv +bMk +aQi +aPX +bOs +aKh +aPD +aJE +bzi +bNz +byQ +euU +eta +eBJ +bMs +bMm +bzy +bwE +bwE +bLg +bwE +doi +bBk +bBl +bBl +bJE +cYN +bwE +euE +eBy +bQd +bwE +bye +bwE +bwE +bwE +etw +bFF +bFF +byQ +byQ +bzi +bzi +bzi +bzi +bzi +byQ +byQ +euk +bwE +bwE +bzh +bzh +bzx +bCq +bOk +eqU +eqU +aPG +eqU +eAV +eAS +eAF +bOk +eqU +bDb +bCT +bCK +bCC +eqU +ezB +ezs +ern +cWT +bOk +eqU +eqU +eqU +bOk +bOk +bOk +eqU +bAk +bzR +bzx +bzh +eFs +eFp +bxH +eFg +cMf +bxw +eta +bzi +esA +cfg +cfg +cfg +eso +cKV +det +cJf +dcE +cKR +cKP +cKR +cKR +cJm +esk +cIY +cIY +cKU +cIJ +cIE +cIx +anB +cKn +cKm +csr +cmD +clg +eqU +bxC +eqU +eqU +aUS +bxC +eqU +bsH +buM +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsY +bsP +bsF +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(117,1,2) = {" +sqe +bsC +bTu +bSD +bSD +bTa +bSR +eYQ +bSq +bsg +bRO +bRl +aRl +byQ +bzy +bwE +bwE +bwE +bQd +bQd +bwE +bwE +bIq +bzi +bzi +bzi +aJI +aJI +aKz +bMG +bOt +aKj +aJE +bzi +bzi +byQ +bzy +eta +byQ +bMs +aVR +aOB +bzy +bwE +bwE +bwE +bwE +dpM +bBk +bBl +bBl +etM +bJt +bwE +dnW +bQd +bQd +bQd +bQd +bwE +bwE +bwE +bwE +bwE +bxw +etw +bFF +bFF +bFF +bFF +bFF +bFF +boM +euk +bwE +bzh +bzx +bzx +bzx +bCC +bOk +cWT +aPG +aPG +aPG +bsw +eAW +ezt +ezt +eqU +eqU +eqU +aPG +eqU +bOk +eqU +ezC +ezt +eqU +cWS +ero +erm +erm +eqU +cWS +eqU +eqU +eqU +bAk +bzS +bzx +bzh +eFs +chC +eFl +euz +bwE +bwE +bQb +bzi +esA +cfg +cfg +esr +esp +cKV +dey +eIp +cJm +eIn +cJE +afY +cKR +cKR +cJb +esk +cIY +cIQ +cIK +cIF +buY +cIq +eWo +eWo +cuQ +cmD +clt +eqU +dkc +eqU +eqU +eqU +eqU +eqU +bsG +epG +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsY +bsH +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(118,1,2) = {" +sqe +bsB +bTy +bSG +bSD +bSE +bSu +bSt +bSo +aZK +bRi +brD +bQY +byQ +bzy +bwE +bwE +bQd +bQd +bQd +bwE +bwE +etw +bFF +byQ +byQ +bIr +bzi +bzi +bMT +aKn +mpl +aKc +bzi +byQ +byQ +euk +bEx +bzi +bMH +bMt +eCD +bzy +bwE +def +bwE +bwE +dpz +bBk +bBl +bBl +eue +bBz +bwE +bwE +bQd +bQd +bQd +bwE +bwE +bHD +bzx +eur +bwE +bwE +eBy +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bzh +bzh +bzx +bCT +bCK +eqU +aPG +cWS +aPG +eqU +bsw +ezi +ezi +ezi +aPG +eqU +bOk +bOk +aPG +aPG +aPG +eqU +ezi +ezi +eqU +bsw +bsw +bsw +eqU +eqU +bOk +bOk +eqU +bAj +bAh +eIF +bzx +bzh +eFs +eFq +eFm +eFh +bwE +eta +bzi +esF +esB +cfg +cfg +eso +eWL +eWK +eIq +cKR +eIo +cKR +cJF +cKR +afY +cKR +cJb +cJb +esk +cJp +cIK +buY +bum +cIr +cIi +cxP +cuS +cps +cmD +ciJ +eqU +eqU +eqU +eqU +eqU +eqU +bsI +epB +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsP +bsZ +bsG +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(119,1,2) = {" +sqe +bvb +bTw +bSE +bSD +bTb +bmv +bSo +bSc +bRi +bRK +bRi +bQY +bzi +bzy +bQJ +bwE +bQd +bQd +aRf +bQd +bwE +bxw +bwE +etw +bFF +bOZ +bFF +byQ +aKx +aKo +aKk +byQ +byQ +bFF +bFF +bwE +bwE +euT +bFF +bFF +bHU +euk +bwE +bwE +bwE +bwE +dpN +bKq +diI +diI +bJE +bBn +cYM +bIT +bwE +bwE +bwE +bwE +bwE +bzx +bzx +bzh +bwE +bwE +bGV +bQd +bQd +eHL +bQd +bCi +bwE +bwE +bzx +bzx +bBo +bDb +eqU +eqU +aPG +eqU +eqU +aPG +aPG +bsw +ezi +ezi +ezi +cWT +bOk +eqU +bOk +aPG +eqU +err +bsw +ezi +ezi +erm +bsw +bsw +cWT +bOk +bOk +eqU +eqU +eqU +bAi +bzP +bzx +egP +bwE +eFt +eFi +eFn +eFi +bwE +bIq +bzi +esA +cfg +cfg +esr +esp +eWL +bHy +cJc +cJc +cKR +cKR +cKR +cJq +deo +cJq +cJk +dou +cIS +cIS +cIL +cKT +cIy +cIs +cIk +cyY +eWo +cqt +cow +bFn +bGL +bGA +eqU +eqU +eqU +bsG +epC +bsP +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsP +bsY +buL +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(120,1,2) = {" +sqe +bsB +bTx +bSX +bSD +bSu +bSq +bSc +aYl +bsh +bRl +eMX +bRp +bQY +bQO +bwE +bwE +bQd +bzx +bzh +bQe +bwE +bwE +bzh +bwE +bwE +bPa +bOT +aQj +aPY +aKp +bFF +byQ +euk +bwE +bwE +bwE +aON +bwE +cRR +bwE +bwE +bwE +bwE +bwE +bwE +bwE +bBn +dod +diI +diI +djo +dnX +bwE +bwE +aoo +aog +aod +bwE +bwE +bzh +bzx +bzh +bwE +bwE +bwE +bwE +bQd +bQd +bQd +bQd +bwE +eJb +bzx +bBo +bzP +aPG +bOk +aPG +eqU +aPG +eqU +eqU +bsw +eHz +eHt +ezi +ezi +eAG +cWS +eqU +aPG +eqU +bsw +bsw +bsw +ezi +ezi +ern +bsw +eqU +cWS +eqU +bOk +bOM +bPx +anm +bPw +bzT +bzF +bzx +bzh +bwE +bye +bwE +eFk +eta +bzi +esF +esB +cfg +cfg +eso +eWL +bHy +bFo +bFo +cJc +cJc +cKR +cKR +cKR +anB +cKR +cJl +cJh +anB +cIT +cIM +cIG +bum +bHy +cIl +dee +eWo +eWl +bFo +eWf +bGL +bGC +eqU +bsG +bsH +epE +bsP +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bsY +aMS +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(121,1,2) = {" +sqe +bsC +bTt +bSX +bSX +bSs +bSq +adN +bRi +eNd +brY +eMY +bRi +bQY +bzy +bwE +bzh +bzx +bzh +bzh +bzx +bzh +bzh +bzh +bzh +bzh +aKF +bOU +bqY +bOB +bwE +bwE +bOd +bwE +bwE +bwE +bMe +aPa +bDp +cYP +bGa +eui +apK +adI +adI +bwE +bwE +bxw +dof +doc +bJX +vfz +dnY +bxw +bwE +aop +aoh +bIh +bwE +bxw +bwE +bwE +bwE +bye +bwE +bwE +bxw +bwE +bwE +bwE +bwE +bwE +bFm +bBo +eQx +aPG +eqU +ero +bsw +erm +bsw +eqU +eHE +eHC +bHy +eHx +eHt +ezi +ezi +eqU +bsw +ern +bsw +bsw +bsw +ezi +ezi +ezi +ezi +bsw +eqU +aPG +aPG +eqU +bOM +bPx +anm +bPw +bzT +bzF +bzx +bwE +bwE +bxj +bxw +bwE +bIq +bzi +esA +cfg +cfg +esr +esp +eWL +bFo +bFo +bFo +bFo +cJc +cJc +cJc +cJc +cJc +cKR +cJm +cJh +anB +eWo +eWo +cIH +deh +cIt +cIm +czc +ded +eWl +bFo +eWf +eWf +eWf +bhR +bgA +epF +bsP +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bsQ +bsQ +bsS +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(122,1,2) = {" +sqe +bsC +bTu +bTd +bST +bTc +bSS +bSr +bSf +bRQ +bRr +bRP +bRl +bQY +byQ +bzh +bzh +bOV +bOL +bOV +bOL +bOD +bOu +bzT +bzF +bzh +bPb +bOK +bOK +bOC +bzh +bzh +bzh +bNJ +bzh +bzh +byA +byA +byQ +byQ +dnz +dnz +apL +eOT +cWI +bLh +bwE +bwE +dog +uKB +bJY +vfz +doa +aoD +aot +aoq +aoi +byA +bHV +bwE +bwE +eta +byA +byA +byA +byA +eui +bwE +bwE +bmk +bFm +byA +bBo +bCq +aPG +bOk +aPG +bsw +bsw +ern +ern +eHG +cWV +bFo +eHA +bHy +eHu +ezi +ezi +ezi +ezi +bsw +erm +bsw +bsw +ezi +ezi +ezi +ezi +ezi +aPG +eqU +cWT +bOk +eqU +bOM +bPx +anm +bPw +bzT +bmF +bzx +bwE +bwE +bwE +eta +bzi +esF +esB +cfg +cfg +eso +eWL +bHy +bFo +bFo +bFo +bGL +bGL +bFn +bFn +bGL +cJu +cJc +cJc +cJi +cJc +eWl +eWl +eWl +eWl +deg +eHN +eHN +bHy +eWm +bFo +bFo +bFo +eWf +bsP +bsP +bsP +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsP +bsQ +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(123,1,2) = {" +sqe +bsB +buV +bTp +bTj +bTd +bST +bSJ +bSv +bSr +bSf +bRQ +bRr +bBo +far +bOD +bOu +bzT +bzF +bOV +bOL +bOD +bOu +bzT +bOD +bzh +bOL +bOD +bOu +bzT +bzF +bzh +fao +bNK +bNJ +bNo +bzh +bzi +byQ +bzi +byQ +dnx +apM +eOT +dfQ +apC +aps +apk +bBn +apd +dob +vfz +dnX +aoE +aov +aor +aoj +aoe +bHM +byA +byo +byQ +byQ +bHg +bzi +byQ +byQ +bxH +byA +bGa +byQ +byQ +byQ +bCK +aPG +bOk +bsw +erm +ern +ero +bsw +eHH +eHF +eHD +bFo +eHy +eHv +eHt +ezi +ezi +ezi +bsw +ern +ern +bsw +ezi +ezi +bsw +ezi +ezi +aPG +eqU +bOk +bsw +bsw +erf +bPx +anm +bPw +bzT +bzF +bzh +bzh +bwE +etn +deC +bzi +esA +cfg +cfg +esr +esp +eWL +bFo +bFo +bFo +bFo +bGL +bGL +bFn +bFn +bGL +bGL +bGL +bGL +bGL +bFo +bFo +bFo +bFo +eHC +bHy +bHy +bHy +bHy +bHy +eWg +bFo +bFo +bFo +bsY +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsP +bsQ +buM +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(124,1,2) = {" +sqe +bsA +bsC +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bOD +aTn +bsY +eqU +bOM +bOL +bOD +bOu +bzT +fap +bNJ +bNK +bNo +bNo +csW +bzi +bzi +byQ +bzi +apN +eOT +bLv +apD +apt +apl +doh +uKB +bJY +aoZ +bBn +bJl +aow +bID +aok +cnF +bzi +eBJ +eBH +eBF +eBE +cnF +bzi +eBz +eBw +eBv +bzi +cnF +bzi +bzi +byQ +bCT +aPG +bOk +bsw +bsw +bsw +bsw +ern +ern +bsw +bsw +eHB +eux +eHw +eqU +ezi +ezi +ezi +bsw +erm +bsw +ezi +ezL +bsw +bsw +ezi +ezi +aPG +ero +ern +bsw +erf +erg +anm +bPw +anl +bzF +byQ +bzy +bxw +bwE +bIq +bzi +esF +esB +cfg +cfg +eso +eWL +bHy +bFo +bFo +bGL +bFn +bGL +aHK +aHK +aHK +aHK +aHK +bFn +bFn +bGL +bFo +bFo +bFo +bFo +bFo +eHC +eWr +bHy +bHy +bHy +bHy +eWg +bFo +bFo +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsP +bsP +bsP +bsQ +epC +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(125,1,2) = {" +sqe +bsB +bsx +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +faq +cvX +apW +cvX +apU +apP +cuh +cuh +cuh +csX +csX +csX +cuh +cuh +cuh +csW +bKT +apm +apg +bJX +bJY +bJH +aoO +aoG +aox +cHL +cnx +cnx +cnx +cHL +cHL +cHL +cnx +cnx +cnx +cHL +cHL +cHL +cnx +cnx +cnx +cnF +bOM +bPx +anm +ert +ers +erv +erf +erg +erp +ert +ers +ano +eqU +eqU +eqU +eqU +ezi +ezi +ezi +eqU +bOk +eqU +ezi +ezi +bsw +ern +ezi +ezi +bsw +ern +bsw +bsw +erf +erg +anm +bPw +anl +bzF +bzi +byQ +eui +eta +bzi +esF +esB +cfg +cfg +esr +esp +eWL +bFo +bFo +bFo +bFn +aHK +aHK +aHK +aar +aar +aar +aHK +aHK +bFn +bGL +bGL +bGL +bGL +bFo +bFo +bFo +bFo +eWp +bHy +bHy +bHy +eWh +bFo +bFo +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsQ +bsQ +buK +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(126,1,2) = {" +sqe +bsC +buT +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bOM +cwS +cwH +cwx +cwj +cvt +apV +cvt +csW +ctH +csW +eGM +eGL +eDS +csW +ctH +csX +csX +cqb +cqb +cqF +ape +aoP +apa +cqF +cqb +cqb +cHL +cnF +cnV +cnF +cnz +eGp +eGs +cnF +cnV +cnF +eGr +cor +eGp +cnF +cnV +cnF +anU +bPx +anm +bPw +ers +ano +eFQ +eFV +eFV +eFV +eFQ +bOM +bPx +anm +bPw +anl +ano +eqU +ezi +ezi +ezi +eqU +bOk +ezi +ezi +ezi +ezi +ezi +ezi +bsw +bsw +bsw +anm +bPw +anl +ano +cfl +cfl +cfl +cfl +eyR +byQ +byQ +byQ +esA +cfg +cfg +cfg +eso +eWL +bHy +bFo +bGL +bGL +bGL +aHK +aar +aar +eqU +eqU +aar +aar +aHK +aHK +bGL +bGL +bGL +bGL +bFo +bFo +bFo +bFo +eWq +bHy +bHy +bHy +bHy +eWg +bFo +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +epG +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(127,1,2) = {" +sqe +bsC +buM +bsI +buL +ans +ani +anh +anC +any +anx +ans +ani +anh +anC +any +anx +ans +ani +anh +anC +btW +btW +bPw +cwj +cvt +cxv +cwS +cwH +cwx +cwj +cvt +apT +apW +cvu +cvu +ctW +ctI +ctt +ctX +ctX +csY +ctW +ctI +ctt +csY +cqc +cqc +dpi +cqF +cRN +cqF +dpc +cqc +cqc +cnF +vCU +biN +ntB +cnz +eGt +cor +vCU +biN +ntB +cnz +cor +cor +vCU +biN +ntB +anU +anS +anm +bPw +anl +ano +bOM +bPx +anm +bPw +anl +ano +bOM +bPx +anm +bPw +bOM +bPx +ezi +ezi +ezi +aPG +aPG +eqU +ezi +ezi +ezi +ezi +ezj +ezh +ano +bOM +bPx +anm +ciS +ciK +ciD +cfl +cfl +cfl +eyS +byQ +byQ +esF +esB +cfg +cfg +esr +esp +eWL +bFo +bFo +bFn +bGL +aHK +aar +eqU +eqU +eqU +eqU +eqU +aar +aar +aHK +bFn +bGL +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eHC +bHy +bHy +bHy +eWh +bFo +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsY +bsP +epB +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(128,1,2) = {" +sqe +bsB +bwk +bsG +aMS +any +anx +ans +ani +anh +anC +any +anx +ans +ani +anh +anC +any +anx +ans +ani +btW +btW +bPx +cwH +cwx +cwj +cvt +aqJ +aqC +aqs +apU +cwk +cvu +cvu +csY +csY +ctX +csY +ctX +ctX +ctX +csY +apI +csY +ctX +eUb +cqc +cqF +cqF +cqF +cqF +aoP +cqc +eUa +cor +cnz +cor +cDB +cDv +cor +cor +cor +cnz +rnc +cnz +cor +cor +cnA +cnz +cnz +cnz +obI +ncD +pxI +bOM +bPx +anm +bPw +anl +ano +bOM +bPx +anm +clw +anl +ano +bOM +bPx +eAv +eAp +eqU +bOk +err +eqU +bOk +ezu +ezu +eqU +bOM +bPx +anm +bPw +anl +ciD +ciD +ciE +ciE +cfl +cfl +cfl +cfl +eyM +byQ +esA +cfg +cfg +esr +esp +wiH +bHy +bFo +bFo +bFn +aHK +aar +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aar +aar +aHK +bFn +bGL +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eWi +bHy +bHy +bHy +eWg +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsP +aMS +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(129,1,2) = {" +sqe +bvb +buL +bsH +buK +bsY +bsY +aqU +asb +arZ +bsY +bsY +bsY +bsP +bsY +bsY +bsY +bsY +bsY +bsY +buc +buc +btW +bta +csW +csW +aqR +cvu +cxc +cwk +cvu +aql +cvu +cvu +ejf +ctX +ctX +ctX +ctX +ctX +ctX +ctX +ctX +ctX +csZ +bBf +apv +apo +dyn +auE +bis +bis +sfz +aoH +aoy +euC +cnA +byE +cDL +cor +cor +dtM +cor +byi +col +cor +col +baa +coh +cnW +cnA +cnA +dzv +anF +pxI +pxI +pxI +xdB +clQ +clQ +clQ +clQ +anL +anI +anF +clj +ckM +anm +bPw +ezD +ezv +eqU +eqU +bOk +eqU +bOk +ezD +aaf +ezo +cjf +cje +ciS +ciK +ciD +anu +ciE +ciE +cfy +ciq +eth +cfl +cfl +cfl +etq +esB +cfg +cfg +eso +eWL +bHy +bFo +bFo +bFn +bGL +aHK +aar +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aar +aar +aHK +bGL +bGL +bFo +bFo +bFo +bFo +bFo +bFo +eHC +bHy +bHy +bHy +eWh +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsP +epE +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(130,1,2) = {" +sqe +bsB +aMS +bsS +bsI +buL +asc +bdg +xLO +bdg +arZ +bsY +bsY +bsZ +arM +bsP +bsZ +bsZ +bsZ +bui +buc +btW +bta +bta +csW +cxG +cxw +cvu +cvu +cvu +ctb +cux +cta +cta +ctb +eDJ +eDA +ctX +csZ +bBf +bCn +ctX +ctX +apJ +cEw +ctb +apw +app +crS +nDe +iZQ +rjf +kSy +aoI +eMM +ckP +lYD +cmq +cpo +col +col +col +col +coL +col +col +col +dLE +coj +ckP +ckP +aaq +mEC +anF +anF +anF +anF +pxI +srB +anO +clQ +ehD +anM +anJ +anG +ckO +ckO +eqU +ckd +eAw +eAq +eAg +eAg +eAe +ezX +ezM +ezE +ezw +ciE +ciE +ciE +ciE +ciE +ciE +ciE +cfy +cfy +cfy +etb +cir +eyW +cfl +cfl +cfl +aTa +aTa +esr +esp +eWL +bHy +bFo +bFo +bGL +aHK +aar +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +aar +aHK +bGL +bGL +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eWi +bHy +bHy +bHy +bcX +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsP +bwk +eqU +eqU +eqU +eqU +bsw +bsw +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(131,1,2) = {" +sqe +bsC +buK +bsG +bwk +bsY +bdn +xLO +xLO +xLO +asa +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btF +buc +buc +bta +bta +csW +cxG +cxw +cta +cwl +cwl +cwl +cwl +cwl +cwl +cvY +eDP +ctX +ctX +bBf +cta +cta +cuq +cui +bBf +cta +cEw +cta +ePN +cst +cpx +auF +cru +qDj +aoQ +aoJ +ePP +ckP +ckP +ckP +ckQ +col +col +col +col +col +col +col +col +col +ckP +ckP +cmU +ckP +ckP +mEC +cmT +cmT +cmT +anQ +anP +ckO +ckO +ckO +clQ +anK +ckO +ckO +ckO +anE +eAH +eAx +eAi +ezN +eAh +eAf +cjx +ezN +ezF +ezw +ciE +cfy +cfy +cfy +cfy +cfy +cfy +cfy +cfy +sPJ +cfu +cfu +etv +ett +cfl +cfl +cfl +aTa +etf +eWL +cJP +bHy +bFo +bFn +bGL +aHK +aar +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +aar +aar +aHK +bGL +bFo +bFo +bFo +eWj +eWj +bFo +bFo +eWi +bHy +bHy +bHy +btS +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsY +bsH +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(132,1,2) = {" +sqe +bsC +buM +bsG +aMS +bsY +asd +xLO +xLO +xLO +asa +bsZ +bsZ +bsZ +bsZ +ari +bsZ +bsZ +bui +buc +bta +bta +csW +cyd +cxw +cta +cta +cwl +cwT +tsf +oRj +aqm +rlw +cvZ +eDQ +eDK +eDB +bIL +cta +cta +cta +cta +cta +cta +cEF +ctd +apy +dpl +crT +apf +eow +qDj +aoR +aoK +aoA +ePM +aol +ckP +ckO +ybp +ckP +ckQ +col +col +col +coB +col +col +col +ckP +ckP +ckP +ckP +ckQ +dld +ckP +ckP +ckP +ckP +ckP +ckO +ckO +ckO +ckO +ckO +ckP +ckP +cfy +eAI +eAx +ezO +eAm +eAi +ezN +ezF +ezO +ezG +qGk +ezp +cfy +cgi +anw +cgi +cgi +cgi +cfy +anp +cfu +cft +etv +ett +aTd +aTd +cfl +cfl +bta +bta +bta +faG +bHy +bFo +bGL +bGL +aHK +aar +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +aar +aHK +aHK +bGL +bFo +bFo +eWj +eWj +bFo +bFo +eHC +bHy +bHy +bHy +buc +bcX +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsQ +bsH +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(133,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bdo +xLO +xLO +xLO +nOb +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bui +bta +bta +csW +cyk +cta +cta +cta +cta +cwl +cwT +cwT +aqt +aqn +cwm +cvZ +eDR +eDL +eDC +eDv +bIL +cux +cta +cta +cte +cEF +cEF +cte +cKz +csu +cqe +rsK +htI +ykT +aoS +cqu +aoB +cpI +ePK +ckO +nYG +aoa +cpa +dLE +ckP +coM +col +col +col +ckP +ckP +ckP +ckP +hCz +ckP +ckP +ckP +cna +ckP +ckP +aaq +ckP +ckP +ckP +clR +ckP +ckP +ckP +ckP +cfy +eAJ +eAy +eAr +eAn +ezG +ezG +ezG +ezP +etg +ezx +cfH +cgi +cgi +cgi +bFs +cgi +fcC +cfy +cfv +cfu +etv +ett +aTd +aTd +aTd +aTd +cfl +bta +bta +bta +faG +faG +bHy +bFo +bGL +aHK +aar +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +aar +aar +aHK +bGL +bFo +bFo +eWj +eWj +eWj +bFo +bFo +eHC +bHy +bHy +buc +btS +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsQ +bsG +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(134,1,2) = {" +sqe +eqU +eqU +bsS +bsH +buM +bdp +sFn +sFn +nOb +bsZ +bsZ +vje +eVZ +vje +vje +bsZ +apn +buc +bta +csW +eDS +cyk +cta +cwl +aqW +cwl +aqP +aqK +inl +aqu +cwy +cwn +cvZ +eDS +eDM +eDD +eDw +ctX +cta +ctb +cta +cte +cte +ctv +cte +cqG +dpm +crU +cri +cri +cri +aoT +cpb +cpb +aon +aom +ckP +aoc +ckP +ckP +coV +cni +cni +cni +cni +cni +cni +cni +cni +cni +cni +cni +cni +cni +cmw +cmU +ckP +ckP +ckP +ckP +ckP +anN +col +clx +col +ckQ +cfy +cfy +bfN +etg +ezx +cjN +ezx +ezx +ezQ +cfy +cfy +cgi +cgi +fcC +cgi +cgi +anv +cgi +cgi +cft +etv +ett +aTd +aTd +aTd +etr +eto +alQ +cft +czW +cgy +bta +faG +bHy +bHy +bGL +aHK +aar +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +aar +aHK +bFn +bGL +bFo +eWj +eWj +eWj +bFo +bFo +bFo +eWi +bHy +buc +buc +bcX +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsQ +buL +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(135,1,2) = {" +sqe +eqU +eqU +bsG +bwk +buA +bsZ +bsZ +fXj +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +buq +eQo +csW +aSN +cyk +cta +cwm +cxH +cwm +vCr +aqL +cwU +aqv +tsl +cwn +cwa +ctX +ctX +cvf +cuY +cuy +ePV +auN +ePV +cuY +cuY +cuY +eMP +cpI +dpO +crU +cri +cri +cri +kgb +hPM +dlo +cpJ +ePL +ckP +dLE +ckP +coV +cnb +cMN +cmK +cMN +cmK +cMN +cmJ +cmJ +cMN +cMN +cMN +cMN +cnq +cnq +cnb +cmw +ckP +ckP +ckP +ckP +ckP +col +col +col +col +col +cgi +cfH +cfy +cfy +ePj +ePi +ePi +ePi +ePi +ePi +dla +chb +chb +chb +chb +chb +chb +chb +eTV +cft +etB +aTd +aTd +aTd +etr +ets +cfu +cfu +cft +erq +alN +alH +bta +faG +bHy +bFo +aHK +aar +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +aar +aHK +aHK +bGL +bFo +bFo +eWj +eWj +bFo +bFo +bFo +eWi +bHy +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +aMS +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(136,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +bsZ +btq +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +btM +bgC +eQo +ctH +mYw +ctX +bIL +cwm +aqY +cwy +aqQ +cwI +adY +cwm +aqo +cwl +cta +bCn +cvf +cvg +crH +csK +csM +csM +csM +csM +csK +crH +cpb +apA +dpn +crV +kTK +crv +yfe +cqG +aoL +aoC +aon +cpy +aof +cph +cph +cnb +cMN +cMN +oMv +cMN +acf +cMN +cMN +cMN +cMN +abI +abB +idN +cMN +cnq +cnq +cmJ +cmw +anN +ckP +ckP +ckP +ckP +col +col +col +col +cfy +cfy +cfy +anD +cjX +ceJ +ceJ +ceJ +cgQ +cgQ +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +etC +ett +aTd +aTd +aTd +etu +mFT +eTT +eTT +eTU +als +bBU +cft +cfu +bta +faG +bHy +aHK +aHK +aar +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +aar +aar +aHK +bFn +bFo +bFo +bFo +eWj +eWj +bFo +bFo +eHC +bHy +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsG +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(137,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bui +btW +eQo +csW +iQB +csY +csZ +cwl +aqZ +cwm +cwl +aqN +cwV +eMR +cwz +cwl +ctb +cvF +cvg +crH +crH +fDK +bqI +bqA +bqA +bqA +fDK +crH +crH +apB +dFr +cqd +dCg +cru +qDj +aoU +aoM +cqf +cnq +cnq +cMN +cMN +cMN +cMN +cMN +url +uwi +cmK +acg +acc +abW +ljD +iLv +cnG +abB +abB +pYq +cMN +cnq +cnq +cmJ +cmw +cmq +ckP +ckQ +ckP +clI +ckP +clk +col +cgi +cfy +cfy +cfy +cjX +ceJ +akc +cjy +ceO +ceO +chc +ajx +ceO +eZZ +ajg +aja +abe +eZS +ceJ +ceJ +cgQ +cgQ +cgQ +cgQ +ceJ +ceJ +ceJ +ceJ +cgP +eTT +eTT +eTU +cft +cfu +bta +faG +bHy +aHK +aHK +aar +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +aar +aHK +bGL +bGL +bFo +bFo +eWj +eWj +bFo +bFo +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsH +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(138,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsY +bsZ +bsZ +bsZ +ari +bsZ +bsZ +btJ +btq +bsZ +bsZ +bui +bta +bta +ctX +csY +baV +cta +cta +cta +eQb +cwl +aqO +aqD +cwJ +aqp +aqf +cta +eQb +crH +crH +qsu +bqM +ddp +ctM +hqo +ctL +bqw +rYs +crH +crH +cpI +ayZ +dCg +cru +qDj +aoV +dqk +cnq +cnq +acM +acK +hGH +dnS +jVj +coW +coR +coO +jVj +ach +cmj +cos +uWV +acV +dnP +mbh +gBd +dnN +abv +cMN +cnq +cnq +aku +aks +ckP +ckP +ckP +clJ +ckP +bSQ +ckP +aaQ +aki +cfy +cfo +cjX +ceJ +akd +chi +ceO +cjn +syW +aiX +aiX +faa +ajh +eZU +aiX +chI +ciT +eZP +aiK +chI +chI +aiu +aig +eZE +ahO +ceJ +ceJ +ceJ +ceJ +cgP +eTU +cft +cft +bta +faG +bHy +aHK +aar +aar +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +aar +aHK +bFn +bGL +bFo +bFo +eWj +bFo +bFo +bFo +bsZ +bfn +buc +buc +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsP +bsH +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(139,1,2) = {" +sqe +eqU +eqU +bsS +bsH +buM +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btF +buc +bta +csW +csY +ctX +apI +ban +cta +cta +eQb +cwl +cwm +aqE +aqx +cwA +cwl +cta +eQb +csK +dQX +qsu +bqw +ddq +dPo +dPo +cXK +ctL +rYs +adn +eyn +csv +cqd +dCg +cru +apb +cqH +dpJ +cnq +xVv +aax +aax +acD +acD +cnt +coX +cnj +cnH +cnt +ach +cml +cmd +abP +acV +acV +hLM +jAh +acV +tSv +abq +cMN +cMN +cMN +akt +clS +clS +clS +akr +akq +akp +ako +akn +akj +akg +akg +akf +ceJ +ake +aka +ajW +ajW +ajK +acy +wIy +fab +eZW +eZV +aih +eZT +wIy +aiP +aih +aih +aih +wIy +aih +chJ +ahP +cgQ +ahl +eZq +ceJ +ceJ +eTS +cft +cft +alA +bta +eWF +aHK +aHK +aar +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aar +aHK +bGL +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bsG +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(140,1,2) = {" +sqe +eqU +eqU +bsF +bsG +aMS +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +bta +bta +csW +csY +ctX +cyk +cta +cuX +cta +eQb +cwl +aqP +cwm +aqy +cwl +cwl +cta +eQb +csM +cvh +bqP +ctL +dPo +cuk +cuk +cXL +ado +bqs +bqq +csL +apq +aph +ear +auA +rnG +tho +eHi +cnq +acP +acN +acL +acH +qFc +cmK +abS +abS +abS +cmK +ach +cnH +abX +hsy +aya +acV +hLM +abC +acV +acV +aCI +abn +cMN +cMN +cMN +cMN +cMN +cnq +xUs +cly +bii +szS +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +akb +chi +ajX +ajL +lSo +ajm +aiy +eZX +ajb +lHM +aiU +eZR +eZQ +aiL +aiE +eZO +aiv +eZI +ahY +ahQ +eZA +ahl +ahl +arB +ceJ +eTS +cft +cfu +als +alx +bta +bHy +aHK +aHK +aar +aar +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aar +aar +aHK +bFn +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bsZ +bsZ +bfn +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bsI +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(141,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +bsZ +vje +btq +bsZ +bsZ +bsZ +bsZ +btF +bgC +bta +csW +eDv +ctX +ctX +ctX +bIL +cta +cvu +cxo +cwK +cwK +cwK +eQj +eQi +cta +cta +eQb +csM +cvi +dED +bqw +dPo +cuk +cuk +dPo +ctL +rYs +bqq +csM +cpb +api +dCg +ayL +qDj +kiU +cpb +cMN +obB +acO +acI +dFk +acE +cmK +acz +acr +acr +cmK +ach +cnH +abY +abQ +abN +abJ +heY +vMV +rDv +xId +cmj +abo +cmK +cmx +cmr +abc +aaY +cnq +cnq +rhn +fDR +epi +ceJ +ceJ +bta +bta +bta +bta +ceJ +dTt +ceO +fae +fad +lSo +aiF +ceJ +ceJ +cis +cis +cis +cis +cis +cis +cis +ceJ +ceJ +aik +lSo +ahQ +cht +ahz +eZr +bIv +ceJ +dkX +cgi +cft +cfu +als +alo +bta +bHy +aHK +aHK +aar +aar +eqU +eqU +eqU +eqU +aar +aar +aar +aHK +bGL +bGL +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bsZ +bsZ +bsZ +bui +buc +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsP +bsF +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(142,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +apn +buC +buc +buc +bta +eVI +eVE +ctX +ctX +ctX +cyk +cta +cvu +cwk +cwk +cwk +cvu +cta +cta +ctb +cta +eQc +csK +bta +cuZ +ddv +ddr +dPo +dPo +ctY +ado +bqt +adn +csM +cpb +cpx +dCg +ayL +wYA +jAG +dne +cMN +acQ +xxk +uGc +xxk +acF +cmK +acA +srb +srb +cmK +aci +cnH +cnj +abR +ayb +cnH +abF +abw +aby +abw +abr +uBN +vtT +cmy +cmj +cmj +lNE +aaU +cMN +lRD +ckG +nYO +ceJ +ceJ +ats +aoX +aoX +atp +ceJ +chc +ceO +fae +fad +lSo +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +eZJ +ahZ +ahP +cgQ +ahl +ahl +eZm +ceJ +cgz +cgi +anb +cft +cft +als +bta +bta +bHy +aHK +aHK +aar +aar +aar +aar +aar +aar +aHK +aHK +bGL +bGL +bFo +bFo +bFo +bFo +bFo +eWj +eWj +eWj +vje +bsZ +bsZ +eWb +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +bsS +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +sqe +"} +(143,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bui +btW +bta +eDS +ctX +csY +ctX +ctX +bBf +cta +cta +cxx +cvu +cvu +cta +cwB +cta +cuX +cta +eQc +csK +csK +dEJ +bqN +ctL +ado +ctM +ddg +ctM +rYs +csK +csK +mjU +apj +dnZ +ayM +wmT +aGu +cMM +cMN +dnU +tqh +uGc +tqh +acF +cmK +srb +srb +srb +cMN +acj +akv +aca +rlZ +rlZ +rlZ +rlZ +cmj +cmj +cnj +rKc +abp +xao +dnM +cmd +cmj +cmd +aaV +cMN +qVn +ckx +ePm +ceJ +amm +cgR +cgR +cgR +cgR +ceM +tkU +ajY +chi +ajL +chK +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +axi +chD +ceJ +ahl +ahs +ahg +ceJ +cgz +anc +fcC +cgi +cfu +cfu +bta +bta +bta +bHy +bHy +aHK +aHK +aHK +aHK +aHK +aHK +bGL +bFn +bGL +bGL +bFo +bFo +bFo +bFo +bFo +eWj +eWj +eWj +vje +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +bsR +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +sqe +"} +(144,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +btF +btW +buc +eQo +csW +aSN +ctX +ctX +bBf +cta +cta +cta +cta +cta +cta +cta +cta +cta +cta +cta +auX +cvw +crH +csK +cuK +bqJ +ctZ +ctZ +ctZ +pfT +csK +crH +cqf +cpb +crW +dCg +hkc +qDj +cqH +dnd +cMN +cpL +tqh +uGc +tqh +acF +cmK +srb +srb +srb +cMN +dRu +cnI +abS +abS +cnI +dnR +abG +rlZ +rlZ +rlZ +abs +cMN +cMN +abj +cms +cmk +aaZ +aaW +cMN +tds +ckG +jkE +ceJ +cku +alX +chM +chM +chM +chM +chc +ajZ +chi +axn +chK +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +axj +adc +ceJ +bdw +fRo +nVF +ceJ +cgz +cgi +cgi +cgi +cgi +cft +bta +bta +bta +bHy +bHy +bGL +bFn +bGL +bGL +bFn +bGL +bGL +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eWj +vje +vje +bsZ +bfn +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsQ +epG +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(145,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsY +bsZ +bsZ +vje +vje +btq +vje +bsZ +btF +buc +btW +bgC +eQo +ctH +mYw +ctX +cyk +cta +cta +cta +cta +cta +ctb +cwl +cwl +cwl +cwl +cvY +eDP +eUm +cvw +crH +csK +ctM +bqw +ctL +ado +ddh +uVg +csK +crH +cqf +cpb +wyj +dCg +cru +qDj +cqG +tqe +cMN +cpK +tqh +uGc +tqh +acF +cmK +srb +srb +srb +cMN +ack +abO +abO +abO +abO +abM +cMN +cnt +abz +cmK +cMN +cMN +abl +cmA +gaY +cml +gaY +clT +cMN +uEq +ckG +izN +ceJ +amp +abe +ceO +abe +axp +ahb +aht +abe +chi +ajK +chK +ajn +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +aia +eZB +ceJ +ahA +ceO +nJL +ceJ +ePg +cfy +cfy +cfy +amY +cfu +bta +bta +bta +bHy +bHy +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bsZ +vje +bsZ +bsZ +bui +buc +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsY +epE +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(146,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +vje +bsZ +btI +buc +btW +btW +eQo +csW +iQB +csY +cyk +cta +ctb +cta +cta +cta +cta +cwl +caB +iCn +ovJ +aqg +apX +eUm +csK +csK +ctM +ado +ctM +bqw +ctM +ddi +bqx +ctw +csK +csK +uXe +cqd +dCg +cru +qDj +cqI +cpI +cnq +ail +acJ +dFl +acJ +wzA +cMN +srb +srb +srb +cMN +eQo +eQo +eQo +eQo +eQo +eQo +cMN +ade +cjt +cjs +cnq +abm +abm +cmB +nKS +oPc +iHj +clU +cMN +ePu +axP +ePn +bvh +akm +akh +ahL +ahL +ahL +ahL +chi +abe +chc +ajL +ajy +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +lSo +eZC +ceJ +eZy +ceO +nJL +ceJ +ePg +cfy +cfy +cfy +bfN +cft +afC +cfl +eQo +eWF +bHy +bHy +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eWf +eWf +bFn +bFo +bFo +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bwk +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(147,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bui +buc +buc +bta +eVJ +eDS +apQ +bBf +cta +cta +cta +cxI +cta +eQk +cwl +hzN +aqz +cwl +aqh +eDV +cvG +csM +qsu +ado +ctL +bqK +ctL +ado +cua +ctN +dFz +dFv +csK +uqK +oNX +ear +ayO +rnG +vAg +waA +cnq +cnq +cMN +cMN +cMN +cMN +cMN +cMN +cMN +cMN +cMN +cMN +lXq +iUX +jUm +cnY +cMN +cMN +abD +abA +xNG +cnq +cnq +cMN +cMN +cMN +rDu +owc +oYV +cMN +ePs +nFb +ePn +bvh +bvh +cgQ +cgQ +cgQ +cgQ +ceJ +ceJ +ceJ +ceJ +cjj +lSo +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +eZF +ahR +ceJ +ahB +eZs +sXB +ceJ +ePg +cfy +vOb +cfy +cga +bfN +jab +cfs +eQo +bgC +eWF +bHy +bFo +bFo +bFo +bFo +eWj +eWj +eWj +bFo +bFo +bFo +bFo +eWf +bGA +eWn +eWf +bFn +bFn +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +vje +bsZ +bsZ +bsZ +buM +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(148,1,2) = {" +sqe +eqU +eqU +bsF +bsH +buK +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bui +buc +buc +bta +eDS +baV +cta +cta +cta +cta +cta +cta +cta +eQb +cwl +aqF +cwL +cwl +cwo +apY +cvG +eyn +qsu +ctL +ado +ctM +cXM +ctM +ddj +ctx +dFz +dOo +dOn +cpb +bpZ +dCg +cru +cpd +koc +xcB +cqg +wjb +tnG +swb +cpp +mtB +cpb +cjs +doX +cjt +dna +qwE +fcr +vel +cjs +oNT +dna +dna +oRD +cjt +cjs +uCR +dFf +vPs +doR +clz +clW +clV +clV +qWy +clz +ePt +qWy +cjt +cjs +rnm +rnm +bHJ +alR +cjt +cjt +ois +ceJ +ajM +lSo +ajo +ceJ +cis +cis +cis +cis +cis +cis +cis +cis +cis +ceJ +eZK +eZG +eZD +ceJ +ahC +aht +eZn +cgQ +ePg +cfy +cfy +cfy +cfy +cfy +mKj +cfl +eQo +eWF +eWF +bHy +bFo +bFo +bFo +bFo +eWj +eWj +bFo +bFo +bFo +bFn +eWf +bGA +eqU +bGA +eWn +eWf +eWf +bsY +bsZ +bsZ +bsZ +bfn +buc +buc +btS +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsQ +buK +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(149,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsY +bsZ +bsZ +bsZ +vje +vje +bsZ +apn +buc +buc +buc +bta +ctX +ctX +bcy +cta +cta +cta +cta +cta +cta +eQb +cwl +btR +aqA +cwl +cwo +eDW +cvH +csL +qsu +bqw +ctM +ado +ctM +ado +ddk +ctw +dFA +dFw +csM +csw +ayZ +dph +cpz +lph +cpd +aoN +tGw +dcX +pHk +mOM +ckk +cpc +dcW +eOo +cjO +cjO +cjO +eYK +cjO +qeF +eOo +icu +dqg +cjO +mBF +ckv +gYL +ckv +cmV +fhd +cjO +kCJ +clV +clW +clW +ekm +clA +ckv +ckR +eOo +ckv +cjO +cjO +rvh +cjO +cjs +wRk +cjr +ceJ +cjk +lSo +ajq +ceJ +cis +cis +cis +cis +cis +cis +cis +cis +cis +ceJ +eZL +aib +ahP +ceJ +ahD +eZt +eZo +cgQ +ePg +cgx +cfy +cfy +cfy +etb +cft +cft +bta +bHy +bHy +bFo +bFo +bFo +bFo +eWj +eWj +eWj +bFo +bFo +bFo +bFn +eWf +eWf +bGB +eqU +bGB +eWk +eqU +bsI +epB +bsZ +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsQ +bhZ +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(150,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bup +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +btW +eQo +csW +aSN +cta +cta +cta +cta +cta +cte +cte +cvG +cwl +aqG +aqB +cwl +cwo +eDX +cvH +csM +bqR +ctL +bqO +ctM +bqw +ctM +ead +ctx +ctw +bqr +csK +cpI +cpx +vPJ +mlv +dpe +rRS +nxb +cpd +cKw +cpz +cpd +uXg +cpd +cpd +cjI +cjI +eOB +cjI +fTZ +ckT +tRT +cjI +abZ +cjI +cjI +cjI +cjI +cjI +cnc +bix +cmL +cmC +cjI +ckT +cjI +cjI +cjI +cjI +cjI +cjI +cjH +cjH +apu +wSv +wSv +cjI +cjG +dIQ +cjs +ceJ +ajN +lSo +egy +cNT +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +eZH +ahP +ahK +ahE +eZu +ahi +cgQ +ePg +cfy +cgp +cfy +cfy +cfw +cfu +cfu +bta +bHy +bFo +bFo +bFo +bFo +eWj +eWj +eWj +bFo +bFo +bFo +bFo +bFo +eWf +bFn +bGB +eqU +eqU +eqU +bhZ +epA +bsP +bsZ +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +vje +bsZ +bsZ +bsY +bsP +epB +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(151,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +bsZ +ari +bsZ +bsZ +bsZ +apn +buc +btW +bgC +eQo +ctH +mYw +cyH +cta +cta +cwB +cte +cte +ctd +cvG +cwl +qWZ +sMo +cwl +eQg +cta +eQc +csK +csK +ado +ctL +bqw +bqH +ado +bqB +ctw +ctw +csK +csK +dpo +cqd +kTL +lbr +eOO +cqJ +aye +ncl +cpM +cpA +seU +eos +ayx +ayx +rMH +axF +axY +axF +ayk +axF +ayh +axK +ayc +axF +axF +axF +axF +axF +oXy +cmM +cmM +cmC +axF +axF +axF +axF +axF +axF +axK +axF +axC +axC +new +wlF +uNL +eOB +lbD +cjz +cjs +ceJ +ajK +ajz +egy +cNT +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +lSo +ahP +ceJ +ahF +chi +abi +cgQ +ePg +cfy +cfy +cfo +cfy +bfN +cft +cfu +bta +bHy +bHy +bFo +bFo +bFo +eWj +eWj +eWj +bFo +bFo +bFo +bFo +bFo +eWf +eWf +bGA +eqU +eqU +eqU +eqU +bsG +bsH +epE +bsZ +bsZ +bui +buc +buc +bcX +bsZ +vje +vje +bsZ +bsY +bsY +bsQ +bsG +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(152,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +btW +eQo +csW +iQB +baV +cta +cta +ctb +cte +cte +cte +cvG +cwl +cwl +cwl +cwl +eQh +cta +eQb +cvw +crH +csK +ado +ctL +bqw +ctM +cYm +jyC +csK +crH +cqf +apr +crY +eOP +eOO +gDM +eOO +aDU +cxf +xLw +cpd +cpt +cpd +cpd +cpd +cjI +oRa +anX +cjI +fTZ +cjI +tAY +cjI +gag +cjI +cjI +cjI +cjI +cjI +oXy +cmM +fnR +cmC +cjI +cjI +cjI +ckT +ckT +ckT +ckT +ckT +cjI +cjI +cjI +cjI +cjI +eOB +cjH +qWy +eDd +cgQ +ajL +ajB +egy +cNT +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +lSo +ahP +ceJ +mhe +chi +ahj +ceJ +ePg +cfy +cfy +cfy +cfy +cfy +afC +cfl +eQo +bHy +bHy +bHy +bFo +bFo +eWj +eWj +bFo +bFo +bFo +bFo +bFn +eWf +bFn +eWs +eqU +eqU +bsw +eqU +eqU +eqU +bsH +epE +bsY +bsZ +bfn +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsP +bsQ +bsI +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +sqe +"} +(153,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +btW +buc +bta +eDv +ctX +baV +cta +cuX +cte +ctv +cte +cte +cxo +eQj +eQi +cta +cta +cta +cuq +eQc +cvw +crH +csK +cuL +bqL +bqC +bqC +bqC +cJa +csK +crH +cqf +cpI +cpx +kTL +eOO +eOO +cqJ +uDI +vii +dnc +cpB +lXP +nLj +soT +cpe +ckz +ckz +kAO +cox +fcJ +cox +fwE +ckz +jbt +cll +cll +cll +dmx +tfz +cnd +xpB +hav +vYc +ckz +ckz +ckz +ckz +ckz +ckz +nCU +kGV +axD +ejX +cjI +cjI +cjI +atm +urG +qWy +eDd +cgQ +ajO +chK +egy +cNT +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +aic +ahQ +ceJ +tmc +eZv +ahk +ceJ +ePg +cfy +cgi +cfy +cgb +cfy +jab +cfs +eQo +bgC +eWF +bHy +bHy +bFo +eWj +eWj +bFo +bFo +bFo +bFn +bFo +eWf +bFn +bIU +eqU +bsw +bsw +bsw +eqU +eqU +bsI +epB +bsY +bsZ +bsZ +buc +buc +btS +bsZ +vje +vje +bsZ +bsY +bsP +bsP +bsF +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +sqe +"} +(154,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsY +bsZ +bsZ +vje +vje +vje +btq +bsZ +bsZ +bui +buc +bta +eVK +ars +baV +cta +cta +cta +cte +cte +cte +cte +cta +cvv +cta +cta +cta +cta +eQc +csK +csK +dEK +ctM +ado +ctM +ado +ctM +ado +bqu +csK +csK +xZO +mKL +pnu +biA +cpt +oZS +cqv +eWU +adW +iMQ +cpj +vGQ +cpi +ryz +ePJ +cjs +cjs +cjs +lXK +cjs +cBK +cjs +xMX +kAk +ePB +ePB +cjs +dle +cjt +cmN +cAP +mUd +cjs +cjs +cjs +clX +cjs +ePs +cky +ckU +ckG +ePp +ckq +cjI +cjI +axq +weO +qWy +eDd +cgQ +ajO +lSo +egy +cNT +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +chK +ahT +ceJ +ahG +eZw +eZp +ceJ +ePg +cfy +dbS +cgi +cgi +cfy +mKj +cfl +eQo +eWF +eWF +bHy +bHy +bFo +eWj +eWj +bFo +bFo +bFo +bFn +eWf +eWf +bIV +eqU +bsw +bsw +bsw +bsw +eqU +eqU +bsG +epC +bsY +bsZ +bbH +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsY +bsP +epE +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(155,1,2) = {" +sqe +eqU +eqU +bsF +bsH +buK +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bui +buc +bta +eDS +csY +cyk +cta +cyn +cta +cta +cta +cta +cta +cta +eLj +eLj +ctb +cta +cta +eQc +csK +bta +cva +ado +dds +ddo +dPo +cAa +ctM +bqt +adn +csM +vAp +qcb +eMN +ayP +eao +kSy +hnP +dhY +rAl +wId +qia +cpi +cpj +ldl +mzv +ePn +cjs +cjs +bzI +hZH +vel +cjs +bOf +dlj +dli +dli +dlg +cnk +cjt +cmN +cmN +reP +kDW +iRr +cjs +cjs +cjt +cjt +ePr +ckV +ckG +ckw +ePm +cke +cjI +axq +weO +cjz +cjs +ceJ +ajP +ajC +ajr +ajj +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +chK +ahU +ceJ +oHb +sIz +mBN +ceJ +ePg +cfy +cgi +cgi +cgi +cfy +cfw +cfu +bta +bHy +bHy +bHy +bFo +bFo +eWj +eWj +bFo +bFo +bFo +bFn +eWf +eWf +bIW +eqU +bsw +bsw +bsw +eqU +eqU +eqU +bsG +epC +bsY +bsZ +bui +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsY +bsP +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(156,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +btq +bsZ +vje +vje +vje +bsZ +bsZ +btF +buc +btW +eQo +csW +aSN +cyk +cta +cta +cta +cta +cta +cvu +cta +eLq +eLk +eLk +bIL +cta +cta +eQc +csM +cvj +dOw +ctL +dPo +cuk +cuk +dPo +ado +bqt +bqq +csM +csx +cpx +eMO +sbx +cpd +ueO +cpN +cKa +drs +iLR +cxd +wdp +wEp +dnb +ePq +cjt +cjs +cjs +oHE +cjs +vel +cjs +vpz +cnu +wqs +cnu +dlh +jjm +tAo +cjs +cBb +oek +doQ +cjt +cjt +cjt +cjs +cjr +cjs +ePq +ePr +ckx +ePm +ckf +nJl +axq +weO +cjz +oRD +ceJ +ajK +lSo +egy +cNT +cis +cis +cis +cis +cis +cis +cis +cis +cis +dDr +drt +chK +chD +ceJ +eZz +ahu +ahl +ceJ +ePg +cfy +cgi +cfy +cfy +aaQ +cfw +cft +bta +bHy +bFo +bFo +bFo +bFo +eWj +eWj +bFo +bFo +eWf +eWf +bIX +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsH +buK +bsY +bsZ +bui +buc +buc +btS +bsZ +bsZ +vje +bsZ +bsZ +bsY +bsY +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(157,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsY +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bui +btW +bgC +eQo +ctH +mYw +cyl +cta +cta +cta +cta +cvu +aqT +cvu +eLr +cVE +cVE +eLd +eLa +cta +eQc +csM +cvk +bqQ +bqw +dPo +cuk +cuk +dPo +ctM +cXJ +bqq +eyn +cpb +cqd +cpt +cru +iKu +ePS +cpi +cpi +mrW +jLJ +vyA +coA +coA +coA +con +con +con +coA +coA +coy +rTO +coA +swU +xAr +eHJ +ckG +hBr +ckX +ckX +clD +ckW +ckW +ckW +ckW +ckW +ckW +ckW +rtB +ckW +ckW +ePs +cky +udh +ckf +eOB +axq +cjI +cjz +cjs +ceJ +ajQ +ajD +ajm +ceJ +cis +cis +cis +cis +cis +cis +cis +cis +cis +ceJ +eZM +chK +ahQ +cgQ +bIv +ahl +ahm +ceJ +ePg +cfy +cfy +cfy +cfy +cfy +bfN +cfu +bta +bHy +bHy +bFo +bFo +eWj +eWj +bFo +bFo +bFo +eWf +eWf +bFa +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +bsG +bwk +bsP +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +vje +bsZ +bsZ +bsY +bsY +epE +eqU +eqU +bsw +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(158,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bsZ +bsZ +bsZ +eVZ +vje +vje +bsZ +btI +buc +buc +eQo +csW +iQB +cta +cta +cta +cta +cvu +ara +cxy +aqR +eLs +cVE +cVE +eLe +eLa +cta +eQc +csK +eTK +bqP +ctL +ddt +dPo +ddm +ddl +ado +bqt +bqq +csL +cpI +cqd +nSB +ffA +crj +twh +mOU +cpi +ePN +kML +yfV +phm +iZG +cpY +jxJ +qYN +xXu +gwX +coC +ruj +gJt +coA +mgE +lVn +lVn +lVn +wsg +ckX +oUZ +mDC +dTB +ckW +egq +ckW +jKx +ckW +clL +idr +hPS +ckX +kVB +aJJ +ePn +ckf +eOC +axr +dYx +cjz +fNk +ceJ +ajR +lSo +aiF +ceJ +cis +cis +cis +cis +cis +cis +cis +cis +cis +ceJ +eZN +ahZ +ahV +chu +bIv +ahf +ahl +ceJ +ePg +cfy +cfy +cgj +cfy +cfy +afC +cfl +eQo +eWF +bHy +bHy +bFo +bFo +bFo +bFo +bFo +eWf +eWf +bGK +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsI +epB +bsY +bsZ +bsZ +bui +buc +buc +buc +bcX +bsZ +vje +bsZ +bsZ +bsZ +bsP +bsG +eqU +eqU +bsw +bsw +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(159,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bui +btW +bta +ctX +csY +cyH +cta +cta +cvu +aql +cvu +aqV +kfn +bCn +eLp +eLl +bBf +cta +cta +eQc +crH +crH +qsu +bqw +ddu +ado +ctM +ado +bqy +bqt +crH +crH +ayu +qze +cri +cri +cri +ePT +cpi +cpi +ePN +tae +vQX +tEs +qWL +uvl +lIP +dln +xmr +clB +iNI +lrF +vDv +con +dBa +ckG +ckG +ckG +ePn +ckW +wHL +fKg +fVN +qbB +pzE +ckW +nFU +eFH +clM +hPS +ncQ +ckX +tso +pvn +ePn +azs +weO +axr +cjI +cjz +cjt +ceJ +ajS +lSo +ajs +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +aio +chK +ahP +chu +ahH +ahl +ahn +ceJ +ePg +cfy +cfy +cfy +cfy +cfy +jab +cfs +eQo +bgC +eWF +bHy +bFo +bFo +bFo +bFo +bFo +bFn +bGB +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsG +epC +bsP +bsY +bsZ +bsZ +bui +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +aMS +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(160,1,2) = {" +sqe +eqU +eqU +bsG +bwk +asg +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +bta +eVL +cyK +cyw +bKd +cvJ +cvJ +cvJ +cvJ +cxz +cxq +cvJ +eLm +eLm +cvJ +cwp +cvJ +cvI +cvx +mKx +crH +bqD +bqD +doe +bqE +bqD +bqz +crH +crH +cLO +cpb +dqn +cri +cri +leh +ePT +cpi +cqi +iqV +coA +qzC +cpq +pEp +nAb +bpp +cMd +qVq +coE +xcN +acd +pGg +con +ePu +cnK +ckG +ckG +nYj +ckW +fLp +hQA +iUQ +ckW +uVl +ckW +jLf +ckW +vyj +idr +idr +ckX +kwq +lEx +qkI +xnl +weO +axr +cjI +cjz +cjt +ceJ +ajT +ajE +ajs +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +aio +axk +ahP +cgQ +eZx +eZx +arB +ceJ +cgI +ePf +cfo +cfy +cfy +cfy +mKj +cfl +eQo +bHy +eWF +bHy +bFo +bFo +bFo +bFo +bFo +eWf +bGA +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +bsG +epC +bsP +bsY +bsZ +bsZ +bbH +buc +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +epE +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(161,1,2) = {" +sqe +eqU +eqU +bsI +buL +ash +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bur +bsZ +btF +buc +buc +bta +eVM +eVF +cyw +cyC +cwp +cvJ +cvJ +cvJ +cvJ +cvJ +cvJ +cvJ +cvJ +cvJ +cvJ +cvJ +eQd +cqH +cvl +crH +csK +csM +csM +csM +csM +csK +crH +cpb +csN +csy +dqo +auG +crv +ofi +ePS +cpj +vgu +mHt +coA +con +lCS +con +con +gHy +lSi +gCO +vsS +con +coz +con +con +aPt +njV +wKT +wtz +cnn +ckW +ckW +uro +ckW +ckW +ckW +ckW +ckW +ckW +ckW +anH +ckW +ckW +cjs +ePq +cjt +axt +fTN +hGP +gLo +cjz +cjt +ceJ +cjl +ajF +ajs +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +axk +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +ceJ +ePg +cfy +cfy +cfo +cfy +biT +cfu +bta +eWF +bHy +bFo +bFo +bFo +bFo +bFo +bFo +bFn +eWs +eqU +eqU +bsw +eqU +eqU +eqU +bsG +bsH +epE +bsP +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +buc +buc +eWc +bsZ +bsZ +bsZ +bsZ +bsP +bwk +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(162,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +btW +eQo +cyU +cyQ +bKl +bKh +cvJ +cvJ +cxR +cxh +cxh +cxh +cxh +cwW +cvK +cvK +cvK +avj +cvK +cRS +cvl +cvb +cpb +cpI +cpI +dny +cpI +dns +dno +dnm +eUc +dnk +cqd +auB +cru +cpd +cqG +ePQ +cqj +cpO +cpC +wCQ +kpZ +qkg +lpj +qkg +dcV +qkg +cKH +sfh +kpZ +wCQ +coo +cnZ +xhK +cky +wSZ +cno +aen +cdR +dHF +deV +dHF +qja +dHF +cAG +ygP +deV +vHF +cdR +bCN +fcv +aaP +xdh +wWb +lse +lse +voJ +aUy +mwH +cgQ +ajU +ajG +ajt +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +aip +chL +ceJ +bta +bta +bta +bta +bta +ceJ +ePg +cfy +rTf +cfy +cfy +cfw +cfu +bta +bHy +bHy +bFo +bFo +bFo +bFo +eWf +eWf +bFn +bIU +eqU +bsw +eqU +eqU +eqU +eqU +bsH +epE +bsP +bsY +bsZ +bsZ +bsZ +bbH +buc +buc +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +bsH +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(163,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +btI +buc +bgC +eQo +cyZ +cyR +cvJ +cvJ +cxR +cvK +cvx +cBa +cvn +cvn +cvn +cvo +cvo +cvn +cvn +cvn +cvn +cpb +ekj +csy +cpI +cpI +csx +cpb +dnv +dnt +ryz +ryz +dnl +jXd +cpx +auB +cru +cpd +cqG +nYw +cpI +cpO +cpD +wCQ +kpZ +kpZ +qkg +kpZ +ooW +pbk +qkg +qkg +txL +wCQ +cop +bbd +uUA +xqE +ePm +tTy +qcB +cdR +dHF +dPk +dTv +deV +deV +deV +dHv +wEl +deV +tTu +fka +sCf +cfq +xdh +wWb +ciF +lse +lse +aUy +aaO +cht +chM +ajH +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +chK +ceJ +ats +aoX +aoX +aoX +atp +ceJ +ePg +cfy +cfy +cfy +cfy +cfw +cfu +bta +bHy +bHy +bHy +bFo +bFo +bFo +eWf +eWf +bIW +eqU +bsw +eqU +eqU +eqU +eqU +bsI +epB +bsP +bsY +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +buc +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +bsH +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(164,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +eQo +cyU +cyS +cyI +cvJ +eQl +cBa +cBa +cBa +qpF +cxr +cvM +cwX +cvL +cvM +bVh +apZ +cvn +cvn +cvm +cpI +dnC +cpb +bta +bta +bta +dnu +dnp +nJx +cpi +olx +hjr +cpd +crw +cpd +gEt +cpI +esI +iKI +coy +vaE +eoG +con +con +cue +kpZ +qkg +coF +con +con +con +con +qGd +cnL +ckG +ePC +cjt +ckW +ckW +ckW +ckW +uLc +dHF +dHF +fim +ckW +ckW +lCs +ida +ckW +doN +cfq +doK +cgc +tIT +eBO +tpX +gGY +cfq +cht +ceM +ajI +egy +vPS +cis +cis +cis +cis +cis +cis +cis +cis +cis +hdh +drt +axl +ahP +cgR +sPH +sPH +cgR +cgR +ceJ +aaP +eOX +eOX +ePa +cfy +bkA +cft +bta +bgC +eWF +bHy +bHy +bFo +bFo +eWf +eWz +eqU +eqU +eqU +eqU +eqU +ecR +ecQ +bsY +bsY +bsY +bsY +bsZ +bsZ +bsZ +bbH +buc +buc +buc +ejc +buc +buc +btS +bsZ +bsZ +bsZ +bsY +bsY +bsG +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(165,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +vje +vje +vje +vje +bsZ +ari +bsZ +bsZ +bsZ +bui +btW +bta +eVN +cyT +cyD +cvJ +cxM +cvn +arc +arb +cvL +vrT +kbp +kbp +kbp +kbp +ePO +cvL +cvL +gbl +cvn +cpI +eUf +eUf +eUc +cEH +eUf +ctO +dnq +cpi +cpi +ePN +bNX +cpd +ayQ +cRM +cpd +cqw +cqk +cpc +con +con +con +con +con +con +dBS +qkg +uZh +oXJ +ace +bta +mhb +coa +ckG +cnB +cnv +aqM +aKP +bta +cmX +xZG +dHF +deV +cmm +ckW +ckW +ckW +ckW +ckW +ckW +dmw +dEF +veV +aal +mBS +cjP +aal +atR +cVF +cht +chM +chK +aju +ceJ +ceJ +cis +cis +cis +cis +cis +cis +cis +ceJ +ceJ +aim +aie +axg +chi +aht +abu +chc +aha +ceJ +cfq +xdh +vfB +ePb +cfy +cfy +cfx +bta +bta +bta +eWF +bHy +bHy +bHy +bFn +eWf +eWs +eqU +eqU +bsQ +buL +bsP +bsY +bsP +bsP +bsZ +bsZ +bsZ +bsZ +bbH +buc +buc +buc +eHl +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsY +bsQ +buL +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(166,1,2) = {" +sqe +eqU +eqU +bsF +bsH +buK +vje +vje +vje +vje +bsZ +bsZ +bsZ +btq +bsZ +bui +buc +bta +eVO +cyK +bcz +cyt +cxM +cvn +ard +cvL +vrT +cwq +cwq +cwD +cwD +cwq +cwq +aqa +cvL +apR +cvn +ePK +cpj +cuz +cur +cEO +cpi +cpi +qGs +cpi +cpi +ePN +cqd +mra +cfk +cpz +cpd +cpd +cpd +tTk +dFn +dFj +dFj +dFj +dFj +con +kpZ +qkg +kpZ +oXJ +ace +bta +bEs +sMj +nWX +ckG +ckG +ePm +abx +bta +cmX +xZG +dHF +all +eAa +ckW +dEP +dEP +dEP +dEP +dEM +aal +mBS +aal +aal +aal +kvX +aal +pDq +jsW +cgQ +aij +lSo +ajv +chI +cNS +ajc +aiR +aiV +aiS +aiR +vyJ +cNP +ajq +aiw +ain +lSo +ahQ +ahL +abe +ahv +ceO +ahb +ceJ +cfq +xdh +xdh +amZ +cfy +cfy +cfy +cfo +cfl +bta +bta +qRA +eWA +bFo +bFo +bFn +bFc +bgY +ecS +ecR +bsP +bsY +bsP +bsY +bsZ +bsZ +bsZ +bbH +btQ +buc +buc +buc +baR +bsZ +bsZ +bui +buc +buc +bcX +bsZ +bsZ +bsZ +bsG +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(167,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsP +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +bta +eVP +cyC +cyJ +cvJ +cxM +cvo +cvL +cvM +cxi +nBc +cwD +cwY +cwC +cwC +aqi +aqb +cvM +cvy +cvo +eUl +cpi +cpi +cpi +cEP +cub +ctP +cty +cpi +cpi +ePN +cqd +cpd +cru +cpt +cpd +cpd +cpd +cpd +dFn +dFj +dFj +dFj +dFj +con +uru +qkg +kpZ +kUf +ace +bta +unG +jVy +auY +qFf +anT +ePn +kSt +bta +cmX +xZG +dHF +gAB +ppx +ckW +dEP +dEP +dEP +dEP +dEM +aal +ckr +ckr +aal +xWd +cjP +aal +bLG +amV +ceJ +ajV +ciL +xAg +ajl +xAg +xAg +acq +aiM +xAg +ciL +aiM +aiG +xAg +xAg +xAg +aif +ahQ +ahb +ahb +ahw +ahb +ahc +bvh +cfq +xdh +xdh +cfq +eOX +eOX +eOX +vWb +cfm +bta +bta +bta +eWD +eWA +bFo +bFo +bFn +bsP +bsP +bsP +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bbH +buc +buc +buc +buc +baR +bsZ +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsH +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(168,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +eQo +cyU +cyQ +cyv +cvJ +eQl +cvo +cvy +cxJ +cxi +cwq +cwD +cwq +cwq +aqq +aqj +aqc +cvM +gZR +cvo +ePP +cuM +cuz +eUi +cEQ +eUg +cpj +cpi +cqh +sEZ +dXu +sOS +vsX +hxN +cpd +cpd +cqx +cql +cpd +dFn +dFj +dFj +dFj +dFj +con +qHG +qkg +fVK +kUf +ace +bta +bLA +jTE +wyf +eqO +ckG +ePn +sLD +bta +cmX +xZG +deV +pKw +pMa +ckW +dEP +dEP +dEP +dEP +dEM +fzB +aal +aal +aal +rmD +cjQ +aal +cIj +cju +bvh +tfw +ajJ +ajw +ciX +aji +ajd +ciX +aiW +aiT +dTs +aiN +aiH +aiA +aix +chZ +chM +ahP +ceJ +ceJ +ceJ +ceJ +bvh +bvh +agQ +agL +agF +xdh +ags +agl +xdh +afT +cit +afD +bta +bta +eWD +eWD +eWA +bFo +bFo +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bbH +btQ +buc +buc +buc +buc +baR +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +baR +bsZ +bsZ +bsZ +bsH +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(169,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +bsZ +btq +bsZ +bsZ +bsZ +bsZ +bsZ +btF +btW +bgC +eQo +cyZ +cyR +cyD +cvJ +eQl +cvn +cvL +cwX +cxA +may +cwq +cwD +cwq +cwD +aqk +aqd +cvN +apS +cvn +cpb +ePM +eUe +cpb +bta +cpb +eUe +eUe +nSi +wFt +csz +cqd +crJ +ocS +cpd +cpd +cpz +mmz +cpd +dFn +dFj +dFj +dFj +dFj +con +wSo +qkg +kpZ +kUf +ace +bta +dZR +jxT +cYE +qFf +cky +knc +cnk +bta +cmX +xZG +deV +cmt +pMa +ckW +dEP +dEP +dEP +dEP +dEM +mBS +mBS +aal +aal +aal +cjQ +aal +dTy +lsj +bvh +bvh +ceJ +ceJ +cgQ +cgQ +cgQ +ceJ +ceJ +ceJ +ceJ +ceJ +bvh +cgQ +cht +cht +cht +cgQ +bvh +chp +ahx +aho +afK +cfq +agR +agM +agG +agz +qPF +xdh +afZ +afU +cgc +afE +eUR +bta +bta +eWD +eWB +bFo +bFo +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bbH +buc +buc +buc +buc +aZX +baR +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsZ +bwk +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(170,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsY +bsY +bsZ +bsZ +bsZ +qPG +bsZ +bsZ +bsZ +bcZ +aZX +arX +eQo +cyU +cyS +cyK +cyu +eQl +cvn +cxS +cvL +cvL +cvM +cxi +cwD +cwq +aqr +cvM +cvL +cvL +cvz +cvn +cpb +bta +bta +bta +bta +bta +bta +bta +aEx +kFO +dkm +cqd +adX +tvN +cpd +dda +cpd +cpz +cpd +dFn +dFj +dFj +dFj +dFj +con +oBu +qkg +kpZ +kUf +ace +bta +nqK +dXj +kZc +ckG +ckG +ePm +cnl +bta +cmX +mYB +deV +dHF +dqe +ckW +dEP +dEP +dEP +dEP +dEM +aal +kEm +aal +ckg +eOD +vOZ +hPr +aal +toI +doA +cfq +cfq +sQQ +sQQ +sQQ +aje +sQQ +cgr +ciy +ciy +ciy +uPF +cit +chO +avc +chN +pDq +cfq +ahI +xdh +uwC +apH +cfq +agS +agN +ddK +agA +agt +agm +aga +xdh +cgc +afF +bta +bta +arL +eWE +eWC +bFo +bFo +bsZ +bsZ +bsZ +bsZ +bbH +btQ +buc +buc +buc +buc +baR +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsZ +bsQ +epE +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(171,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsP +bsY +bsZ +bsZ +bsZ +bsZ +aNg +bsZ +bsZ +bsZ +bsZ +arC +bta +cyU +cyK +anY +cyw +cxs +cvn +cvo +cwb +fUA +cRU +cwb +avL +cwb +cwb +cRU +cwb +fUA +cvo +cvn +cpb +ctz +ctz +ctz +cqc +ctz +ctz +ctz +ePP +bZV +ePN +cpx +lAb +cwr +cpd +cpd +aaN +cpf +cpP +con +con +con +con +con +con +coT +qkg +qkg +oXJ +ace +bta +xed +bPT +ckG +nTh +seC +iwY +abt +bta +cmX +xZG +dHF +dHF +dHF +ckW +ckW +ckW +ckW +ckW +ckW +cfz +rvF +cfm +ckg +eOD +aHQ +uND +tmN +aHG +wiU +cfp +uPF +gEd +dKY +cgr +sQQ +aiY +atK +jRZ +jRZ +jRZ +sQQ +axm +chO +air +chO +axh +ahM +ahJ +ahy +ahp +sJt +cgq +cgq +cgq +agH +agB +agu +agn +cfp +cfp +afL +bta +bta +bta +cmW +dcD +btW +bcX +bsZ +bsZ +bsZ +bbH +btQ +buc +buc +buc +buc +buc +baR +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bui +buc +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsQ +bsH +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(172,1,2) = {" +sqe +eqU +eqU +bsG +aMS +asi +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btP +bek +bsZ +arD +bta +bta +cyU +cyK +cyw +eUn +cvn +awk +cpQ +cpQ +cvn +crk +avM +crk +crk +cvn +avk +csP +eOR +shl +coc +coc +cuA +cpQ +cpQ +cpQ +cpQ +cpQ +coc +csO +dcb +mcG +crk +agg +crk +cqK +dpb +fiS +cpQ +coy +gHt +rEt +con +con +tRG +qkg +lSW +coF +con +con +con +con +cjs +ePr +ckG +cnw +cjr +ckW +ckW +ckW +ckW +cmE +dHF +dHF +qNk +ckW +ckW +oww +wdW +ckW +vfB +ckA +cfq +xkn +eOD +aHQ +gOx +cjB +wRN +aEm +cjm +aHE +aHg +aHD +aEm +aEm +aHg +aHg +aHg +aEm +aEm +aHg +aEm +aGU +ais +aGv +aEE +aEE +aEE +aEE +ahq +ahd +aEE +agT +aEE +aEm +aEm +agv +amW +aEm +aEm +afM +eWJ +eWJ +afA +dol +bHy +buc +bug +btQ +btQ +btQ +buc +buc +buc +buc +buc +buc +baR +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsG +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(173,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +btP +bsZ +oPK +bur +hte +arE +gEJ +bta +cyU +eUo +ark +cpQ +cyg +cpQ +cpQ +coc +tEg +crk +avM +crk +aqH +qrA +avl +eOR +eOR +csP +coc +cuN +aAR +coc +cpQ +cpQ +coc +cpQ +ifF +eOR +pGz +gTM +crk +crx +crk +cqL +coc +qFH +cpR +cpC +wCQ +dnQ +oLe +oLe +qUT +kpZ +qkg +hPc +bsj +wwM +wCQ +coo +cob +ePF +vBC +cjA +cnp +aen +cdR +dHF +hgs +aOZ +lxz +vjU +dHF +gFv +dHF +gCv +ctr +dKc +ckH +tFt +cfq +cgc +eOD +aHQ +wyc +aEB +aHH +aEB +axo +osH +aEB +aEB +aEB +aEo +aEo +aEB +aEo +aEo +aEB +aEB +aEB +cij +ait +aGw +aEB +aEB +aEB +aEB +uGJ +aEB +agX +agU +aEo +aEB +agC +agw +aEo +aEo +afV +afN +eWJ +eWJ +hMs +bHy +bHy +buc +buc +buc +buc +buc +buc +buc +aZX +aZX +aZX +baR +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsQ +bsG +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(174,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +btP +bsZ +bsZ +qPG +bsZ +aZR +btQ +btQ +eYN +qPG +aZj +arx +bta +bta +cyL +cyx +cyo +cot +pBc +pBc +cnN +gIK +crk +aqI +crl +crl +gIK +avm +eOR +eOR +wuv +coq +coq +coq +auO +coq +coq +coq +coq +feU +eOR +fcq +dnj +crk +cRO +crl +cqM +ePR +cpQ +cpR +cpD +wCQ +vYx +dnQ +lpj +qkg +qkg +niW +wSN +kpZ +lNY +wCQ +cop +cob +ePF +cne +wkt +cnp +qcB +syq +dHF +hpg +aVz +gNz +deV +deV +deV +deV +deV +cdR +ckY +ckH +cfq +ePo +ckh +aHV +aHR +aHM +aEn +aGi +aEn +aEn +aGi +aGi +aGi +aHt +aHt +aHt +aHt +aGi +aEn +deS +aGi +aGi +aGW +aGL +aGx +aGi +aEn +aEn +aEn +ahr +aEn +agY +aEn +dEA +agI +aEq +agx +ago +agb +aEn +afO +eWJ +eWJ +afA +bHy +bHE +dpT +buc +aZX +aZX +aZX +aZX +baR +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsZ +bsQ +bsH +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(175,1,2) = {" +sqe +eqU +cuV +buc +asq +buc +btQ +btQ +btQ +btQ +btQ +buc +buc +btG +arP +bcU +arF +vxH +acZ +aru +aro +arl +ykl +cud +crn +crn +ctg +avY +crk +crl +crl +crk +gIK +avn +csA +eOR +auQ +cuO +cuO +crk +aAM +crk +crk +crk +dFB +xJe +eOR +csA +eNz +crK +crl +cKI +ePU +cnQ +dFq +dpa +con +con +kYN +con +con +con +con +con +con +con +coz +con +con +coc +ePG +cnf +ePD +cfq +ckW +ckW +nUR +ckW +ckW +ckW +ckW +ckW +ckW +ckW +uro +ckW +ckW +doO +aFq +diE +tdt +cij +cjS +xcH +cjC +cIa +vmv +vmv +vmv +vmv +diy +aHA +ajf +aiZ +aiI +aiI +aiI +aiI +aiI +aiB +cij +aGM +aGy +kEn +vmv +vmv +vmv +hxw +vmv +agZ +agV +cgr +uPF +agD +cfq +cfq +agc +cfq +xdh +bta +bta +bta +abL +eWF +dpU +baR +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsY +bsY +bsZ +bsZ +bsY +bsZ +bui +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsY +bsQ +aMS +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bsw +bsw +bsw +bsw +bsw +sqe +"} +(176,1,2) = {" +sqe +eqU +cuV +buc +asr +buc +buc +buc +buc +buc +buc +adD +arW +cQm +btW +arK +arG +vxH +arw +arv +arp +crl +iFB +awo +cry +cry +auM +aCS +csB +cul +csB +avA +avv +aCb +auZ +csB +csB +aBp +csB +aAS +cul +cul +dFE +ciY +dFC +bIC +dFt +csB +crk +crk +crk +crk +buG +cnQ +cnQ +djh +con +nAT +lKk +acG +con +xcD +con +coQ +con +wGY +kgu +aJP +con +cod +cnO +oEf +oEf +pAg +dEN +ndi +fgb +vgM +ckW +uVl +ckW +chg +ckW +fXX +dBk +mFy +ckX +jmF +kUH +diF +ePk +nEL +cjS +chP +chE +pqR +kJZ +jRZ +jRZ +vsp +jRZ +cgr +cgr +diq +dim +dim +jRZ +aiO +ciy +chv +cij +aGN +aGy +chE +ahN +jRZ +jRZ +qkB +ahe +jRZ +agW +agO +agJ +agE +agy +wUm +eOY +eOW +afP +afG +bta +bta +arL +qRA +ymd +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsY +bsY +bsY +bsP +bgX +buL +bgY +bsQ +bsY +buc +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsY +bsP +bsG +eqU +eqU +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(177,1,2) = {" +sqe +eqU +cuV +asw +ass +buc +aZX +buc +aZX +bug +adD +arY +buw +arT +arQ +arK +arH +ary +acZ +bvg +arq +arm +ulU +cuc +crn +crn +awc +avZ +cuO +avN +crk +crk +gIK +avo +ava +auU +auR +crl +crk +crl +crl +crk +cKA +bIC +bIC +dFx +dFu +csC +csa +auH +ddb +crk +buH +cnP +cnQ +cnQ +gtp +dNM +nAb +euj +kfi +xKg +con +jOp +aiD +hVp +mbk +noy +con +crX +pHo +xZf +wLy +mDR +ckW +vKq +plc +jiw +xrf +pzE +ckW +mMX +xxG +meI +meI +meI +ckX +jmF +dmv +diF +rKO +cij +uXH +chP +chF +nKg +dms +ciF +nzd +ciF +ciG +chE +chv +ciF +ciG +ciF +ciG +ciF +ayG +aqw +cij +aGN +chP +chE +chv +uzu +uzu +uzu +uzu +cgJ +cfI +cfr +cfr +cfr +abE +cfr +cfr +cfr +afQ +afH +eUR +bta +bgC +aas +twg +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsP +bsP +ecR +ecQ +eqU +eqU +eqU +ecS +buc +buc +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsP +bsY +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +sqe +"} +(178,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bbr +bsZ +buc +btH +buu +buu +arU +btW +btX +pdO +arz +bta +bta +cyL +cyy +cyp +cuF +cxT +ctB +cnS +awa +cuF +cnS +cnS +avB +vIH +cnS +avb +auV +cuF +cnS +dps +cuB +aAN +cnS +dFF +ctf +dFD +dFy +ndk +crl +crl +crL +crk +hNd +lhQ +bEj +bEj +bAD +dnO +llY +gjw +xWK +con +coY +con +vIh +con +giu +gBD +msI +con +dqh +vOe +nEa +otB +rse +tkl +rYL +bCw +oWw +ckW +xsu +ckW +aSA +ckW +wYk +aaS +gDS +ckX +jmF +diF +bKK +ePl +oFM +kdm +chP +atV +chw +doB +aXv +aXv +aXv +ciF +chE +chv +ciG +aXv +aXv +aXv +ciG +chE +chv +cij +aGM +chP +chE +chw +aFf +aFB +aFo +uzu +sQQ +atn +abE +cfr +cfn +cfn +cfI +cgh +cfr +afR +afI +bta +bta +aas +aas +oPL +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsY +bsY +bsY +bsP +bsP +bgX +bgY +ecS +eqU +eqU +eqU +eqU +bgY +buc +buc +buc +buc +baR +bsZ +vje +vje +bsZ +bsY +bsP +bsQ +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +sqe +"} +(179,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsY +bsZ +bdi +aZX +aZX +btW +arX +bua +bda +bsZ +arI +arA +bta +bgC +cyM +cyz +dFG +cum +cvB +cpQ +cpQ +aqS +avS +avO +cpQ +coc +pyQ +cqm +cvO +cvB +auS +ePZ +dpt +cuC +coc +cum +cpQ +cpQ +cpQ +cpQ +csQ +csD +crk +crk +alz +crm +buJ +djl +djj +cnP +tGc +nKt +nOY +cpk +con +con +con +cQh +cQh +con +coy +con +con +rXO +cnP +cnC +kDQ +cBC +adz +cPa +oqd +doS +ckW +ckW +ckW +ckW +ckW +ckW +clD +ckW +ckW +doP +rNA +mKl +aHn +cij +kvB +chP +chF +chw +crZ +ciM +dEC +aXv +bjf +chE +ciZ +dmh +aXv +ciM +ciM +ciF +chE +ciu +cij +aGM +aSC +chF +chw +aFO +aaE +chd +uzu +uzu +kLc +cgs +agK +cfn +cfn +cfr +cfr +cfn +cfn +cfh +bta +bta +aas +oPL +bsZ +bsZ +bsZ +bsZ +bsY +bsP +ecS +ecR +ecQ +bsQ +bsQ +buL +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bgY +bsY +buc +buc +btS +bsZ +vje +vje +vje +bsZ +bsP +bsY +bsQ +bsQ +buL +eqU +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +sqe +"} +(180,1,2) = {" +sqe +eqU +eqU +bsG +bwk +asj +bsY +bsZ +bsZ +aNg +bsZ +aZZ +aZX +aZX +btX +bsZ +bej +bta +bta +cyU +cyw +cyC +cvJ +aCT +csR +csU +cxB +csR +avT +avP +cpQ +coc +csR +amU +cvP +csR +ePF +cnQ +cuD +cnP +ePW +csR +csR +csR +csR +csp +dlp +cpQ +iCi +pET +crx +rCw +cqN +bkh +djk +dji +coq +coq +coq +auO +coq +cpS +cQB +cot +cot +cot +cot +cot +coq +ePG +cnQ +cnD +cne +ePA +ePw +ePo +ePw +cgq +iHh +cfp +cfp +cfp +cfp +clN +cfp +cfp +ckZ +ckI +ijY +cks +ckj +aHW +cjS +aGy +chE +chw +ciF +ciM +ciM +aXv +dmo +chE +aHx +dfB +aXv +dfk +ciM +ciG +chF +chw +cij +aGN +aSC +chF +chw +cgW +cgV +cgV +cgS +uzu +uzu +ePc +cfr +cfn +cfS +cfr +agf +cfn +bta +bta +bta +yaU +oPL +bsZ +bsZ +bsZ +bsY +bsP +bgX +bgY +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +ecS +buc +buc +buc +btS +bsZ +vje +vje +bsZ +bsZ +bsP +buL +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(181,1,2) = {" +sqe +eqU +eqU +bsI +buL +bdD +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +dpR +arS +bsZ +bui +bta +cyU +cyK +cyK +bKh +cwp +cyh +csS +awf +awd +csR +bta +bta +bta +bta +csR +avp +avd +csS +coe +cuD +oiz +cuD +ePW +csR +aAm +ctR +azK +csp +csp +dpp +csb +njq +fQW +crm +pNW +xCQ +cns +cns +cns +cns +cpr +cnS +cQS +cQH +cQC +cnS +alY +aOT +aOT +alY +ePI +cnQ +cnR +cne +cne +kDQ +cne +cne +slG +oBD +alY +alY +alY +cfz +wic +cfz +wic +cfz +alY +ckJ +alY +acn +vCP +aGW +dhx +dhl +chE +uUT +cjo +ciM +ciM +ciM +dmp +chE +chv +dfC +dos +ciM +ciM +ciF +chF +chv +aGW +biz +aSD +aGj +chw +awR +gHE +aFp +cgT +aEQ +cgA +sDW +cfI +bgT +cfr +cfr +rHF +bta +bta +bgC +buc +btW +buc +bsZ +bsZ +bsZ +bsP +ecS +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bgY +bsY +bfn +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bsH +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bsw +bsw +sqe +"} +(182,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btL +dpS +bsZ +btF +btW +eQo +cyU +cyQ +cyD +cxU +cvJ +eQl +csS +awg +avw +csR +avU +cwM +cwM +avC +csR +avq +ave +csS +coe +cnQ +bqS +cnQ +ePX +csR +aAn +ctR +azL +cth +csS +coc +tlx +aZc +apc +crm +oWV +vGV +cns +alY +alY +alY +alY +alY +cev +cev +alY +alY +alY +cPV +cPD +alY +coc +cof +cnQ +cnE +cnf +cne +cne +cnf +ePx +xVJ +alY +alY +alY +alY +alY +alY +alY +alY +alY +alY +alY +khW +gfr +drO +bdB +biB +chE +chv +ciF +ciM +ciM +ciM +dmq +dgb +chv +dmj +dpX +din +ciM +ciG +chF +chv +aSE +pvN +aSE +chE +chw +dmi +aad +jBL +cgT +oHW +cgB +ePd +cfr +cfr +cfr +cfr +cfn +bta +bgC +buc +btW +buc +bsZ +bsZ +bsZ +bsZ +bgY +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +ecQ +bsY +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsP +bsP +epE +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +sqe +"} +(183,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsZ +bsZ +bsZ +bsZ +ari +bsZ +bsZ +bsZ +apn +btW +bgC +eQo +cyZ +cyR +cyK +bKd +cvJ +eQl +csR +awe +awe +avw +avw +avw +adx +adx +adx +adx +avf +csR +coe +cnQ +cuD +cnQ +ePX +csR +aAo +dde +azM +ctj +csT +cpQ +cnM +crk +cKf +twT +cqM +cns +cns +cRB +dTk +dlP +cQZ +alY +efG +efM +alY +dqj +cQi +cPE +cPE +alY +alY +coc +ePH +eOX +ePE +cOI +eOX +ePy +cfq +alY +alY +dET +cMK +cMK +cNq +aPZ +aPZ +dEQ +bem +cMH +alY +cns +cgc +aSE +biB +pBh +chE +chv +ciG +dqa +dpZ +dox +dgi +chE +chv +dfD +ciM +ciM +ciM +ciF +chE +chw +bjb +biB +aSE +chE +cMn +oHW +aFC +chd +aFd +jcS +uzu +kQA +cfr +cfr +bmI +cfV +cfn +bta +buc +buc +buc +bsZ +bsZ +bsZ +bsZ +bsQ +ecS +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +ecS +bsQ +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsP +bsQ +bsH +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bsw +sqe +"} +(184,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +buj +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +buq +buc +eQo +cyU +cyS +cyK +cyC +cvJ +awp +csR +cxK +avw +avw +avV +avw +avw +avD +avw +avr +avg +csR +coe +cnQ +cuP +cnQ +ePX +csR +aAp +ctR +azN +azF +csU +azh +csc +crM +ikh +jaE +voj +alY +cRH +cRa +cRa +cRi +dTh +alY +cQT +cQI +aOT +ceX +ceX +cOF +ceX +cPp +alY +aOT +cev +kJu +cns +cns +cev +cev +aOT +alY +bep +dYc +dYk +bep +dYd +aPZ +dYe +dER +bem +bem +cMw +cns +dpC +dhE +dhy +beu +chE +chv +ciF +dqb +diB +diA +dgj +dgc +chv +dfE +ciM +ciM +ciM +biX +chE +chw +bvy +biC +beu +chE +chv +cgW +cgV +cgS +cgU +aER +uzu +ePd +cfr +bmI +cfD +cfD +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsQ +bgX +eqU +eqU +eqU +eqU +eWu +aap +bgD +eqU +bsQ +buL +bgY +ecR +ecQ +bgX +bgY +bsP +bsP +bsY +bsZ +bui +buc +btS +bsZ +bsZ +bsY +bsY +epE +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(185,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +buc +bta +cyK +cyw +cyK +cyA +cvJ +cxM +csR +awh +ady +ady +avE +avQ +avI +avE +ady +avs +avh +csR +coe +cnP +cnQ +cnQ +ePX +csR +aAq +aAb +ctC +azG +csS +azi +xhx +xaQ +cry +rMf +cqO +alY +cRh +dTl +cRa +cRa +cRa +alY +cVW +cQJ +cQD +ceX +cPs +cPW +cPF +ceX +alY +ceQ +cOX +cON +ceF +dOe +cOv +cOv +cOk +alY +cNs +cNs +cNs +cNs +cNs +aPZ +dYf +dES +bem +dYb +dEG +cns +cki +cij +cjS +chP +chE +chv +ciG +dqc +ciM +ciM +dgk +chE +chv +ciF +ciM +dfl +ciM +bje +chE +chw +bvz +cjS +aGw +anZ +chv +awR +aaB +aav +aFe +vgr +uzu +ePd +cfr +cfQ +cfD +cfA +cfA +bta +buc +buc +buc +buc +bsZ +bsQ +ecQ +eqU +eqU +bsw +eqU +eqU +eWu +eWu +bgD +evF +bsQ +bsY +bsY +bsZ +bsZ +bsY +bsY +bsY +bsY +bsZ +bbH +buc +buc +btS +bsZ +bsZ +bsY +bsQ +bsH +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +sqe +"} +(186,1,2) = {" +sqe +eqU +eqU +bsR +bsG +bwk +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +bta +eVQ +eVG +cyN +cvJ +cvJ +cyi +csp +csp +tUf +tUf +avF +avF +avF +avF +avx +avt +csp +csp +ePF +cnQ +cnQ +cuE +ePX +csR +azK +aAb +azO +csR +csR +azj +csd +crN +crn +crn +cqP +alY +alY +cRC +aOT +aOT +alY +alY +dSY +cQK +cev +ceX +cQj +cPX +cPH +clm +alY +dSV +chn +ceX +cOP +cOJ +ceS +ceS +cOl +alY +cNs +dFa +dFa +dFa +cNs +bep +dYe +bgV +bem +bem +bem +cns +cit +aHX +cjS +aHN +chE +chv +ciF +ciM +dgJ +bPd +dgl +dgd +chv +dfF +ciM +ciM +ciM +ciG +chE +chw +cij +aGO +aGw +chE +aFV +aFf +aFD +aav +aFf +aES +uzu +ePe +cfr +bmP +cfD +cfJ +cfB +eQo +btW +btW +buc +buc +bsZ +buL +eqU +eqU +bsw +bsw +eqU +eqU +bgD +bgD +eMV +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bbh +buc +buc +eWd +bsZ +bsZ +bsZ +buL +eqU +eqU +eqU +eqU +eqU +eqU +bgX +buL +bgY +ecR +ecQ +bgX +eqU +eqU +eqU +eqU +bsw +bsw +eqU +sqe +"} +(187,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btq +buj +bsZ +btF +buc +bta +cyK +eVH +cyK +cyB +cvJ +cyj +cvx +csp +csR +cwN +cwN +cwN +cwN +cws +cws +csR +csp +cpQ +auT +ePY +ePH +ePY +cus +csR +dkN +aAb +azP +csR +azw +csE +cse +hFN +eQy +cro +cqQ +efV +efU +efF +efS +cRb +cRb +cQY +efN +cPE +aOT +ceS +cQk +cPY +cPI +ceX +alY +dqi +ceX +ceS +ceF +ceF +ceS +ceS +cOm +alY +cNs +dFa +cNs +dFa +cNs +bep +dET +dEI +bem +bem +bem +cns +axu +dhF +dhz +aGw +dhe +chv +doC +ciM +ciM +bQC +dgm +dpY +cMq +dfG +ciM +ciM +ciM +ciF +chE +chw +cMo +biD +beE +dmg +aJB +aFf +aFE +aav +aFg +aET +uzu +ePc +cfI +cgd +cfQ +cfK +cfC +eQo +bgC +btW +buc +eqU +ecS +eqU +eqU +eqU +bsw +bsw +eqU +eqU +buL +btu +eMV +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bbh +buc +buc +eWd +bsZ +bsZ +bsZ +bsH +eqU +eqU +eqU +buL +bsH +bsQ +bsQ +bsQ +bsQ +bsQ +bsQ +bsQ +epE +eqU +eqU +eqU +eqU +bsw +eqU +sqe +"} +(188,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bsZ +aNg +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +eQo +cyU +cyQ +cyK +cyC +cvJ +cwp +eQn +cvx +csR +kWQ +cto +avR +avJ +cwE +avy +csR +cpQ +cuA +csR +csS +csS +csS +csR +csR +aAr +aAc +ctn +csS +csF +csE +bXQ +cqC +eQz +cqC +aPs +cev +efG +efN +cWb +ceQ +ceF +ceF +ceQ +cQL +cCu +ceX +ceS +ceS +ceS +cLN +alY +cPe +ceX +cfa +ceF +ceF +ceS +ceS +cOn +alY +cNs +dFa +dFa +dFa +cNs +aPZ +dYe +dEI +dEI +dEI +bem +alY +cit +dhG +dhz +chP +chF +chv +dmW +dfm +ciM +ciG +dgl +dpY +chv +dfH +dEB +dfm +ciM +deT +deK +deF +cij +cjS +aGA +aGk +aFW +aFf +aae +aav +aFf +aaz +uzu +ePc +cfr +cfr +cfQ +cfL +cfB +eQo +buc +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +cYO +bgU +bgU +dbv +awj +awj +awj +awj +awj +awj +awj +cYO +awj +awj +bgU +bgU +bgU +bgU +awj +awj +cYO +awj +baG +bsQ +bsH +bsQ +bsY +bsY +aXG +aRL +bsY +bsY +bsY +bsY +bsQ +bsH +eqU +eqU +eqU +eqU +eqU +sqe +"} +(189,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +apn +btW +bgC +eQo +cyZ +cyR +cyK +cyD +cvJ +cvJ +cvJ +cxL +csR +lcg +cxj +ctC +ctC +cto +dyN +csR +cpQ +csR +csR +aAT +aBf +aAT +csR +csR +cuf +dGC +azQ +csS +csF +csF +cse +cqq +ayR +cqq +cqR +dOm +dTn +dOk +cRt +dTj +dTi +dTc +ceQ +ceS +alY +alY +cQl +ceF +ceF +cPs +alY +cPf +ceX +ceS +ceF +ceQ +cOE +ceS +cOo +alY +cNs +cNs +cNs +cNs +cNs +aPZ +aPZ +dEH +dEH +bep +bep +alY +cit +cij +dhA +chP +chF +chv +ciG +ciF +ciG +dgy +cMs +cMr +dfT +dfI +ciG +dor +dik +deU +deL +deG +cVT +dcy +aGB +aGl +aFX +aFf +sWA +aav +aFf +fff +uzu +atj +cfr +cfr +cfU +atc +cfA +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsQ +eqU +bsw +eqU +eqU +eqU +asE +asE +asE +asE +cPC +asE +asE +asE +bgU +bgU +bgU +bgU +bgU +asE +dbv +bgU +bgU +bgU +bgU +bgU +bgU +bgU +awj +awj +awj +cYO +awj +bgU +bgU +awj +awj +awj +awj +cYO +cYO +eqU +eqU +eqU +eqU +eqU +sqe +"} +(190,1,2) = {" +sqe +eqU +eqU +bsG +bwk +arM +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bui +btW +eQo +cyU +cyS +cyK +cyD +cvJ +cvJ +cvJ +cxM +csR +avJ +avW +avJ +vrJ +cwF +tHf +csR +coc +csR +aBG +aBq +aBg +aAU +ctn +cun +ctT +ctR +azR +csS +cWH +cWG +cse +cqq +crz +cqq +cqS +aOT +dTo +efT +dOi +efR +efH +ceS +dSZ +efN +efI +alY +cQn +cQa +cPJ +cPt +alY +cPg +ceS +ceS +ceI +cfc +fag +faf +cOp +alY +aPZ +aPZ +aPZ +bep +aPZ +dYj +dYg +bep +bep +dYc +cMA +alY +axv +cil +cib +dhm +chE +chw +dgW +ciG +iCj +dgz +dgn +dfU +dfU +dfJ +ciW +ciG +iCj +ciG +deM +deH +aGY +cib +chQ +aGm +aFY +aFf +gTc +aav +aFf +fff +uzu +ePd +cfr +cfr +cfI +cfM +cfA +bta +eqU +eqU +eqU +eqU +eqU +eqU +bgY +ecS +eqU +eqU +eqU +eqU +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +dev +cPC +asE +asE +bbm +bbH +aRo +asE +asE +asE +asE +asE +cPC +cPC +asE +asE +asE +asE +asE +bgU +asE +cPC +bgU +bgU +bgU +bgU +bgU +bgU +eqU +eqU +eqU +eqU +sqe +"} +(191,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +btq +vje +vje +vje +bsZ +bsZ +bsZ +btI +btW +bta +eVP +cyK +cyK +bct +cyq +eUZ +cvJ +eQl +csR +csR +csR +csR +csR +csR +csR +csR +coc +csR +aBH +aBs +aBh +cuG +aAO +cuo +aAs +ctS +azK +csR +cpF +azl +cse +ayU +crz +cqq +cqS +alY +alY +dOl +dOj +ceX +efJ +efH +cQM +ceI +ceX +cVV +alY +aOT +aOT +alY +alY +alY +ciC +ceX +dOf +dOf +fah +ceS +cOq +alY +alY +dYe +dEI +dEI +cNu +dYj +aPZ +dET +cMK +bep +cMK +alY +aoz +dhH +dhB +dhn +dhf +dgZ +dgX +vmv +dgK +dgA +dgo +dge +dfV +cMp +dfv +vmv +vmv +deW +deO +chv +cim +aGP +chQ +aGn +chy +aFP +eFj +aav +dmi +aEU +uzu +ePd +cgk +cfr +cfT +cfD +cfD +bta +eqU +eqU +eqU +eqU +bgX +ecS +bsP +bgY +eqU +eqU +bsQ +buL +bsZ +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +baF +bsZ +bsZ +aRo +cPC +asE +asE +asE +cPC +eqU +eqU +eqU +eqU +sqe +"} +(192,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bui +bta +cyw +cyK +cyK +cyD +cvJ +eUZ +eUZ +eUX +cxC +cvx +avX +cvx +cvx +avG +cwt +cwc +aBV +csR +aBI +dOp +dde +alZ +cto +aAF +cuf +ddf +azS +csR +azx +rMq +csh +hoj +crA +hoj +cqT +xzV +alY +dFm +cWc +dFm +alY +efH +cQM +cQM +cQQ +dSX +cQo +ceX +ceS +ceS +ceX +ceS +ceS +cOT +cOG +cOG +fai +ceS +ceR +alY +alY +alY +alY +alY +alY +cVV +aPZ +bep +dEH +bep +dEH +alY +dhS +dhI +ayT +dho +dhg +dha +chj +dgP +dgL +dgB +dgp +dgf +dfW +chv +dfw +ciz +dfg +ciz +ciz +chx +deD +aGQ +aGC +aGm +chy +aFQ +fsJ +aav +dmi +aEV +uzu +kQA +cfr +cfr +cfQ +cfJ +cfB +eQo +eqU +buc +buc +bgX +bsP +bsP +bsP +bsQ +ecR +bsP +ecR +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bfn +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsH +eqU +eqU +eqU +eqU +sqe +"} +(193,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +btF +buc +bta +cyw +cyw +cyK +cyD +cvJ +eUZ +eVa +cvJ +cwp +eQl +cxk +csp +csR +csR +csR +csR +cus +csR +csR +aBt +ctR +ctC +csR +csR +csR +csR +csR +csR +csR +cpF +cse +cqq +duP +doY +doV +alY +alY +dEV +dEV +dEV +alY +dTd +cQV +cQM +cQE +efG +cQp +ceQ +efF +ceF +fam +cPh +ceS +cOG +fak +cOG +fai +cOy +ceR +cOj +cOf +bem +ben +ben +ben +cNm +aPZ +dYd +aPZ +aPZ +cMA +alY +dhS +aHY +ayT +dhq +dhh +dhb +dgY +ciB +dgM +dgB +dgq +aHB +aHy +dfK +dfx +ciB +ciB +deX +aHh +dif +cil +cib +aGD +aGo +aFZ +dmi +aFF +aav +dmi +aEW +uzu +ePd +cfr +cfr +aZS +cfK +cfC +eQo +bgC +btW +buc +bsY +bsY +bsP +bsP +bsP +bsY +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsH +eqU +eqU +eqU +eqU +sqe +"} +(194,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +apn +btW +btW +eQo +cza +cyV +cuI +cyE +cvd +cxE +cxE +cvd +cvd +eQe +csp +csp +aCB +ayr +aCm +csR +csR +csR +csR +aBu +ctR +aAW +csR +wfw +aAt +azT +azT +nCp +csR +siO +bmE +kgq +crB +dqH +xdt +alY +cRI +dEV +dEV +dEV +alY +dTe +cOG +cOG +efH +efH +cQq +cQb +cPK +cPu +ceS +fal +dOl +fak +cOG +fak +faj +cfa +bel +cev +cOf +bem +bem +bem +bem +dEW +dYh +dEU +dEO +aPZ +cMK +alY +axw +dhJ +dhC +dhr +dhi +dhc +ciH +ciI +elA +gDx +chj +dgg +chj +chj +dfy +ciI +elA +ciI +deP +deI +aGZ +cib +chS +aGp +chx +dmi +aFG +aav +aFh +aaA +uzu +ePc +anj +cfr +cfQ +cfL +cfB +eQo +buc +btW +buc +bsZ +bsY +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bui +buc +buc +bcX +bsZ +vje +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +aMS +eqU +eqU +eqU +sqe +"} +(195,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +bsZ +btN +bsZ +bsZ +ari +bsZ +bsZ +bsZ +bsZ +bui +bgC +eQo +czb +cyW +cuI +cuJ +bJG +cvd +cxE +cvd +cxD +cvC +csR +dkS +cto +cto +cto +ctC +csR +csR +csR +aBv +ctR +aAX +csR +aAG +cto +ctT +azU +ctk +csR +dmK +ddc +cqq +crz +dub +cqU +alY +alY +dEV +dEV +dEV +alY +dTf +cQM +cfc +efJ +alY +aOT +cev +cPL +aOT +cPo +alY +ceS +ceX +eRe +dOg +ceX +ceS +ceR +aOT +cOg +cNV +cNv +cNv +dEX +alY +bep +bep +dEH +bep +dEH +alY +dhT +dhK +cib +chQ +dhj +dhd +ciI +dgQ +ciI +dgs +dgr +chj +dlB +dfL +dfz +ciH +ciI +ciH +deP +dkY +cil +aGR +aGF +aGq +aGa +aFf +aFH +cgT +cgV +vHx +uzu +ePc +cfr +cfr +bmJ +cfA +cfD +bta +buc +buc +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +vje +vje +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsQ +bsQ +epE +eqU +sqe +"} +(196,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +eQo +cza +cyX +cuI +cuJ +baq +cvd +cvd +cvd +eQf +csR +csR +ddA +aCC +aCu +aCn +aCc +ctC +csR +csR +ctl +ctR +aAY +csR +aAv +aAu +ctC +ctl +ctl +csR +voV +csi +hoj +crA +eRy +ayD +xzV +alY +dEV +dEV +dEV +aOT +ceS +ceQ +ceQ +ceX +alY +cQr +cQc +cPM +cPv +alY +alY +efJ +cOU +cfc +cfc +ceX +ceS +cOs +alY +cNv +cNw +cNv +cNw +cNv +alY +dYi +bep +bep +bep +bep +alY +dhU +dhL +axs +chQ +chG +dhd +ciH +dgN +dgN +dgC +dgs +div +chx +dfM +ciH +dfn +dfh +ciI +aHi +deJ +cil +aGR +aGG +aGq +chz +aFR +chd +aFs +cgW +uOj +uzu +ePc +cfr +cfY +cfD +cfA +cfD +bta +buc +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bui +buc +buc +btS +bsZ +bsZ +vje +vje +vje +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsG +eqU +sqe +"} +(197,1,2) = {" +sqe +eqU +eqU +bsS +bsI +buL +bsZ +bsZ +bsZ +bsZ +bsZ +btN +bsZ +bsZ +bsZ +bui +buc +bta +eVR +cuJ +cuI +cuJ +cuI +bHz +cvd +cvd +eQf +csR +aco +aCG +cwO +aCv +aCo +ctC +aBW +csR +csR +aBw +bbv +aAY +csR +dkP +dkO +ctn +ctl +csR +csR +azm +eRH +cqq +eRC +dnh +cqS +alY +alY +dEV +cCB +cCB +aOT +ceX +efP +cQO +efK +alY +cQq +cQd +cPN +alY +alY +cPi +efJ +efH +efR +efG +eQZ +cOA +cOt +alY +cNv +cNW +cNE +cNw +cVV +alY +alY +dFc +dFc +dFc +alY +alY +lkt +dhM +dhD +chQ +dfp +dhc +ciI +dgR +ciN +dgD +ciI +diw +chx +ciH +ciN +dfo +etD +deY +deQ +chz +aHa +ayT +aGG +axB +aGb +aAV +cgW +cgU +aFi +vkY +uzu +ePc +cfr +bnw +cfA +cfA +cfA +bta +buc +buc +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bfn +buc +buc +btS +bsZ +bsZ +bsZ +vje +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsH +eqU +sqe +"} +(198,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +bta +eVS +cuJ +cuJ +cuJ +cuJ +baq +cvd +cvd +avi +csS +aCO +aCH +aCD +aCw +cto +aCd +cto +csR +csR +aBx +aBi +aAY +csR +cto +aAw +aAd +azV +csS +azy +azn +dpk +eRF +eRB +dpK +eRw +alY +dEV +cCB +cCB +cCB +aOT +dTg +ceQ +ceX +efL +alY +cQs +cPR +cPO +cPw +alY +cPj +cPb +ceX +eRf +efN +alY +alY +alY +alY +cNW +cNX +cNM +cNL +cVV +alY +dEV +dEV +dEV +dEV +dEV +alY +dmu +dhN +cib +dhs +chG +dhc +ciH +dgS +dgO +dgE +ciH +div +chx +dir +ciN +ciN +dop +deZ +chG +dlA +aHa +cKu +aGH +aGr +aGc +awR +aaD +aaD +aFk +aaB +cgA +atk +cfr +bmI +cfW +cfJ +cfB +eQo +btW +btW +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsP +bsH +eqU +sqe +"} +(199,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btF +buc +btW +bta +cuJ +cuJ +cuJ +cuJ +cuJ +baq +cvd +cvd +eQf +csS +aCP +cto +fuw +aCx +cwe +aCe +ctC +csR +csR +ctC +aBj +aAZ +csS +cto +aAx +cto +azW +csS +azz +eRJ +dpj +eRE +eSM +dpL +ayE +alY +cVV +alY +alY +cVV +alY +alY +cCw +ceX +alY +alY +cQt +cQe +cPP +cPx +alY +ckm +cQE +ceX +cPh +dOh +bta +cOB +els +els +cOh +cNY +ceF +cNF +dEY +dEV +dEV +dEV +dEV +dEV +dEV +alY +ckn +dhO +dpu +chQ +chG +dhc +ciI +ciN +ciN +etQ +dgt +chG +dfY +ciH +ciN +ciN +ciN +ciH +chH +chx +aHa +aGS +aGI +chH +chz +dmi +aFI +aFt +aFl +cgK +cgA +ePc +cfr +cfQ +cfA +cfK +cfC +eQo +bgC +btW +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +buc +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bwk +eqU +sqe +"} +(200,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsY +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +btI +btW +btW +eQo +cza +cyV +cuI +cuJ +cuI +bJB +awl +cvd +eQf +csR +ctC +aCJ +cwP +bta +cto +aCf +aBX +aBP +aBJ +cuf +ctR +aBa +kGY +aAH +aAy +aAe +azW +csS +eOS +azo +dpj +ayV +crz +dpf +cqS +cQD +eRu +cRm +cRm +cRo +cRe +cQD +ceQ +cQP +cQF +cQq +cQu +cPQ +cPQ +cPy +alY +cPl +ceS +eRi +efH +efU +bta +cOB +els +els +cOi +ceI +ceI +cNG +dEZ +dEV +dEV +dEV +dEV +dEV +alY +alY +ckl +cin +dpv +dht +doE +dhc +dlC +ciN +dmU +etD +dgu +aHC +chx +dfN +etI +dkZ +dfi +ciI +chH +chx +cin +biF +bfi +chH +die +uzu +uzu +uzu +uzu +uzu +uzu +ePc +cfS +bmP +ath +cfL +cfB +eQo +btW +btW +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bfn +buc +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsZ +bsY +bsQ +epE +eqU +sqe +"} +(201,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsP +bsZ +bsZ +bsZ +vje +bsZ +btL +bsZ +bsZ +bsZ +buq +bgC +eQo +czb +cyW +cuJ +cuJ +baq +cvd +cxV +cvd +eQf +csR +aCQ +cto +cwP +bta +aCp +cwd +cvR +aBR +aBK +aMY +aBk +ctl +fKk +aAI +alZ +ctC +csp +csp +dmL +dpq +csj +dpK +eRC +dpg +dpd +cev +eRu +cRm +cRw +cRo +cRf +cev +ceQ +efO +aOT +cQx +cPP +alY +cPQ +cPz +alY +dSW +ceS +ceX +efH +dqf +bta +cOB +els +els +eTW +cNZ +ceI +cNG +dEY +dEV +dEV +dEV +dEV +dEV +alY +alY +axx +dhP +biJ +biJ +diD +dhc +ciI +dgT +ciN +dgF +ciI +chH +chx +dfO +dfA +dfh +dpV +dfa +dih +aHc +biJ +biJ +bfj +chG +aFZ +atr +chj +ipR +cgX +cgL +cgC +ePc +cfr +cfr +cfQ +cfA +cfA +bta +buc +buc +bsZ +bsZ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsZ +bsY +bsY +bsZ +bsZ +bsZ +bsY +bsY +bsY +bsZ +bsZ +bfn +buc +buc +bcX +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsY +bsY +bsQ +bsQ +bsQ +bsH +eqU +eqU +sqe +"} +(202,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsP +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bui +buc +eQo +cza +cyX +cuI +cuJ +baq +cvd +cvd +cvd +eQf +csR +cxl +aCK +cwP +bta +aCq +bYf +ctk +aBS +aBL +aBy +ctS +ctE +aeN +iCp +aAz +aAf +csS +ctm +azA +dpr +cse +dpK +dmJ +dmI +cqS +aOT +eRv +cRn +cRx +cRp +cRg +aOT +efN +cQR +cQF +cQy +cPP +cQf +cPR +cPA +alY +ceS +cQE +cOV +eRg +ceS +bta +cOB +els +els +eTX +ceI +ceI +cNG +dEZ +dEV +dEV +dEV +dEV +dEV +alY +alY +ckl +dhQ +edu +biJ +chH +dhd +ciH +ciN +ciN +dgG +dgv +chH +diu +ciI +ciN +dfq +dpW +dfb +chG +chx +biJ +biJ +bfj +chH +chz +chj +cgX +atq +cgC +cgC +cgD +cgt +cgm +cgf +ati +cfN +cfD +bta +buc +buc +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bsQ +bsQ +ecQ +bgX +bgY +bsP +bsP +bsY +bsY +bsY +bsZ +bui +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsY +bsP +bsP +bsQ +epE +eqU +eqU +eqU +eqU +eqU +sqe +"} +(203,1,2) = {" +sqe +eqU +eqU +bsH +buK +asl +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bui +btW +bta +cuI +cuJ +cuJ +awt +baq +cvd +cvd +cvV +eQm +csR +dlu +ctC +cwP +bta +cwu +aCi +cto +aBT +aBM +aBz +ctR +azK +fKk +ddn +cto +cto +csp +csp +azB +azp +aza +ayW +crC +crp +eRx +alY +cRf +cRo +cRy +cRo +cRf +alY +cVX +efM +cPo +dlk +cQv +cPP +cPS +cPz +alY +eRc +eRc +cOV +eRh +eRc +bta +cOB +els +els +eTY +ceQ +ceF +cNG +dEZ +dEV +dEV +dEV +dEV +dEV +alY +alY +dhV +dhR +aRT +dhv +chH +dhd +ciI +ciN +ciN +ciN +ciI +dih +chz +ciH +ciN +dfo +ciN +dfc +aHj +chx +deE +biL +aGJ +chH +aGd +jez +jez +jez +jez +cgN +ato +jez +jez +jez +jez +cIC +cfA +bta +buc +buc +bsZ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +bsY +bsZ +bsY +bsZ +bsY +bsP +bsP +bgX +bgY +eqU +eqU +eqU +eqU +bgX +buL +buL +bsP +bsZ +dib +eWb +buc +btS +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsY +bsY +bsQ +bsQ +bsQ +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(204,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +bsZ +bui +buc +bta +eVC +cuJ +cuJ +cuJ +baq +cvd +cvd +cxE +cvT +csR +aNe +dOr +cwP +bta +qcc +cwe +cvR +aBU +aBN +ctk +aBl +ctC +aAP +aAJ +aAA +cto +azV +csS +azC +azq +azb +cpG +cpv +cpv +cqV +alY +cRf +cRo +cRz +cRq +cRe +alY +cCx +cOR +alY +cQz +cPQ +cPQ +cPT +cPB +alY +eRd +cPc +aOT +eRd +eRd +alY +alY +alY +alY +cOc +cOb +cNQ +dFb +cVV +alY +dEV +dEV +dEV +dEV +dEV +alY +dpD +dpx +cib +doG +doD +dhd +ciH +ciN +ciN +dfn +dov +dix +chx +dit +ciN +ciN +doq +ciI +chG +chx +cil +cia +chS +chH +bfe +jez +aFJ +aEu +jez +jez +jez +jez +aEs +aEr +jez +cfJ +cfB +eQo +btW +buc +bsZ +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsP +bsY +bsP +bsY +bsQ +bsQ +ecR +ecQ +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsQ +bsY +bsZ +bui +buc +buc +bcX +bsZ +bsQ +bsY +bsP +bsP +bsP +bsP +bsQ +bsQ +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +sqe +"} +(205,1,2) = {" +sqe +eqU +eqU +bsS +bsI +buL +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +bta +eVT +cuJ +cuI +cuI +baq +cvd +cvd +cxE +cvT +csR +aCc +aCL +fuw +aCh +aCr +aCj +ctC +csR +csR +cto +cuR +aBb +csS +aAK +ctC +aAg +azV +csS +eRK +eRK +azc +eRG +eRD +eRz +dmG +alY +alY +cRr +cRA +cRr +cRf +alY +efQ +ceX +alY +cQA +cQg +cQg +cPU +alY +alY +cPm +cln +cOW +cOS +cln +cOH +cOC +cOu +alY +alY +dFe +cNR +alY +cVV +alY +alY +alY +alY +alY +alY +cns +ckn +cim +cib +doH +chH +dhd +ciI +dgU +ciN +dgH +diz +dix +chz +ciH +ciN +ciN +ciN +ciH +deR +atw +cil +cia +chS +chG +chz +jez +aEt +aEs +aFm +aEX +aEM +aEF +aEC +aEs +jez +cfK +cfC +eQo +bgC +btW +buc +bsZ +bsZ +vje +vje +bsZ +bsZ +bsZ +bsY +bsQ +bsQ +bsQ +buL +bgY +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsQ +bsO +buc +buc +buc +buc +bsO +bsQ +bsQ +bsQ +bsG +bsQ +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +sqe +"} +(206,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsP +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +apn +buc +btW +eQo +cza +cyV +cuJ +bam +bJB +cvd +cxE +cxN +cvT +csS +aCP +cto +aCE +aCy +cwg +cwg +aBY +csR +csR +cvc +ctR +ctp +csR +aJM +cto +cto +azV +csS +eOS +azr +azd +onP +ayS +ayI +ayF +dmD +alY +cRf +cRe +alY +alY +alY +cev +kJu +alY +alY +aOT +aOT +alY +alY +cmO +cPn +cPd +ePz +axX +cOO +ePz +ePz +cln +cmO +alY +dFc +dFc +alY +cNo +cev +cNc +alY +alY +alY +cns +ckt +axy +cil +cib +doI +chG +dhd +ciH +dgV +ciN +dgI +ciH +div +dga +dfP +ciH +dfr +dfj +dfd +deP +die +cil +cia +chS +chG +chz +jez +aEs +aFu +aFn +aEZ +aEN +aEG +aEu +aEt +jez +cfL +cfB +eQo +buc +buc +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsZ +bsY +buL +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsO +bsO +epT +epT +epT +epT +bsO +bsO +buU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(207,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsP +bsZ +bsZ +vje +yfm +bsZ +bsZ +bdd +bsZ +bsZ +buq +bgC +eQo +czb +cyW +baq +cyF +cvd +cvd +cxE +cxE +cuv +csS +aCR +ayr +cwQ +aCz +aBs +cRT +aBY +csR +csR +aBA +aBm +ctp +csR +dkQ +aZW +ctn +ctn +csR +csR +dpP +csf +cqq +crz +cqq +cqW +cqA +cns +cns +cns +alY +doZ +dpE +diK +cln +diW +diM +diM +diN +alY +alY +diW +diM +diM +diM +diT +diR +diN +diM +anV +cln +eQQ +eQN +dFd +cln +cln +qlM +ckB +dlM +alY +alY +cns +cgC +cko +cil +cib +doJ +doF +dhd +cbl +ciH +ciI +ciH +ciI +dgh +chx +ciH +ciI +dfs +dfd +dfe +deP +don +cil +cib +chR +chG +chz +jez +aEu +aEu +aEs +aEs +aEu +aEu +aEu +aEu +jez +cfO +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsY +bsQ +bgX +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsO +bsY +buc +buc +bsY +bsO +bsP +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(208,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bsZ +vje +vje +vje +bsZ +bsZ +bsZ +apn +buc +btW +eQo +cza +cyX +cuJ +bal +cvd +cxE +cxE +cxE +cuv +csR +csR +aCM +aCk +aCA +aCs +aCk +aBZ +csR +csR +aBB +cuR +cuH +csR +aAL +baW +aAh +wFN +dlq +csR +csG +csk +dpL +crD +cqq +cqq +cqB +cpF +dmB +dFo +ayA +clp +dpF +clY +coZ +diX +djf +diM +djb +ckB +ckB +diX +clO +diN +diV +diU +diM +diM +diM +cmY +ePv +eQR +eQO +cln +cln +clY +cNp +axN +cMW +axH +dlG +dlF +dlD +aIc +cil +cib +chQ +aHI +chj +dff +dff +dff +dff +dff +cjd +dml +dff +aHu +dft +dff +dff +chj +dmT +dom +cib +chR +axB +chz +jez +chk +aFv +cgu +cgu +cgu +cgu +bAm +aEv +jez +cfO +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bgY +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +buM +bsY +buc +bsY +bsP +bsP +bsP +buL +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +bsw +sqe +"} +(209,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +bta +eVU +cuJ +cuI +bJB +cvV +cvd +cxZ +cxE +arj +cxt +csR +aCN +aCF +dkR +aNd +aCl +csR +csR +csR +aBC +cuR +qhi +csR +ctT +aAB +cto +cto +cto +csR +csG +aze +crO +crD +cqC +cqq +cqC +cqn +cpT +dmy +cpu +clo +clo +ayy +aIT +ays +djg +ayp +clo +cmF +cmF +clo +diO +diO +clo +axV +diO +diO +diL +eQX +eQV +eQS +cld +cld +eQK +clo +clo +clK +clK +dlI +dlH +aIj +aIf +aId +cil +cib +chQ +dhk +aHk +atQ +aHp +aHp +dmr +dgw +aHp +dmm +dfR +dfu +dfu +aHp +ciB +aHk +oIx +dom +cia +chQ +aSz +chz +jez +abK +lbR +exB +exB +exB +exB +aED +abK +jez +atd +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bgY +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +bwk +bsY +buc +bsY +bsP +bsP +bsP +aMS +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +sqe +"} +(210,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +btW +bta +eVV +cuJ +cuI +bHz +cvd +cvd +cvd +cxE +cxE +cuv +csp +csp +aco +aco +aCt +csR +csR +csR +csR +aBA +aBn +aLQ +csR +dTw +aAi +aAi +azX +waX +csR +cqz +azf +cKx +cqq +cqC +cqX +cqo +aJt +aJj +aJj +aJj +reM +yfj +aJa +aIV +ayw +cla +cla +cla +cla +cla +cla +cla +bRR +bRR +bRR +bHf +cmZ +cmZ +cmZ +auJ +eQT +cmn +cmn +eQL +cla +eQG +clb +cla +dlJ +aIo +aIk +aIg +aId +cjZ +cic +dhw +cic +cic +cic +doz +dgx +eOz +eOz +dmn +cic +dmk +cic +cic +cic +aHm +aHd +doo +aHb +cic +aGK +chH +chz +xEB +abK +abK +cDq +cgE +cgE +gph +abK +abK +jez +cfJ +cfB +eQo +buc +buc +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bgY +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +buL +bsY +buc +buc +bsY +bsP +bsP +buK +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsw +bsw +bsw +sqe +"} +(211,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +buq +bta +eVV +cuJ +cuI +baq +cvd +cvd +cvd +cvd +cvd +awb +cut +csp +csR +csR +csR +csR +cvS +csR +csR +dOq +ddw +aBc +csR +csR +csR +csR +csR +csR +csp +dpQ +csf +crO +cqq +cqq +cqY +cqp +cpU +cqq +dmI +cqC +aJh +yfj +aJa +aJa +reM +cmu +cmu +cmu +clE +clE +cmu +clE +bLu +bLu +bLu +bLu +cmu +clE +clE +eQH +eQU +eQP +cmn +eQL +clE +aIr +eQH +bRI +clE +aIp +aIl +aIh +aId +aHZ +sIg +chQ +ciO +ciO +ciO +ciO +ciO +ciO +aHe +ciO +ciO +ciO +ciO +ciO +ciO +aHe +aHe +aHe +aGZ +cid +chR +chH +chA +xEB +cgg +abK +akR +abd +aEO +gph +abK +cgg +jez +cfK +cfC +eQo +bgC +btW +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bgY +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +aMS +buc +buc +buc +buc +bsP +bsP +buM +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(212,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btM +buc +eQo +bta +cyV +cuJ +baq +cvd +cxO +cvd +cvd +cvd +cvd +cxm +cvr +eQa +avH +eQa +cwh +cvC +csR +aBO +aBD +cuR +aBc +ctn +ctl +aAC +cto +azY +csR +csp +csH +azg +crO +cqq +cqq +cqq +cqq +cpU +aJo +aJk +aJk +reM +aJe +cmu +acB +acv +wOu +acl +pKx +cme +cmf +cmf +cme +cnT +cmu +cmu +cla +cla +cmu +cla +eQI +eQU +ehI +cmn +eQL +cla +eQG +eQI +cla +dlK +aIo +aIm +aIi +aId +cil +sIg +chQ +civ +civ +civ +civ +doy +doy +dow +cjb +cjb +civ +civ +civ +civ +civ +civ +civ +cin +aGT +chT +chH +chx +xEB +aFK +abK +rVH +aFa +aCU +axU +aiq +jez +jez +cfL +cfB +eQo +btW +btW +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsQ +bgY +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +buK +buc +buc +buc +buc +bsP +bsP +bwk +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +sqe +"} +(213,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +buq +bta +eQo +czb +cyW +cuJ +cuI +cxO +awq +cCg +cvd +cvd +cvd +cvd +cvd +cvd +eLf +cvV +cvd +eQe +csR +cvp +ctk +ctS +aBd +aAQ +cuo +ctE +ctU +azZ +azH +csS +azt +cqD +crP +crE +crq +cqZ +dmE +ejd +ayC +gRD +are +ayz +clp +aJc +acC +acw +acs +acm +vLw +pRI +cmf +cmf +cmu +cmu +cmG +cmG +cmG +cmG +clp +dlN +eQW +cmG +hnS +ehG +eQM +sWo +dlO +tOG +dlN +axI +ckK +aIn +weS +axz +uOr +cjT +cjJ +cjD +aHw +cja +cja +aHF +aXA +aXA +aXA +ciA +dot +ciA +ciA +ciA +ciA +ciA +mES +sIg +sIg +chQ +aSB +aGf +jez +jez +aFw +abK +cgg +abK +aEI +aiq +jez +aEp +cfP +cfA +bta +buc +buc +buc +bsZ +vje +vje +vje +bsZ +bsZ +bsP +bsH +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +buM +buc +buc +buc +buc +bsP +bsP +bsH +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(214,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +bsZ +bsZ +ari +bsZ +bsZ +bsZ +bsZ +bsZ +buq +btW +eQo +bta +cyX +cuJ +cuI +cuI +awr +cya +cxO +cvd +cwv +cxE +cxa +eBL +eLg +bHz +cvd +eQf +csR +cvq +aBE +cto +cto +cto +cup +ctC +ctR +ctC +azI +csU +csI +csl +ayY +crF +ayJ +cra +dmF +dmC +avu +ayB +cpw +aJi +clo +axE +clo +acx +cmu +cmu +cmu +cmu +doU +clo +cmu +cmu +auP +clo +axV +clo +eQY +clK +eQS +jeT +fJQ +cmf +clF +ehC +clF +eQJ +vBx +dlL +bok +ckC +dlE +chx +cil +cib +chQ +cjE +chx +edq +ciB +edo +aHp +aHp +aHp +aHz +aHp +aHp +dio +ciP +aHp +ciB +oIx +chU +chU +chU +gDx +oIx +ciH +jez +aFx +abK +abK +cgg +abK +cgg +jez +aEp +cfO +cfA +bta +buc +buc +bsZ +bsZ +vje +vje +vje +bsZ +bsY +bsP +aMS +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bwk +buc +buc +buc +buc +bsP +bsP +aMS +eqU +eqU +bsw +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(215,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +bta +bta +cuJ +cuJ +cuJ +cyr +cuI +cyb +cvd +cvV +cxE +cxE +cvd +eLn +eLh +eLb +eKZ +bXS +csR +csR +aBF +aBo +aBe +csR +csR +cto +ctS +ctE +ctp +azD +azv +csl +ayY +crF +ayK +dmH +dcZ +ckE +aJp +cmR +aJl +ckE +cma +cma +ckE +ckE +ckE +ckE +ckE +ckE +ckE +ckE +doT +doT +doT +doT +cmR +ckE +ckE +ehv +ehv +ckE +ckE +ehE +ehE +ckE +ckE +ckE +ehv +ehv +dbB +dbB +doL +chx +cin +auh +dht +egV +chx +edr +ciI +ciI +ciI +ciI +edi +ciI +cig +cio +cgF +uEK +xEB +jez +jez +cgF +biS +cgF +jez +ciH +ciH +jez +aFy +aAk +cgg +non +non +non +jez +jez +cfO +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +vje +vje +bsZ +bsY +bsP +bsG +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsH +bsY +buc +buc +bsY +bsP +bsP +buK +eqU +eqU +bsw +eqU +eqU +bsw +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(216,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +btW +bta +bta +bta +cuJ +cuJ +cuJ +cuI +cuI +bHz +cvd +cvd +cvd +cvd +eLo +eLi +eLc +cvd +cvD +cvC +csR +csS +csS +csS +csR +csR +aAD +ctV +aAa +azJ +csU +crb +cqE +crQ +crG +crr +crb +cqE +ckE +ehV +ehV +ehV +cma +ein +eim +ckE +cmg +aIS +ehJ +cmg +ehL +aIb +cmR +cmR +doT +doT +cmR +ehV +aIw +ehL +aIb +cmg +ehL +ehJ +nZr +ayn +bvq +cpm +ayn +clq +ayg +ehq +eho +auw +oIx +aus +auj +aHO +chH +chx +ciI +edp +edb +ecX +ecX +edj +ecZ +chW +edb +ecZ +ciQ +axR +axM +aHf +aak +tsg +aak +jez +jez +jez +jez +aFz +cgg +abK +cgF +yfK +cgo +aEw +jez +ate +cfB +eQo +buc +buc +bsZ +bsZ +vje +vje +vje +bsZ +bsY +bsP +bsH +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aMS +bsY +buc +bsY +bsP +bsP +bsP +buM +eqU +eqU +bsw +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(217,1,2) = {" +sqe +eqU +eqU +bsG +aMS +asm +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +hzU +ari +bsZ +bsZ +bcB +btW +bta +bta +bta +cuJ +cuJ +cuJ +cuJ +cuJ +bbT +cve +bHz +cvd +cvd +cvd +cvd +cvd +cvU +cvD +cvr +eQa +cuT +arr +cut +csR +aAE +ctk +cto +ctq +csS +crb +eiC +eiR +crG +crr +crb +cqE +ckE +cmR +cmR +cmR +eip +adh +adh +ckE +bVJ +aCW +aIq +aHP +ehM +aIK +cmR +aIz +aIy +cmR +cmR +aIy +aHP +aCW +aIq +nZr +aCW +aIq +nZr +coH +cls +cls +cls +ayl +ayi +axZ +axT +awO +aus +deE +auk +aud +atY +chx +edb +ecX +edc +cCi +cCi +cCi +eda +ecX +edc +eda +ecX +ecT +aHl +ciw +cio +cie +tsg +aGs +aGg +mOW +aFL +cgg +cgg +cgg +cgF +aEJ +awN +aau +jez +atf +cfC +eQo +bgC +btW +buc +bsZ +vje +vje +bsZ +bsZ +bsY +bsP +bsG +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +buK +bsY +buc +bsY +bsP +bsP +bsP +bwk +eqU +eqU +bsw +bsw +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(218,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +buc +bta +bta +bta +cuJ +cuJ +cuI +cuJ +cuJ +cuJ +cuJ +bbE +bbE +bHz +cvd +cvd +cvV +cvd +eHO +eBL +cuI +cuI +cuu +csR +ctn +aAl +ctF +csp +csp +crb +cqE +crQ +ada +crr +eiF +cqE +ckE +cmH +eiq +eiq +ckE +cma +adi +ckE +aaX +aaX +aIq +aIq +aIq +aIq +aIq +aIC +aIE +cmR +cmR +aIy +aIx +aIq +aaX +aaX +aaX +aaX +aaX +aIq +aIq +aIq +ayo +clh +aIs +ayd +ehp +axG +aFU +cil +sIg +chS +chH +chx +eds +cCi +cCi +cCi +cCi +cCi +cCi +cCi +cCi +cCi +cCi +ecU +aaK +dLo +aaK +aaK +aqX +aaH +abK +abK +ahX +cgg +abK +aFb +aEP +aEK +xAJ +aEy +jez +atg +cfB +eQo +buc +btW +bsZ +bsZ +vje +vje +bsZ +bsZ +bsY +bsP +buL +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +buM +bsY +buc +bsY +bsP +bsP +bsP +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(219,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +btL +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bui +btW +bta +bta +bta +eVB +eVC +cuJ +cuJ +cuI +cuJ +cuI +cuJ +cuI +ekk +ekk +cxO +auW +cvs +cuI +cuI +cuI +eUj +csR +csR +csR +csR +csp +csV +crb +cqE +crQ +ada +acX +eiF +cqE +ckE +aaX +aJm +aIq +aIq +aIq +aaX +aaX +aaX +aaX +aIq +aIq +aIq +aIq +aIq +cmR +aIE +cmR +cmR +aIy +cmR +aIq +aIq +aIq +aIq +aIq +aIq +aaX +aIq +aaX +aaX +clh +ayj +ayf +axW +axO +aus +cin +civ +bfi +chG +chx +eds +cCi +cCi +cCi +cCi +cCi +cCi +cCi +cCi +cCi +cCi +ecV +vtG +aaK +mdz +mdz +chV +aaH +chB +chq +aFM +cgg +cgg +abK +non +aEL +pVQ +aEz +jez +cfO +cfA +bta +buc +buc +bsZ +bsZ +vje +bsZ +bsZ +bsZ +bsP +bsQ +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +eqU +eqU +eqU +eqU +bwk +buc +buc +buc +bsY +bsP +bsP +buM +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(220,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +buc +btW +bta +bta +bta +eVD +eVB +eVA +cuJ +cuJ +cuJ +cxO +ekk +ekn +ekl +cyb +ekk +cxO +cuJ +cuI +cuI +eRT +eRO +eRQ +eje +eje +eRO +eRM +crb +eOQ +eiR +eiM +crr +crb +cqE +eiy +aIq +aaX +aIq +aaX +aHL +aIq +eRm +aIq +aIq +aIq +eRm +aIq +aIq +aIq +cmR +cmR +cmR +aIz +aIy +cmR +aIq +aIq +aIq +aIq +aaX +ayq +clG +ayq +ayq +ayq +ckE +cma +ckL +ckE +dTu +aHw +aHO +aus +egZ +chG +chx +ede +ecY +edd +cCi +edl +ecY +ecY +ecY +edd +cCi +cCi +ecW +chV +chV +cip +cif +aak +aaH +abK +aFS +cgg +abK +abK +aFc +non +aEK +xAJ +aEA +jez +cfO +cfA +bta +btW +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +aMS +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +buM +buc +buc +buc +buc +bsP +bsP +bwk +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +sqe +"} +(221,1,2) = {" +sqe +eqU +eqU +bsS +bsH +buM +bsZ +bsZ +bsZ +bsZ +bsZ +fXj +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +buc +btW +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +cuI +cuI +cuI +eUk +eRS +eRR +eRP +cqz +iHk +eRN +eRL +eOQ +eiR +crG +crr +crb +cqE +doT +doT +aJx +aIq +aaX +aIq +aIq +aIq +aIq +aIq +aIq +aIq +eic +aIq +aHP +aII +cmR +cmR +cmR +aIy +cmR +ehM +ehP +aHP +aCW +cmv +aCg +eRj +axQ +axQ +ayt +cma +clf +ehr +cma +chG +chz +cka +ehb +dhv +chG +chx +ciI +ciI +ede +ecY +edm +ciI +chj +cif +ede +ecY +ecY +aHq +act +act +aak +aak +aak +aGt +aGh +aFT +aFN +aFA +abK +cgg +cgF +yfK +cgo +aau +jez +cfO +cfA +bta +buc +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +buK +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +bwk +buc +buc +buc +buc +bsP +bsP +buL +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(222,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +btI +buc +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +csf +crb +csl +crQ +ada +crr +eiF +eiB +doT +doT +eir +eir +aaX +aaX +ehK +aJb +aJg +ehK +aJg +ehK +eid +ehK +cmi +aIJ +ehV +cmR +cmR +aIy +cmR +ehQ +ehK +ehO +cmp +ehK +ehH +axQ +axQ +axQ +axQ +ehz +ehw +eiw +cma +chG +chx +cil +aHT +chQ +chH +chx +cCU +ciI +abb +ciI +ciI +bFH +ciI +jez +aHv +ciU +aHs +aHr +xhJ +sNt +aak +cig +aak +jez +jez +jez +jez +cgg +cgY +akl +cgF +aaw +dem +jez +jez +cfJ +cfB +eQo +btW +btW +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +buM +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +buL +buc +buc +buc +buc +bsP +bsP +aMS +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(223,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsP +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +ari +bsZ +bsZ +bsZ +bsZ +bsZ +fXj +bsZ +bsZ +eqw +bta +bta +eZa +eYZ +eWF +eWF +eWF +eWF +eWF +eWF +eWF +eWF +eWF +eWF +eWF +bFn +eYW +bta +bta +aat +eXd +eSg +aag +bta +bta +dqp +cqE +crQ +ada +acX +eiF +eiB +eiz +cpZ +pEP +eir +aJv +cpm +ckE +eil +eRo +eRq +eRo +cle +ckE +ckE +ckE +ckE +ehV +cmR +ehV +ehV +cmR +ehR +ckE +ckE +aln +aln +ckE +ehF +ehB +ehB +ehA +ckE +ckE +adi +ckE +ckE +chx +cil +aHT +chS +atZ +chx +cCU +ciI +ciI +cCT +ciI +dVC +bta +qoY +qoY +qoY +qoY +jez +jez +jez +cif +aak +chW +jez +kLc +aEp +jez +jez +jez +jez +jez +jez +jez +jez +kLc +atf +cfC +eQo +bgC +buc +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +aMS +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +aMS +bsY +buc +buc +bsY +bsP +bsP +buK +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(224,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsP +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsY +bta +bta +bta +eZa +eYZ +eWF +eWF +eWF +eWF +bFo +bFo +bFo +bFo +bFo +eWF +eWF +eWF +eWF +bFn +bGL +bta +aaC +eXd +eXd +aah +bta +bta +aHJ +eiX +eiT +crI +eiH +eiF +eiC +dbB +aln +aln +eis +ckE +ckE +ckE +eRr +eRr +aIq +eRr +eih +aIM +cDi +eif +bta +aIA +cmR +aIz +aIA +ehV +aIq +cBd +cBd +aGe +ckE +ckE +azE +cpl +cpl +ayv +ckE +ehx +eiw +ckE +ckE +chx +dpy +aHT +chS +chH +chx +cCU +cCU +ciI +ciI +cCl +eZY +bta +eqU +eqU +bsA +eqU +eqU +chl +cgG +cfX +cih +cgG +ePh +eOZ +eOZ +eOZ +eOZ +eOZ +ePh +ePh +eOZ +eOZ +eOZ +eOZ +atg +cfB +eQo +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +buM +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +buK +bsP +bsY +buc +bsY +bsP +bsP +buM +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(225,1,2) = {" +sqe +eqU +eqU +bsH +buK +asn +bsY +bsZ +bsZ +ari +bsZ +bsZ +bsZ +bsZ +bsY +bsY +bsY +bsY +bsY +bta +bta +bta +eZb +eYZ +eWF +eWF +eWF +bFo +bFo +bFS +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eWF +eWF +bta +aaJ +eXd +eXf +eXd +cts +cEc +csJ +eOQ +eiT +eiN +eiH +dqm +dql +cma +aJq +eiw +eiw +eiw +eiw +cma +aIq +eRm +aIq +eRm +dng +eRk +cDi +acb +bta +cmR +cmR +aIC +cmR +ehV +aaX +cBY +cAO +cAO +ckE +ckE +cpl +cpl +cpl +cpl +ckE +ehr +eiw +ckE +ckE +chz +ayX +cjT +fgZ +chG +chz +cCV +ciz +chj +chj +dVC +dVC +bta +eqU +eqU +eqU +bsA +eqU +eqU +chm +cii +che +cgZ +cfr +cfr +cfr +cfI +cfr +cfr +cfr +cfr +cfr +cfr +cfr +bmI +cfD +cfD +bta +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsP +bsP +bwk +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +buM +bsP +bsY +buc +bsY +bsP +bsP +bwk +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(226,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsP +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +eqy +eqx +bsP +bsP +bta +bta +bta +eYZ +eWF +eWF +eWF +bFo +bta +bta +bta +bta +bta +bta +bta +bta +bta +bFo +bFo +bFo +bFo +eWF +bta +eTF +eXd +eXd +eXd +eCi +cEd +aHJ +cso +aGX +eiO +eiH +cre +dnf +ckE +cqa +eiv +mgY +eio +eio +cma +eRt +eRt +aIq +aIP +eRn +eRl +eRj +acb +bta +cmR +aIy +cmR +cmR +aIy +ehV +aaX +aIq +aaX +cma +cpl +cpl +cpl +cpl +cpl +ckE +ehy +eiw +ckE +chH +ehl +cim +cjU +cjK +chG +chx +egQ +fTs +fTs +fTs +egQ +bta +bta +eqU +bsA +bsA +eqU +bsA +eqU +eqU +chf +cii +che +cgZ +cfr +cfr +anj +cfr +cfn +cfn +cfn +cgv +cfr +bnJ +cfD +cfD +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsQ +bwk +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bwk +bsP +bsY +buc +bsY +bsP +bsP +bsH +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(227,1,2) = {" +sqe +eqU +eqU +bsR +bsG +bwk +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsP +bsQ +bsQ +bta +bta +bta +eWF +eWF +eWF +bFo +bFo +bta +bta +eHf +eHb +eXd +eXd +eGY +eXd +eXd +bta +bta +bFo +bFo +eYa +bFo +bta +eTJ +eXd +eXd +aai +bta +cEs +aHJ +eiY +aGX +crG +crs +cre +eiC +ckE +eix +cpH +mgY +cpl +aJf +ckE +eRt +eRt +eRs +eRp +eRn +eRl +axQ +acb +bta +aIH +aIE +cmR +cmR +aIy +cmR +aIq +aIq +aaX +cma +cpl +cpl +cpl +cpl +cpl +ckE +cli +ehu +ckE +chH +chz +ckb +cjU +chQ +dqd +bta +fTs +fTs +eXd +fTs +fTs +bta +eqU +bxC +bxC +eqU +bxC +eqU +bxC +eqU +eqU +chh +chX +che +che +cfr +cfr +cfn +dVt +cfn +cfn +cfn +aam +cfQ +cfA +cfA +cfA +bta +buc +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsH +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +bsH +bsY +buc +buc +bsY +bsP +bsP +aMS +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(228,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsP +bsZ +fXj +bsZ +bsZ +bsZ +bsZ +bsY +bsP +bsQ +bsQ +bta +bta +bta +eWF +eWF +bFo +bFo +bFo +bta +bta +eHf +eHf +eHg +eXd +eXd +eGW +eXd +eGV +eXd +bta +bta +bFS +eWj +bFo +bta +aaT +eXf +eXf +eXd +cts +cEu +dFs +csm +auI +auC +auz +akw +djm +ckE +bta +bta +eit +cpl +cpl +ckE +eRm +aIq +eRr +eRr +eRn +eRl +eRj +acb +bta +cmR +aIE +aID +aIB +cmR +cmR +aIq +aIq +aaX +cma +cpl +cpl +cpl +cpl +cpl +ckE +bpm +aaR +ckE +chH +chx +ehh +cjV +chS +chH +nUw +cjp +eXd +eXf +eXf +fTs +bta +eqU +bxC +eqU +bxC +bxC +eqU +eqU +bsA +bxC +eqU +eqU +chl +cBV +cgZ +cfr +cfr +cfr +cfn +cfn +cfr +cfr +cfQ +cfZ +ate +cfB +eQo +buc +buc +bsZ +bsZ +bsZ +bsZ +bsY +aMS +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +aMS +buc +buc +buc +bsY +bsP +bsP +buK +eqU +eqU +eqU +bsw +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(229,1,2) = {" +sqe +eqU +eqU +bsG +aMS +arn +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsY +bsQ +bta +bta +bta +eWF +eWF +bFo +bFo +eWj +bFo +bta +eHf +eHf +eHf +eHh +eXd +eXd +eXd +eXd +eGW +eXd +eXd +bta +bFo +eWj +eWj +bta +fan +eTC +eXd +eXd +cts +cEv +eja +ckF +eiU +eiP +eiI +acS +djn +eiA +aJr +adm +eiu +cpl +cpl +cma +eRt +aIq +aIq +eRm +dng +eRk +cDi +acb +bta +ehV +aIE +cmR +cmR +aIz +cmR +aIt +aIq +aHL +cma +cpl +cpl +cpl +cpl +cpl +ckE +cli +eiw +ckE +axS +chx +aGV +ehc +aGE +egW +aiJ +egT +eXf +eXf +eXd +fTs +bta +bsA +eqU +eqU +bsA +eqU +eqU +bsA +eqU +eqU +bsA +eqU +eqU +chm +che +cgZ +cfr +cfS +cfr +cfr +cfr +bmI +cfD +cfA +atf +cfC +eQo +bta +btW +bsZ +bsZ +bsZ +bsY +bsQ +buK +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +buK +bsY +bsY +buc +buc +bsP +bsP +buM +eqU +eqU +eqU +bsw +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(230,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsY +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +ari +bsY +bta +bta +bta +eWF +eWF +eWF +bFo +bFS +eWj +bFo +bta +eHf +eHf +eHf +eHf +eHc +eHa +eXd +eXd +eXd +eGV +eXd +eDE +bFo +eWj +eWj +bta +aba +eXf +eXd +aan +bta +bta +ejb +adk +eiV +acY +eiJ +auy +eYl +dbB +ckE +aJn +eiu +cpl +cpl +cma +eRt +aIq +aIq +aIq +dng +aIO +cDi +acp +bta +ehV +aIF +cmR +cmR +cmR +aIv +aaX +aIq +aaX +cma +cpl +cpl +cpl +cpl +cpl +ckE +axJ +eiw +bta +fTs +aIe +ehi +ehd +aGz +egX +fTs +fTs +eXf +eXf +eXd +fTs +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bxC +eqU +eqU +chf +che +cgZ +cfr +cgO +cfr +bmI +cfD +cfA +cfD +cfL +cfB +eQo +btW +buc +bsZ +bsZ +bsZ +bsY +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +buM +bsP +bsY +buc +buc +bsP +bsP +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(231,1,2) = {" +sqe +eqU +eqU +bsH +buM +bsY +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bta +bta +bta +eWF +eWF +eWF +eWF +bFo +eWj +eZc +bFo +bta +eHf +eHf +eHf +eHf +eHf +eHb +eXd +eGW +eXd +eGW +eXd +eDE +bFo +bFo +bFo +bta +bta +amv +amv +bta +bta +bta +fTs +adk +acY +add +acY +acT +fTs +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +eie +ehV +aIy +ehY +cmR +cmR +ehV +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +fTs +ckF +ckc +cjW +cjM +cjF +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +fTs +bta +eqU +eqU +eqU +euD +che +cgZ +cfr +cfI +bmI +cfD +cfA +cfD +eHo +eHn +cfB +bta +buc +buc +bsZ +bsZ +bsP +bsY +buL +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +bwk +bsP +bsY +buc +buc +bsP +bsP +buM +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(232,1,2) = {" +sqe +eqU +eqU +bsG +bwk +bsP +bsZ +aNg +bsZ +bsZ +bsZ +bsZ +bta +bta +bta +eWF +eWF +eWF +eWF +eux +eZf +eZd +eWj +bFo +bta +eHf +eHf +eHf +eHf +eHf +eHc +eXd +eXd +eXd +eXd +eXd +eDE +eVv +eVt +eVt +ezk +eYG +eiE +epV +epV +eYz +epV +eYu +eiZ +eiW +eiQ +eiK +eiG +eXn +eVo +eXA +eBN +eYd +eVk +eVk +eXW +eVj +eXU +eXT +eBC +eBA +eBx +aup +aum +aua +eib +ehW +ehZ +ehW +ehT +ehS +atD +eAT +aty +eXK +eVj +eVj +eXF +eXF +eXA +eBa +eVk +eVj +eAK +ehn +ehm +ehj +ehe +eha +egY +egU +eSQ +egR +fac +egR +eqf +fTs +eXd +eXb +eHK +eHK +eHK +eHK +eHK +evC +fTs +bta +eqU +bxC +eqU +cha +che +che +cfr +bmI +cfW +cfA +cfD +eHo +eHp +cfB +bta +bta +btW +bsZ +bsZ +bsZ +bsP +bsQ +aMS +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +buL +bsP +buc +buc +buc +bsP +bsP +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(233,1,2) = {" +sqe +eqU +eqU +bsS +bsI +buL +bsZ +bsZ +bsZ +bsZ +bsZ +bta +bta +bta +eYZ +eWF +eWF +bFo +eux +eZh +eZg +eZe +eWj +bFo +bta +eHf +eHf +eHf +eHf +eHf +eHd +eXd +eXd +eGW +eXd +eXd +eDF +eDx +eDc +eDc +eqj +eqv +eVq +eYE +eYC +epX +eBN +epW +auK +dKK +djp +tBg +eYn +eVp +eXu +eYf +eYf +eYe +eYa +eXZ +bFo +eus +bFo +bFS +eWo +eii +atU +auq +diY +arN +diN +diS +aub +diM +diP +atL +atE +eXM +eXL +bFS +bFo +eXz +bFo +eXG +eXB +bFo +bFo +eXw +eXu +eGG +fSA +aIa +ehf +iES +cHg +aaG +eqj +eXi +aaM +aaM +eXe +eqc +eXd +eXb +evI +evI +eLU +evD +evD +evD +fTs +bta +eqU +bsA +eqU +eqU +chl +che +cfr +cfQ +cfD +cfD +eHo +eHq +cfB +bta +bta +btW +buc +bsZ +bsZ +bsY +bsP +aMS +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +aMS +bsY +bsY +buc +buc +bsP +bsP +buL +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +sqe +"} +(234,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsZ +bsZ +bsZ +bsZ +bsZ +bta +bta +bta +eZj +eZi +eWF +bFo +bFo +bta +eES +bta +eXP +eWj +bFo +bta +eHf +eHf +eHf +eHf +eHc +eHe +eXd +eXd +eGX +eXd +eXd +eYJ +eDx +eDc +ezk +eqj +eYH +eYR +eCo +eYD +equ +eSQ +adj +csn +eYq +auD +eYn +cHg +eBQ +bFo +eYi +eYf +eYf +eYb +bFo +eXX +bFS +bFo +eup +bxS +aux +aut +aur +aun +auc +auc +auc +auc +atW +atS +atM +atF +eXO +eXL +bFo +bFo +bFo +bFo +bFo +eXC +bFo +bFo +bFo +eXu +eGG +fSA +ehk +ehg +iES +bnY +aaG +eXk +egR +eXg +eqh +eqg +eqg +eXd +eXb +eSQ +evI +eLU +evD +evG +evD +fTs +bta +eqU +bxC +eqU +eqU +chm +che +cgZ +cfD +cfA +cfA +eHr +cfB +bta +bta +btW +buc +buc +bsZ +bsZ +bsY +bsQ +buK +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +buK +bsP +bsY +buc +buc +bsP +bsP +aMS +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(235,1,2) = {" +sqe +eqU +eqU +bsH +buK +bsZ +ari +bsZ +bsZ +bsZ +bta +bta +eZa +eYZ +eWF +bFo +bFo +bta +bta +eEQ +bta +bta +bFo +bFo +bta +eHf +eHf +eHf +eHj +eXd +eXd +eXd +eXd +eXd +eXd +eXd +eYL +eVw +eqj +eCE +eYT +eYS +cHg +eCo +fSA +eqj +eYy +eYv +eYr +aIa +wAQ +eYp +cHg +eYm +eXx +eXx +eXx +eXB +eXx +bFo +eXY +eXy +bFo +bFo +eWi +aJd +eig +eXS +auo +aul +eXS +auf +eia +atX +atT +atN +atG +eBm +atx +bFo +eXy +eXJ +bFo +bFo +eXD +eXy +bFo +bFo +eXv +eGH +eXr +ehk +wAQ +iES +adj +aaG +eqj +egR +epZ +eqi +eqg +fTs +evJ +ezd +evI +eSQ +eLU +evD +evD +evD +fTs +bta +eqU +bsA +bxC +eqU +eqU +chf +cfD +cfD +cfA +cfA +cfB +bta +bta +buc +buc +bsZ +bsZ +bsZ +bsY +bsY +buM +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +buM +bsP +bsY +buc +buc +bsP +bsP +buK +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(236,1,2) = {" +sqe +eqU +eqU +bsR +bsG +bsZ +bsZ +bsZ +bsZ +bsZ +bta +bta +eqz +eWF +eWF +bFo +bFo +bta +eEW +eEQ +eGO +bta +bFo +bFo +bta +bta +eHf +eHf +eHc +eXd +eGW +eGZ +eGW +eXd +eXd +bta +bta +bFo +eVu +eSQ +ezk +eSQ +cHg +eCo +aaG +eYA +eSQ +adj +aaG +ehk +euK +iES +ezY +eYm +bFo +bFo +bFo +eYg +bFS +euu +bFo +eXV +bFo +bFo +ehN +eHC +auu +bum +cQN +atA +bum +bum +bum +lQs +aIN +aIL +atH +atB +ehN +bFo +bFo +bFo +eXx +eXx +eXE +bFo +eXx +eXx +bFo +eXt +eXs +ehk +wAQ +iES +eXo +eXl +ezk +egR +eXh +aaM +eqg +evL +evK +eXb +evI +evI +eLU +evD +evD +evD +fTs +bta +eqU +eqU +bsA +eqU +eqU +chh +cfA +cfA +cfA +cfB +bta +bta +buc +buc +bsZ +bsZ +bsY +bsZ +bsP +bsP +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bwk +bsP +bsY +buc +buc +bsP +bsP +buM +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +eqU +eqU +eqU +sqe +"} +(237,1,2) = {" +sqe +eqU +eqU +bsI +buL +bsZ +bsZ +bsZ +bsZ +bta +bta +eqC +eqA +eWF +eWF +bFo +bFo +bta +eEX +eET +eER +bta +bFo +bFo +bFo +bta +bta +eHf +eHk +eXd +eXd +eXd +eXd +eXd +bta +bta +bFo +bFo +eVu +eYV +eYU +eqv +cHg +eCo +eqe +eYB +eqt +eYw +eYs +ehk +ehg +eiL +eXo +eXl +bFS +bFo +eXz +eYh +eud +bFo +eXy +bFo +bFo +bFo +bFo +doW +auv +bum +bum +bum +bum +bum +bum +lQs +eWF +atO +eXP +atC +eud +bFo +bFo +eub +eWo +eXH +bFo +eXz +cWV +bFo +bFo +eXt +fSA +ehk +wAQ +iES +eXp +eXm +eqj +eXj +egR +egR +eqg +fTs +eXd +eXb +eHK +eHK +eHK +eHK +eHK +adq +fTs +bta +eqU +eqU +bsA +eqU +eqU +eqU +cha +cfA +cfB +bta +bta +btW +buc +bsZ +bsY +bsY +bsY +bsP +bsP +bwk +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +bsw +bsw +eqU +eqU +eqU +eqU +bsH +bsY +buc +buc +buc +bsP +bsP +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(238,1,2) = {" +sqe +eqU +eqU +bsG +aMS +bsZ +bsZ +bsZ +bsZ +bsZ +bta +bta +eqB +eWF +eWF +bFo +bFo +bta +bta +bta +bta +bta +bFo +bFo +bFo +bFo +bta +bta +bta +bta +bta +bta +bta +bta +bta +bFo +bFS +bFo +eqt +eYI +eSQ +eSQ +cHg +aaG +eqt +eqt +eqt +eYx +eYt +ehk +eXc +iES +eYo +eVp +eYj +bFo +bFo +bFo +eYc +bFo +bFo +bFo +bFo +bFo +bFS +bFo +eWi +bHy +bHy +eun +eWF +bHy +aue +eXR +art +atP +atI +bFo +bFo +bFo +bFo +eWo +eWo +eWo +bFo +bFo +bFo +bFo +bFo +eXt +fSA +eXq +eXc +iES +cHg +eXn +eSQ +ezk +ezk +ezk +eSQ +fTs +eqa +eqa +eqa +fTs +fTs +fTs +fTs +fTs +fTs +bta +bxC +eqU +eqU +eqU +bsA +bta +bta +bta +bta +bta +btW +buc +bsY +bsY +bsY +bsY +bsP +bsP +bsQ +buM +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsw +bsw +eqU +eqU +eqU +eqU +eqU +aMS +bsP +buc +buc +bsY +bsP +bsP +bsH +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(239,1,2) = {" +sqe +eqU +aTv +bgY +ecS +ecR +ecQ +bsS +bsI +buL +bta +eZk +eWF +eWF +eWF +bFo +bFS +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFS +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +bFo +eqt +eDe +epV +epV +eCo +epW +epV +epV +epV +epW +eqs +eqo +eqn +eql +cHg +eqr +eYk +eVm +eVm +eVm +eVi +eVi +eVi +eVi +eVi +eXQ +eVm +eVm +eVm +eVm +eVm +eVm +eVm +eVi +eVi +eVi +eVi +eVi +eXQ +eVm +eVm +eVm +eVm +eXI +eXI +eXI +eVi +eVi +eVi +eVi +eVi +eqq +aaG +eqo +eqn +eql +eqk +epW +eyZ +eyZ +epV +eyZ +epV +eqd +ehk +eXc +iES +epY +eyZ +eyZ +epV +eyZ +epV +bta +eqU +eqU +bsA +eqU +bta +bta +bta +bta +bta +btW +btW +buc +bsQ +buL +bsQ +bsQ +bwk +bsQ +bwk +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsO +bsY +buc +bsY +bsY +bsO +bsP +aMS +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(240,1,2) = {" +sqe +eqU +eqU +bsC +eqU +bOk +bOk +eqU +bOk +eqD +bta +eZl +eWK +eWK +eWK +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +eWl +jQS +xPz +eCR +eCx +eCx +iFy +iFy +iFy +iFy +iFy +iRc +eqp +hDc +eqm +sHd +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iFy +iRc +eqp +hDc +eqm +sHd +iFy +iFy +iFy +iFy +iFy +iFy +iRc +hDc +hDc +hDc +sHd +iFy +iFy +iFy +iFy +fxo +bta +eqU +bsA +eqU +bta +bta +bta +bta +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsO +bsO +erb +erb +erb +erb +bsO +bsO +buK +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(241,1,2) = {" +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +"} + +(1,1,3) = {" +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +"} +(2,1,3) = {" +sqe +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +kbO +kbO +kbO +kbO +kbO +kbO +kbO +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(3,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVH +cVH +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(4,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVH +cVH +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(5,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVH +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +cKq +cKq +cKq +cKq +cKq +cKq +cKq +cKq +cKq +cKq +cKq +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(6,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVH +cVH +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(7,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +dkL +dkL +dkL +dkL +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVH +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(8,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVH +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +aky +aky +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(9,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +aky +bsk +aaj +aky +aky +aky +aky +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +aky +aky +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +aky +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(10,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +bMK +bMK +bMK +bMK +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +bMK +bMK +bMK +bMK +bMK +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +cTN +cTN +cTN +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(11,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +bMK +bMK +bMK +bMK +bMK +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cKp +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +cTN +cTN +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bvw +aaj +aaj +aaj +aaj +aaj +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aky +aky +aky +aky +aky +bsO +aky +aky +aky +aky +aky +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(12,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +bMK +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +dkL +bMK +bMK +bMK +bMK +bMK +cVI +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cKp +aaj +cVd +cVc +cVc +cUV +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bvw +bvw +bvw +aaj +aaj +aaj +aaj +bta +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +bta +bta +aaj +aaj +aaj +aaj +bsO +aaj +aaj +aaj +aaj +bta +bta +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +bta +cKp +cKp +cKp +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(13,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +bMK +bMK +bMK +bMK +bMK +dkL +dkL +dkL +dkL +dkL +dkL +cVd +cVd +dkL +dkL +dkL +dkL +dkL +dkL +cVd +cVd +cVd +cVd +cVd +cVd +dki +aky +aaj +aaj +aaj +aaj +cVd +dki +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bta +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +bta +bto +bto +bto +bto +bto +bto +cRY +bto +bto +bto +bto +bto +bto +bta +bta +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +dVv +bta +bta +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(14,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +dkL +cVd +cVd +dkL +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +dki +aaj +aaj +aaj +aaj +dki +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(15,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +dki +cKp +cKp +dki +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(16,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVc +cVc +cVc +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(17,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(18,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aaj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(19,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aaj +aaj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(20,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aaj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aaj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(21,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bsk +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(22,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(23,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(24,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(25,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +bIu +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(26,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +bIu +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(27,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +bIu +cVd +bIu +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(28,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(29,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(30,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(31,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(32,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(33,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(34,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +djw +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(35,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +aky +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +djy +bTz +dfX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(36,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +aky +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +djy +beT +bTz +aZY +dfX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(37,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +djA +bTz +bTz +bTz +bTz +cXl +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(38,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +djz +big +bTz +bde +dfZ +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(39,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +bto +bto +djz +bTz +dfZ +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(40,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +bto +bto +djx +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(41,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSj +cSj +cSj +cSj +cSj +cSj +cSj +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(42,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +aaj +aaj +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(43,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +aaj +aaj +aaj +aaj +aky +aky +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(44,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +aaj +aky +aky +aky +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(45,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +aaj +aaj +aky +aky +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(46,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSk +cSk +cSk +cSk +aaj +aky +aky +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(47,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cVd +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aky +aky +aky +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(48,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aky +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSi +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(49,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aky +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aky +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(50,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +aaj +aky +aky +aky +aaj +aaj +bPN +bPN +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aky +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(51,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +aaj +aky +aky +aky +bPN +bPN +bPN +cVS +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aky +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(52,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +bMK +cSk +aaj +aky +aky +aky +bPN +cVS +cVS +cVS +cSk +cSk +cSk +cSk +cSk +cVS +cVS +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(53,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +aaj +aky +aky +bPN +cVS +cVS +cVS +cSk +cSk +cSk +cSk +cSk +cVS +cVS +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(54,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +aaj +aky +bPN +cVS +cVS +cVS +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(55,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +aaj +aky +bPN +bPN +cVS +cVS +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(56,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +aaj +aky +aky +bPN +bPN +bPN +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(57,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +aaj +aky +aky +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(58,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +aaj +aky +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cEC +cEC +cEC +cEC +cEC +cEC +cEC +cEC +cEC +cEC +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(59,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cEC +deN +cFt +cFt +cFt +cFt +cFt +cFt +cFt +cFt +cxY +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aky +aky +aky +aky +aky +aky +aky +aky +aky +aky +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(60,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +dij +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cyf +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(61,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +dij +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cyf +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aky +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(62,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +cVJ +cVJ +bMK +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +dij +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cyf +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(63,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +cVJ +eqU +eqU +bMK +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +dij +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cRL +cyf +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(64,1,3) = {" +sqe +aMX +cVJ +cVJ +cVJ +eqU +eqU +eqU +bMK +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +eks +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cXp +cRV +eiD +dIs +cRV +cRV +eiD +dIs +cRV +cym +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(65,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +bMK +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cXp +cym +cSh +cSh +cXp +cym +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +bto +bto +bto +bto +bto +bto +bto +bvw +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(66,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +bMK +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +bto +bto +bto +bto +bto +bto +bto +bvw +bto +bvw +bto +cRX +cRX +cRX +bto +bto +bto +bto +bsO +bto +bto +bto +bto +bto +bsO +bsO +bto +bto +bto +bto +bto +bsO +cRX +cRX +cRX +cRX +bsO +bto +bto +bto +bto +bto +bsO +bsO +bto +bto +bto +bto +bto +bsO +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(67,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bMK +bMK +bMK +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aky +aky +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +bto +bto +bto +bto +bsO +bto +bto +bto +bto +bto +bsO +bsO +bto +bto +bto +bto +bto +bsO +cRX +cRX +cRX +cRX +bsO +bto +bto +bto +bto +bto +bsO +bsO +bto +bto +bto +bto +bto +bsO +bto +bto +bto +bto +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(68,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aky +aky +aky +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +aky +aky +aky +aky +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +bsO +cKp +cKp +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(69,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +aaj +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +aaj +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bsO +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(70,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTF +bTF +bTF +bTF +bTF +cSk +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTF +bTF +bTF +bTF +bTF +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bto +bto +bto +bto +bto +bto +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(71,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsO +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTJ +bTG +bTG +bTG +bTG +bTG +bTC +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTJ +bTG +bTG +bTG +bTG +bTG +bTC +cSk +cSk +cSk +cSk +cSk +cSe +cUr +cSe +cSe +cSe +cSe +cSe +cSh +cUr +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bto +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(72,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsO +bsO +cSk +cSk +cSk +cSk +cSk +cSk +bTI +cDe +bTB +bTB +bTB +eRb +bTD +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cVN +cSk +cSk +cSk +cSk +bTB +cSk +bTI +cDe +bTB +bTB +bTB +eRb +bTD +cSk +bTB +cSk +cSk +cSk +cSe +cUr +cUr +cSe +cSe +cSe +cSe +cUr +cUr +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bto +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +aaj +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(73,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bsO +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cUr +cSe +cSe +cSe +cSe +cSe +cSe +cUr +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bto +cRX +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +aaj +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(74,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bto +cRX +cRX +cRX +cRX +bto +bto +bto +bto +bto +bto +aaj +aaj +aaj +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(75,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +cDe +bTB +eRb +bTD +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +aaj +aaj +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bto +bto +bto +bto +bto +aaj +aaj +aaj +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(76,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +cDe +bTB +eRb +bTD +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aaj +aaj +aaj +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(77,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +bTF +bTD +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aaj +aaj +aaj +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(78,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +bRH +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +bTF +bTD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aaj +aaj +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(79,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(80,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +ekr +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aky +bwd +aaj +aaj +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(81,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aky +aky +aky +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(82,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(83,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(84,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +cSh +cSh +cSh +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(85,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(86,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(87,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTF +bTF +bTF +bTF +bTF +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(88,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bDm +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTJ +bTG +bTG +bTG +bTG +bTG +bTC +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(89,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bDm +bDm +cSk +cSk +cSk +cSk +cSk +cSk +bTI +cDe +bTB +bTB +bTB +eRb +bTD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(90,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bDm +bDm +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTJ +bTG +bTG +bTG +bTC +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(91,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cSk +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(92,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(93,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +cDe +bTB +eRb +bTD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +cDe +bTB +bTB +bTE +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aky +aaj +aaj +aaj +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(94,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cSk +cSk +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTH +bTB +bTE +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTJ +bTC +bTI +bTF +bTF +bTD +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +aky +aky +aky +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +sqe +"} +(95,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +bTF +bTD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +bTI +bTD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(96,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(97,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(98,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(99,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(100,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(101,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(102,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(103,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +cfg +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(104,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +bLF +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +cKp +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(105,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +cfg +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(106,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +bwd +bwd +bwd +bwd +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cKp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(107,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +bsO +cfg +cfg +cfg +cfg +cfg +cfg +bsO +cSb +cSb +cRZ +cRZ +cRZ +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(108,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSk +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSc +bsO +cSb +cSa +cSa +cSa +cSa +cRZ +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(109,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSk +cSk +cSk +cSk +cSk +cVD +cVD +cVD +cVD +cVD +cSl +cSl +cSl +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSc +bsO +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(110,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSl +cSl +cSl +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cSg +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSc +bsO +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +cRZ +cRZ +cRZ +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(111,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cSg +cSg +cSg +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSe +cSc +bsO +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(112,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +bsO +bsO +cfg +cfg +cfg +cfg +cfg +cSd +bsO +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(113,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cTI +cTI +cTI +cSg +cSg +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cfg +cSb +cSb +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(114,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cTI +cTI +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cfg +cSb +cSb +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(115,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cTI +cTI +cTI +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cfg +cSb +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(116,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cSb +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(117,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cSb +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +cRZ +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(118,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cVD +cVD +cVD +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +cKq +cRZ +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(119,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +cRZ +cRZ +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +cRZ +cRZ +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(120,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +cRZ +cRZ +cSa +cSa +cSa +cSa +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(121,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +cRZ +cRZ +cRZ +cRZ +cRZ +cSa +cSa +cSa +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(122,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cSa +cRZ +cRZ +cRZ +cRZ +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(123,1,3) = {" +sqe +aMX +cVU +cVU +cVU +cVU +cVU +bRH +bRH +bRH +bRH +bRH +bRH +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(124,1,3) = {" +sqe +aMX +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +cSg +aaj +aaj +aaj +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cSg +csW +cSg +cSg +cSg +cSg +cSg +csW +cSg +cSg +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +cSg +cSg +cTT +cSg +cSg +cSg +cSg +cSg +cTT +cSg +cSg +cSg +cSg +cSg +cTT +cSg +cSg +cSg +cSg +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +cSg +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(125,1,3) = {" +sqe +aMX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +cVG +cVG +cVG +cVG +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cSg +cSg +cSl +cSl +cSl +cSl +cSl +cSg +cSg +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +cSg +cSg +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(126,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +aaj +aaj +aaj +cVG +cVG +cVG +cVG +cVG +cVG +cVG +csW +cVG +csW +cVG +cVG +cVG +csW +cVG +csW +cVE +cVE +cVE +cUW +cUW +cUW +cUW +cUW +bta +bta +bta +cnF +cWp +cnF +cWp +cWp +cWp +cnF +cWp +cnF +cWp +cWp +cWp +cnF +cWp +cnF +cWp +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +cfl +cWP +cWN +cWJ +cSg +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(127,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +csW +cVE +cUW +cUW +cUW +cUW +cUW +bta +cqc +cqc +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eGQ +chs +chs +cWQ +cWi +cWL +cSg +cSg +cSg +cfg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(128,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cVE +cUW +cUW +cUW +cUW +cUW +bta +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +cWp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +chs +chs +chs +chs +cWK +cWO +eUq +cWJ +cSg +cSg +cfg +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(129,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cWK +eUq +cWJ +dVD +cfg +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(130,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +aaj +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cWK +eUq +cWJ +dVD +cfg +cfg +cfg +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(131,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cVE +cVG +cVG +cVG +cHQ +eTr +eTr +cHt +cHt +cHn +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cfg +cfg +cWK +eUq +cWJ +dVD +cfg +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(132,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cVE +cVG +cVG +cVG +cVG +eTs +eSK +eSG +cHR +cHu +cHo +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cfg +cfg +cfg +cfg +cWK +eUq +cWP +cWN +cWJ +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(133,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cVE +cVG +cVG +cVG +cVG +cVG +eTs +eSL +eSH +cHR +cHu +cHo +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cfg +cfg +cfg +cfg +cfg +cfg +cWK +cWK +cWO +eUq +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(134,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cHQ +cIf +cHt +cIf +cHt +cHt +eTq +cIf +cHo +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cfg +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(135,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cIf +cIf +cIf +cIf +cHu +cHu +cHu +cIf +cHo +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cUW +cUW +eko +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cWp +cFg +fbn +fbJ +fbk +fbk +fbn +fbn +fbn +fbn +fbn +fbn +fbn +cEI +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +cWp +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +cfg +cfg +cfg +cfg +cfg +cfg +chs +chs +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(136,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cIf +cIf +cIf +cIf +cHu +cHu +cHu +cIf +cHo +cVG +cVG +cVG +cVG +cGG +cGB +cGB +cGB +asX +asX +asX +cFv +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWp +cWp +cWp +cWp +cFg +eTd +eQA +cBB +cBB +eQA +eQE +eQA +eQA +eQA +cBB +cBB +eQA +fbu +fbs +cWp +cFg +fbn +fbn +fbn +fbn +fbk +fbh +cWp +cWp +cWp +chs +czt +czt +czt +czt +czt +czB +czB +czB +czB +czB +czB +czB +czB +czB +czB +czB +czB +czv +cfg +cfg +cfg +cfg +cfg +cfg +chs +chs +chs +chs +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(137,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cHS +cIf +cIf +bTL +cHu +cHu +cHu +cHu +cHo +cVG +cVG +cVG +ata +eTj +cFL +cFL +cFM +cFM +cFL +cFL +eTg +cFv +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +asU +asQ +asN +fbn +fbn +fbn +eTd +eQA +eQA +aex +aet +fbq +cEe +fby +eQA +amA +amz +amx +eQA +amt +fbt +fbn +eTd +eQA +eQA +eQA +eQA +eQA +eMt +cWq +cWq +cWq +fdc +czt +cAX +czE +czE +czt +czt +czt +czL +czL +czt +czt +czt +czt +djr +djr +dju +czC +bIp +czB +czB +czB +czB +czB +czB +czB +czB +czv +chs +chs +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(138,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHR +cHu +cHu +cHu +cIf +cIf +cVG +cVG +cGG +eTj +cFL +cFL +cFV +cFV +cFV +cFV +cFL +cFL +asW +cFx +cVs +cVB +cUW +cUW +cUW +cVz +cVs +cEY +asV +asR +asO +eQA +eQA +eQA +cEx +eQA +amf +aeq +aeq +aeq +aeq +amD +aeq +lnr +lnr +lnr +fbw +eQA +eQA +cBB +cBB +fbq +fbo +aeq +alS +alO +cBA +cBm +cBm +oDa +cBm +eUs +alL +czE +cAw +alJ +cAM +cAL +cAL +cAL +cAL +cAJ +cAg +czt +djr +djr +djr +djr +djr +djr +djr +czC +czC +czC +czC +czC +czC +blK +eSB +czB +czv +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(139,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHR +cHu +cHu +cHu +cHu +cHo +cVG +cVG +cFL +cFM +cFL +cFV +cFV +cFV +cFV +cFV +cFV +cFM +asW +cFu +cFs +cVC +cVs +cVs +cVs +cVA +eMw +cFe +dkk +asP +asP +eQA +amO +cCD +cCs +aeq +amI +cBM +cBM +cBM +cBM +cBM +cBL +cBL +cBZ +cBZ +amj +fbv +cBB +cCD +lnr +amg +amd +alT +alT +fbl +cCL +cBe +cBn +cBe +cBe +eUr +czx +czx +alK +czx +alI +aaL +aaL +alD +alu +cAi +cAf +czt +djr +eLA +djr +djr +czC +czC +czC +czC +czC +czC +djr +czC +czC +djs +djr +djr +blK +czv +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(140,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHS +cHv +cHv +cHv +cHv +cHp +cVG +cVG +cFL +cFV +cFV +cFV +cFV +cFV +cFV +cFV +cFV +cFM +cFw +cFu +cFr +cFr +cFr +adL +adL +adL +adL +cFf +cEX +asS +eRA +eQA +amP +cCh +cBN +cBN +aeh +aey +amG +amG +amE +amC +amC +aej +aei +aDq +cCY +aec +cBB +pbo +fbr +amh +cBM +cBZ +alU +cCP +eMq +cBf +cBf +cBf +alM +eUr +czy +czy +czy +cAK +cAM +czD +czE +czD +alv +cAi +cAf +czt +czt +czt +czt +czL +czL +czL +czt +czt +czt +czt +czt +czt +czt +czt +czt +czt +czC +czw +chs +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(141,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFL +cFV +cFV +qyh +cFV +cFV +cFV +cFV +cFV +cFL +cFw +cFu +eMz +fAf +cWy +cWy +cWy +eci +eMx +cFe +cEX +cER +eMs +cEJ +cCG +amM +cBZ +cBL +aeC +fbx +cBz +cBz +cBz +cBz +cBz +cBz +fbx +aee +cBN +amu +cCL +cCF +amn +cBF +ame +alV +aeh +eQA +cEI +cWr +cWr +cWr +fcZ +czt +mZM +mZM +mZM +mZM +czt +cAU +czV +alE +cAM +cAi +cAH +akP +cAC +aaI +ale +aaI +aaI +aaI +aaI +akV +cAs +akP +aaI +bKc +czT +czT +czT +czt +czC +czw +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(142,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFL +cGK +tes +cng +cFV +cFV +cFV +cFV +cFV +cFL +eTe +cFv +cWy +mFX +cUW +cUW +cUW +cWz +cWy +cFg +eTd +asP +eMs +cEK +amQ +cCh +amJ +cBM +aeD +cBz +cDC +cDC +cDC +cDC +cDC +cDC +cBz +aef +cBL +cCP +cCL +cCG +cBM +ami +cCh +cBL +alP +cBB +eMs +cWn +cWn +cWn +fbd +czt +awv +czz +czz +aek +czt +dlQ +alF +czT +alw +cAK +cAr +cAn +ali +cAr +cAr +cAr +cAr +cAr +cAr +cAr +cAt +cAn +cAh +cAf +czT +czU +czX +czt +czC +czw +chs +chs +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(143,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFM +cYs +aWb +utu +wfU +wfU +wfU +wfU +wfU +cFL +eTf +cFx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cEX +cER +asT +eMs +cCL +amR +amN +amK +cBL +aeD +cBz +cDC +cDC +cDC +cDC +cDC +cDC +cBz +amy +cBM +cCP +cCL +cCF +amo +amj +amf +cKC +cBE +cBB +eMs +cWn +cWn +cWn +fbd +czt +czz +czz +czz +czz +czL +dlR +czU +czD +cAM +cAi +cAI +aaL +aaL +aaL +alf +aaL +aaL +aaL +akX +aaL +aaL +czU +cAi +cAf +czD +czU +czX +czt +djr +czw +chs +chs +eGQ +chs +chs +chs +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(144,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFM +afq +lvo +wWc +wWc +cYf +wWc +wWc +wWc +cFM +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cEX +asP +djv +eXa +eQA +amS +cCE +cEy +cBM +aeD +cBz +cDC +cDC +cDC +cDC +cDC +cDC +cBz +aef +amw +aed +cBB +amr +amq +amk +cBL +alW +cBE +eQA +eMs +cWn +cWn +cWn +cAQ +czt +czz +czz +czz +czz +czL +dlS +alG +czT +cAM +cAj +cAg +alj +vUZ +vUZ +vUZ +cAx +cAx +cAx +vUZ +vUZ +vUZ +tfR +cAj +cAf +czD +czE +czU +czL +djr +czw +chs +chs +chs +chs +chs +chs +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(145,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHQ +cHt +cHt +cHn +cVG +cVG +cVG +cFL +cFL +cGH +cYl +cXW +cXX +cFW +cFY +cFW +cFM +cFw +cFx +cVs +cVB +cUW +cUW +cUW +cVz +cVs +cEY +eRI +cER +asP +eQA +amT +cEz +aDq +cBL +aeD +cBz +aeu +cDC +cDC +cDC +cDC +cDD +cBz +aef +cBL +aeb +eQA +eQA +cCy +aml +mIH +mIH +cBF +eQA +fbi +cWn +cWn +cWn +cAQ +czt +czz +czz +czz +czz +czL +dlT +czV +czT +cAN +cAi +cAf +alk +czz +czz +czz +alc +czF +kEb +czz +czz +czz +nlZ +akN +cAf +czD +czE +czV +czL +djr +czw +chs +chs +chs +chs +chs +chs +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(146,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHS +cHv +cHv +cHp +cVG +cVG +cVG +cFL +cFL +cGI +cXW +cXX +cXW +cXX +cFW +cFX +cFL +cFw +cFu +cFs +cVC +cVs +cVs +cVs +cVA +eMw +cFf +cEX +asP +cER +eQA +eQA +eQA +cCE +cBL +aeE +cBz +aev +cDM +cDM +cDM +cDM +ael +cBz +aeg +cBN +aeb +adZ +eQA +eQA +eQA +eQA +cBB +cBB +eQA +fbi +cWn +cWn +cWn +cAQ +czt +czL +czL +czL +czL +czt +czt +czt +czt +czt +cAi +alp +kBj +czz +czz +czz +alc +czV +akZ +czz +czz +czz +nlZ +cAi +akK +czD +czT +akD +czt +djr +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(147,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +eTs +eMc +eMa +eTp +cVG +cVG +cVG +cFM +cYt +cYp +cFY +cGC +cYg +cYb +cFY +cXW +cFL +cFw +cFu +cFr +cFr +cFr +adL +adL +adL +adL +cFf +cEY +cEL +fbp +eRI +eQA +eQA +cCE +cEt +aec +aez +cDN +cEi +cDN +cDN +cDN +amB +cDw +pbo +cBZ +aeb +aea +eQA +eRA +cEL +fbp +cEL +cEL +fbm +fbj +cWn +cWn +cWn +cAR +cAc +cAc +cAc +djt +djt +cAc +cAc +djt +fcW +czt +cAi +cAg +kBj +czz +czz +czz +alc +czE +kEb +czz +czz +czz +nlZ +cAi +cAf +cAd +czV +akE +czt +djr +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(148,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +eTs +eSI +eSF +eTp +cVG +cVG +cVG +cFM +cYu +cFY +cYn +wFS +bWf +cYc +cFW +cXX +cFL +cFw +cFu +eMz +fAf +cWy +cWy +cWy +eci +eMx +cFh +cWx +cUW +cUW +cEY +eRI +eQA +cEz +cCy +aDq +cBL +cBZ +amH +cEf +cBL +cBN +cBN +cBM +aeh +cCy +cBF +ams +eQA +eMs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fda +fbd +czt +cAi +cAg +kBj +czz +czz +czz +xTS +czE +kEb +czz +czz +czz +nlZ +cAi +cAf +czT +czE +czV +czt +djr +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(149,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +eTs +eSI +eSF +eTp +cVG +cVG +cVG +cFM +cYv +cYq +cFY +cYj +cYh +cYd +cXZ +cXW +cFL +eTe +cFv +cWy +mFX +cUW +cUW +cUW +cWz +cWy +cWy +mFX +cUW +cUW +cUW +fbY +eQA +eQA +eQA +cBB +cBB +cEo +cik +amF +cDO +cDO +jkB +cBB +cBB +eQA +eQA +eQA +eQA +eMs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cAQ +czt +eMr +cAf +kBj +czz +czz +czz +xTS +czE +kEb +czz +czz +czz +nlZ +cAi +cAg +czT +czE +eMk +czt +djs +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(150,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +eTs +eSJ +eMa +eTp +cVG +cVG +cVG +cFM +cYw +cXX +cYo +cYk +bWf +cGr +cFW +cXX +cFL +cFE +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cEY +cEL +fbm +fbm +fbp +eMt +txO +cDk +cDk +cDY +cDk +cDE +cDj +cDj +tKT +cEY +cEL +fbm +fbj +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cAQ +czt +cAi +cAf +alm +czz +czz +czz +xTS +czE +kEb +czz +czz +czz +nlZ +cAi +akL +czT +czV +akF +czt +czC +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(151,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHQ +cHt +cHt +cHn +cVG +cVG +cVG +cFL +cFL +cGJ +cXX +cFW +cYi +cFW +cFY +cFZ +cFL +eTf +cFx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWn +cWn +cWn +cWv +cEp +bEC +cDx +cDx +cDk +cDx +nri +cDk +cCZ +cWs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cAQ +czt +cAi +cAf +cAD +rsN +rsN +rsN +cAy +czV +cAy +rsN +rsN +rsN +akQ +cAi +cAf +czT +akI +akG +czt +czC +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(152,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHS +cHv +cHv +cHp +cVG +cVG +cVG +cFL +cFL +cFY +cXW +cFY +cFW +cFY +cFW +cXY +cFM +asW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWn +cWn +cWn +cWv +cEp +ozG +cDk +ure +cDk +xaO +cDx +cDk +cCZ +cWs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cAQ +czL +eMu +cAf +cAE +aao +czV +czE +czE +czE +ehU +cAw +czV +cAu +cAo +cAi +cAf +czT +czV +czV +czL +czC +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(153,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFM +cYx +rYh +cYe +cYe +cYe +cYe +cYa +eCc +cFM +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWn +cWn +cWn +cWv +cEp +cDk +cDk +cDk +cDk +cDk +cDx +cDk +cCZ +cWs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cAQ +czL +cAi +cAf +cAD +iWr +czE +czE +czV +czV +czV +czE +czE +aeR +cAo +cAi +cAf +czD +czE +czU +czL +eLw +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(154,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFM +cYs +cYr +xif +gVG +gVG +gVG +gVG +gVG +cFL +eTg +cFv +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWn +cWn +cWn +cWv +txO +cEj +cDk +cDk +cDk +cDk +cDx +cDk +cCZ +cWs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fbd +czL +eMv +cAg +cAE +aao +vWs +czV +czV +czV +czV +czV +czV +aeR +cAp +cAi +cAg +czD +czU +akC +czL +czC +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(155,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFL +cGL +nAU +cng +cFV +cFV +cFV +cFV +cFV +cFL +cFF +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWn +cWn +cWn +cWv +txO +cDx +cDk +cDk +cDk +cDk +cDk +cDk +cCZ +cWs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fbd +czt +cAl +alq +cAD +tWQ +alh +tWQ +cAy +czV +cAy +tWQ +tWQ +tWQ +cAo +cAi +cAf +czT +czU +akC +czt +czC +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(156,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cFL +cFV +cFV +fXl +cFV +cFV +cFV +cFV +cFV +cFL +cFF +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWn +cWn +cWn +cWv +oXE +cDj +cDZ +cDZ +dQe +cDk +cDk +cDk +cCZ +cWs +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fbd +czt +fcV +cAf +kBj +czz +czz +czz +xTS +czE +kEb +czz +czz +czz +nlZ +cAk +cAf +czT +czT +czT +czt +czC +czw +chs +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(157,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cIc +eMb +cVG +cVG +cVG +cVG +cFL +cFV +cFV +cFV +cFV +cFV +cFV +cFV +cFV +cFM +cFF +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +aEH +sYN +fuo +cDR +cDR +cDR +cDR +cDR +cDR +cDR +pCP +mUr +kuy +cDa +cDk +cDk +cDk +cDa +cBh +cBh +cBl +cBh +cBh +cBh +cBh +cBo +odK +cBg +kGl +cBh +cBg +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fbd +czt +cAi +cAg +kBj +czz +czz +czz +xTS +czE +ala +czz +czz +czz +nlZ +cAi +cAf +czt +czt +czt +czt +czt +czt +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(158,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVE +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cHq +cHc +cVG +cVG +cVG +cVG +cFL +cFM +cFL +cFV +cFV +cFV +cFV +cFV +cFV +cFM +cFF +cFw +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +iqA +qtr +bYn +hPJ +cDR +cEA +cDR +cEr +cDR +eSC +cEg +rlX +mhL +cDa +cDx +cDk +cDk +cDa +cBh +tjt +sdM +dHI +cBS +cBg +aAj +dWD +idt +grB +aiQ +cBo +wdS +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fbd +czt +cAi +cAf +kBj +czz +czz +czz +alc +czE +kEb +czz +czz +czz +nlZ +cAi +cAf +czT +czU +czV +czM +czD +czx +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(159,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +cVG +asZ +eTk +cFL +cFL +cFV +cFV +cFV +cFV +cFL +cFL +atu +cFx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cDR +frV +rjp +usr +mDw +oFq +cDR +lFW +pDQ +rlX +suK +cEg +cDR +cDP +cgl +cDk +cDl +cDb +cBh +cCM +ptu +cBo +wWu +rkj +rtR +dWD +kaa +vmn +vmn +wgy +vBq +eMh +cWn +cWn +cWn +cWn +cWn +cWn +cWn +cWn +fbd +czt +cAi +cAf +kBj +czz +czz +czz +xTS +czV +kEb +czz +czz +czz +nlZ +cAi +cAf +czD +czx +akH +asL +czE +akA +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(160,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVO +cGk +cGa +eTk +cFL +cFL +cFM +cFM +cFL +cFL +eTh +cFx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cDR +dkH +oVQ +vrz +cDR +cEB +cDR +aym +cDR +fTi +cEg +qib +cDR +cDQ +cDk +cDk +cDk +cDa +cBh +dHI +cCH +sdM +cBo +trF +idt +idt +idt +cBg +cBs +cBp +cBg +eMi +faT +faT +faT +faT +faT +faT +faT +faT +cAQ +czt +eMr +cAg +kBj +czz +czz +czz +xTS +czV +kEb +czz +czz +czz +nlZ +cAi +cAf +czT +akJ +czU +czx +czx +czx +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(161,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVO +eMG +cWx +asZ +asY +cFx +cGk +cGk +cGk +cGa +cFx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cDR +cDR +sSu +cDR +cDR +cDR +cDR +cDR +cDR +cDR +noS +cDR +cDR +cDR +cDF +cDm +cDm +cBh +cBh +cBh +cBx +cBh +cBh +cBh +cBh +cBo +cBG +avz +cBt +cBh +cBh +cAS +cAS +dXp +cAS +wSQ +cAS +cAS +cAS +cAS +cAR +alB +alt +cAg +kBj +czz +czz +czz +xTS +alb +kEb +czz +czz +czz +akS +cAi +cAg +cAe +czy +czy +akB +eUp +czy +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(162,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVO +cGU +cWx +cUW +cUW +cUW +cWC +eMF +cWx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cEn +jSV +nXP +cCq +cDT +tRc +hLu +cDS +eTG +cfi +dll +gSC +aFj +pyZ +cDz +rbr +jhg +cBu +cBq +cBq +cBq +cCz +rrT +cBq +cBq +cBO +cBq +cBu +cBu +kvK +gFy +cAW +cAW +wEy +cAW +cAW +cAT +dza +cAT +cAT +fcX +eUr +cAi +cAg +cAF +lSe +lSe +lSe +ald +cAz +cAz +lSe +lSe +lSe +cAq +cAl +cAg +czt +mZM +mZM +mZM +mZM +mZM +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(163,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cIc +cGM +cGM +cGM +cHw +cHw +cHw +eMb +cGM +cGM +cGU +ekp +cUW +cUW +cUW +cWC +cGs +cWx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cEn +oJk +dkV +bih +eTG +rAQ +dRI +gSC +gHx +cDT +dll +cDT +cEa +meo +cDz +aJN +rbr +fkc +cBu +cBr +cBq +cBq +uwL +cBu +tjP +cBu +cBu +cBq +cBq +cBq +cBj +cAW +cAT +cAW +cAT +cAT +cAV +cAT +cAT +cAT +fcY +eUs +asM +cAH +akV +akP +akP +akP +akP +akP +aaI +akP +akP +akU +czU +cAl +cAg +czt +awv +czz +czz +czz +czz +czt +chs +chs +chs +chs +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(164,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cIc +cHw +eTu +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +eTm +eMb +cGM +cGV +cGM +cVs +cVs +cVs +cGl +cGs +cGl +cVs +cVs +cVs +cVs +cVs +cVs +cVs +cVs +cVs +cVs +cVs +cVB +cUW +cDR +oDA +vXn +dkj +gUQ +cDy +cDy +cDy +cDy +cDy +cDy +cDy +cDT +cDS +cDz +cBP +rbr +cBu +cBq +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBu +rBq +cBu +cBr +cBk +cAW +cAY +cAT +dza +cAW +cAT +cAT +cAT +cAT +fcX +eUr +cAK +cAn +cAn +cAn +cAr +alg +cAr +cAn +cAn +cAn +akW +cAn +cAr +cAm +cAg +czt +czz +czz +czz +czz +czz +czt +cWe +cWe +cWe +cWe +chs +chs +chs +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(165,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cGM +cGZ +cGZ +cGZ +cGZ +cGZ +cHa +cHa +cHa +cGZ +eTm +cHw +eMb +cGN +hsz +cEZ +cEZ +cGm +cFp +cGm +cEZ +nqs +cEZ +cFi +cFi +cFi +bmN +cEZ +cEZ +cEZ +fJd +cVC +cVs +cDR +cDR +cDR +foM +eDf +cDy +cEk +cEk +cEk +cEk +cEk +cEh +vNa +cDS +oAw +cBP +rbr +cBu +cCQ +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBq +jJk +cBh +cBh +cBh +rFN +rFN +rFN +rFN +oaz +aDF +oaz +oaz +oaz +fcZ +alC +cAv +alr +aaL +aaL +aaL +aaL +aaL +aaL +aaL +akY +aaL +cAv +akT +akO +fIR +czt +czz +czz +czz +czz +czz +czt +cWe +cWe +cWe +cWe +chs +chs +chs +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(166,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cGM +cHa +cHa +awZ +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +cHa +cGW +cGN +cFa +cFa +cFa +cFa +cGt +cFj +cFj +cFj +cFa +cFa +cFa +cFa +cFj +cFj +cFa +cFa +qvt +cFi +cEZ +tKg +cDT +cDT +cDT +cDS +cDy +cEk +cEk +cEk +cEk +cEk +cEh +jcp +cDS +cDz +cBP +rbr +cBu +cCQ +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBq +cpV +sNv +cBh +fbf +eMj +tyM +tyM +tyM +tyM +tyM +tyM +tyM +tyM +cAQ +czt +czt +czL +czL +czt +czt +czt +czL +czL +czL +czt +czt +czt +czD +czD +czT +czt +czz +czz +czz +czz +czz +czt +cWe +cWe +cWe +cWe +chs +chs +chs +chs +chs +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(167,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cGM +cHa +cHa +cGZ +cGZ +cGZ +cGZ +cGM +cGZ +cGZ +cGZ +cHa +cGW +cGN +cFa +cFa +cFa +cFa +cGu +cFa +cFa +cFa +cFa +cFj +cFj +cFj +cFa +cFa +cFj +cFj +cFj +cFj +cFa +oiA +cEb +nsL +cDS +cDT +cDy +cEk +cEk +cEk +cEk +cEk +cEh +vNa +cDS +xwa +cBP +aJN +cBu +cCQ +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBq +cBu +duT +cBl +fbg +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +fdb +fbd +eSE +eSD +eSA +eSA +eSA +eSz +cAQ +czC +djr +czC +czC +djr +czt +czT +dTA +dTx +czt +czz +czz +czz +czz +czz +czt +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(168,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cGM +cHa +cHa +cHa +cGM +cGM +cGZ +cGM +cGZ +cGZ +cGZ +cGZ +cGW +cGN +cFb +voX +cFa +cFa +cGt +cFl +cFj +cFa +cFa +cFa +cFa +cFa +cFa +cFa +cFj +cFj +cFa +cFa +cFa +cEW +cDT +ykY +cDS +cED +cDy +cEk +cEk +cEk +cEk +cEk +cEh +vNa +cDS +cDG +cDy +cDn +cBu +lgd +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBH +cBq +iqX +cBl +fbg +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +fdb +fbd +czB +czB +eSB +eSB +czB +czB +crR +djr +djr +czC +djs +djr +czt +czt +czt +czt +czt +czt +czL +czL +czt +czt +czt +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(169,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cGM +cHa +cGZ +cGZ +cGM +eMJ +cGZ +cGZ +cGZ +cGZ +awx +cHa +cGX +cGM +nRS +nVD +cFa +cFa +cGl +cFa +cFa +cFj +cFk +saN +wBO +cFb +cFb +cFp +cFa +cFa +cFl +cFa +cFa +cEW +cDS +hkG +cDS +cDT +cDy +cEk +cEk +cEk +cEk +cEk +cEh +jcp +cDS +cDH +cDy +aJN +cBq +cCR +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBu +lJr +kcv +cBl +fbg +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cAR +cAc +cAc +cAc +cAc +cAc +cAc +cAc +cAc +cAc +cAc +djt +djt +cAc +cAc +cAc +cAc +cAc +djt +czY +czO +czG +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(170,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cGM +eMe +cHa +cGZ +cHa +cHa +cHa +cHa +cHa +cGZ +eTn +atb +eTl +cGM +cWC +cFN +cFN +uUs +cGl +ayH +cFN +cFN +cWy +cWy +cWy +cWy +nRS +vKf +cFb +cFb +cFb +cFk +cFb +cEW +cDT +cDS +kmN +cDT +cDy +cEk +cEk +cEk +cEk +cEk +cEh +jcp +cDS +cDH +cDy +oic +cBq +cCR +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBu +cBu +eGC +cBh +fbg +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(171,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cHq +cId +cId +eTo +eTt +cId +cId +cId +cId +eTo +cGX +cGM +cGM +cGM +cUW +cUW +cUW +cWC +cGv +cWx +cUW +cUW +cUW +cUW +cUW +cUW +cUW +cWy +cWy +cWy +cWy +cWy +cWy +cDR +cDR +cDR +jtQ +cDS +cDy +cEk +cEk +cEk +cEk +cEk +cEh +vNa +cDT +cDH +cDy +aJN +cBq +cCR +cCN +cCb +cCb +cCb +cCb +cCb +cBP +cBu +cBq +cBw +cBh +fbg +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(172,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cyL +cVR +cVR +cUc +cGZ +cUc +cUc +cHq +cHc +cHx +cHx +cHx +cHx +cHq +cHc +cGM +cUc +cVM +cUc +cUc +cUc +cUc +cVK +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cDR +dAF +cDT +cDT +cEb +cDy +cDy +cDy +cDy +cDy +cDy +cDy +cDS +cDT +cDH +cDy +rbr +cBr +cBu +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBu +cBq +cBr +cBh +cBh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(173,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cyL +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUa +cHT +cHE +cHE +cHy +cVP +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cEn +cES +iOO +cEG +cGn +cDT +rAB +uln +tFM +cDS +qpA +qek +kmN +byU +cDz +cDz +rbr +cCz +auL +cBu +cBu +cBu +cBv +cBu +fgL +cBu +cBu +oVl +cBq +rbr +cBl +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(174,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cyL +cyL +cUc +cUc +cUc +cUc +cUc +cUc +cUa +cHT +cHK +cHE +cHy +cVP +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cEn +tMr +cEM +cDS +cAA +cDS +cDS +krq +niM +qek +qek +etF +cEb +cDT +aVV +ock +wnN +cBu +cBu +cBu +cBq +cBq +cAB +lTm +lTm +lTm +cBq +sOE +cBu +aJN +cBl +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +aky +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(175,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUa +cHT +cHM +awG +cHy +cVP +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cDR +cDR +cEl +cDR +cDR +cDR +cDR +cDR +cDR +cDR +cEl +cDR +cDR +cDR +cDA +cDA +cDo +cBh +cBh +cBh +cBt +cBh +cBh +cBh +cBh +cBh +cBh +cBh +cBx +cBh +cBh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(176,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUa +cHT +cHM +cHE +cHy +cVP +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cDR +obZ +ftC +fCh +cDR +cEB +cDR +ofF +cDR +rxU +cEm +vUK +cDR +cDU +cDp +cDs +cDp +cDc +cBg +cCA +cCA +uFw +cBh +nwm +cBh +cBQ +cBh +aNO +cBy +qaZ +cBh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +pRQ +lHo +czP +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(177,1,3) = {" +sqe +cKE +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aky +aky +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUa +cHT +cHE +awH +cHy +cVP +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cDR +pEv +cEN +oJT +cEE +dZn +cDR +wDy +cEq +czN +pOc +pOc +cDR +cDU +cDs +cDp +cDr +cDc +adl +bCO +cCA +cCA +lOh +qBv +cBh +bOh +okz +cBy +lkA +puH +cBh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +uWR +czQ +aJu +czH +czq +cWe +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWe +cWe +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(178,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cyL +cyL +cUc +cUc +cUc +cUc +cFB +cFB +cFK +cFP +cFP +awI +cFP +cFK +cFB +cFB +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cDR +xFW +pSi +xdp +cDR +sRw +cDR +cEr +cDR +kUK +rFS +wOA +cDR +cDU +cDI +cDp +cDp +cDc +nrS +bbL +fyy +cCA +cBh +uwn +cBh +cmQ +cBh +nyL +tam +mBM +cBh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +nQz +czH +czR +blv +czr +cWe +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWe +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(179,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cyL +cUc +cUc +cUc +cUc +cFB +cFB +cHr +cHr +awV +awP +awJ +awB +cHd +cHd +cFB +cFB +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cDR +cDR +cEn +cDR +cDR +cDR +cDR +cDR +cDR +cDR +cEn +cDR +cDR +cDU +cDJ +cDs +cDp +cDc +xUK +cOM +cBl +cBh +cBh +cBh +cBh +cBh +cBh +cBh +eMn +cBh +cBh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +czZ +czu +czu +bdk +czq +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWe +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(180,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +cyL +cVR +cVR +cVR +cUc +cFB +afs +cHd +cHW +cHr +cHN +awK +cHr +awz +cHd +afr +cFB +cUc +cUc +cUc +cUc +cUc +cGw +cFO +cFO +cFO +cFy +ang +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUX +eLM +eLL +eLK +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cUa +cDU +cDp +cDs +cDp +cDd +cWh +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +vGK +eMo +fLH +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +czZ +fat +fat +czu +bdk +czq +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(181,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cFB +axd +cHd +cHN +awW +awQ +jMZ +awC +cHd +awy +aww +cFB +cUc +cUc +cUc +cUc +cUc +cGx +cFH +cFH +cFG +fcx +cFy +cUc +cUc +cUc +cUc +cUc +cUc +cUc +jGO +cWU +uNi +uaj +fGr +cUx +cUp +cUp +cUp +cUp +jGO +cWU +cWU +uNi +cUa +cDU +cDp +cDs +ddF +cDd +cWh +cWe +cWe +cWe +cMv +cMv +cMv +cWe +cWe +cWe +eMp +cWe +cMv +cWe +cMv +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +czZ +fat +fat +czu +fat +czr +cWf +cWf +cWf +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(182,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cFB +afs +cHZ +bkx +cHU +cHA +cHA +cHz +jEF +cHd +aww +cFB +cUc +cUc +cUc +cUc +cUc +cGx +cFH +eLS +cFG +cFG +cFz +cUc +cUc +cUc +cUc +cUc +cUc +cUc +cRj +cVe +cUY +cMv +cUB +uaj +uaj +uaj +uaj +uaj +uaj +uaj +uaj +fGr +lPX +hoV +cDp +cDs +cDs +cDd +cWh +cWe +cWe +cWe +cMv +cMv +cMv +cMv +cMv +cMv +aay +cMv +cMv +cMv +cMv +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +czZ +czA +czA +czA +czA +czr +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(183,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cFK +axe +cHr +bkx +cHA +cHA +cHA +cHA +jEF +cHd +afr +cFK +cFy +cUp +cUp +cUp +cUp +cGA +fcK +cFG +cFG +eUt +cFA +cUp +cUp +cUp +cUp +cUp +cUp +cRj +cRl +cOz +cUZ +cMv +cMv +cMv +cUg +cTC +cMv +cMv +cMv +cUg +cUg +cMv +cMv +cDU +cDs +cDs +cDs +cDd +cWh +cWe +cWe +cMv +cMv +cTd +cTd +cTd +cTc +cSq +cSI +cSy +cMv +cMv +cWU +uNi +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSt +eLx +eSm +eLu +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(184,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cFK +axe +axa +bkx +cHA +cHA +cHA +cHA +jEF +cHd +afr +cFK +eMA +eLN +eLN +eLN +eLN +eMy +cGx +cFG +cFG +cFz +eMA +eLN +eLN +eLN +eLN +eLN +eMy +cRl +cVk +cVf +cOx +cUN +cUC +cMv +cUk +cOx +cMv +fbP +fbK +cRk +cRu +cRD +cMv +cMv +cTC +cTC +cTC +cMv +cMv +cMv +cMv +cMv +cTd +cTd +cTd +cTd +cTd +cSU +cSJ +cSz +cSm +aay +adp +hSM +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSu +eSs +eSn +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(185,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cFK +axd +cHN +bkx +cHA +cHA +cHA +cHA +jEF +awy +afr +cFK +cFA +cVK +cVK +cVK +cVK +cGw +fcL +cFG +eLQ +fcx +cFy +cVK +cVK +cVK +cVK +cVK +cVK +cVt +cVl +cVg +cVa +cUO +cUD +cMv +cOx +cUo +aay +cRu +cRu +cRu +cRu +cRD +cMv +cTw +cTO +cTw +cTw +cTw +cTt +cTo +cTo +cMv +cTd +cTd +cTd +cTd +cTd +cSV +cSK +cSq +cSn +aay +adp +hSM +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSu +eSs +eSo +eLu +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(186,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cFB +afs +axb +cHd +awX +btz +awL +awD +cHd +cHd +cFB +cFB +cUc +cUc +cUc +cUc +cUc +cGx +cFG +cFG +cFH +cFH +cFA +cUc +cUc +cUc +cUc +cUc +cUc +cVu +cVm +cOw +cUl +cUP +cUE +cMv +cXP +cUl +aay +cRu +cRu +eQF +cUh +cRD +cMv +cTU +cOa +cOa +cOa +cOx +cOw +cOx +cTo +cMv +cTd +cTd +cTd +cTd +cTd +cSW +cSp +cSq +cSo +cMv +cMv +hSM +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSu +eSs +eSn +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(187,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cIg +cIe +axc +cHd +awy +awS +awM +awE +cHr +cHe +cFB +cUc +cUc +cUc +cUc +cUc +cUc +cGx +cFG +cFG +cFG +cFH +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cVv +cVn +cVh +cOx +cUQ +cUF +cMv +cOx +cOx +cUs +cRu +cRu +cUi +cRu +fbz +cMv +cOx +eQD +cOa +cOa +cOw +cQW +cOx +cTp +cMv +cTd +cTd +cTd +cTd +cTd +cSW +cSp +cSp +cSp +cMv +cMv +hSM +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSu +eSs +eSk +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(188,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cFB +axf +cIb +xxI +awY +cHd +cHF +lRy +aQS +cFB +cFB +cUc +cFB +cFB +cFB +cFB +cFB +cFK +cGb +cGb +eLR +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cVw +cVo +cOZ +cVb +cNN +cUG +cMv +cOw +cOx +cMv +cUq +cRu +cRu +cRu +fbz +cMv +dqq +cOa +cRs +cNN +cOw +cNN +cOx +cTo +cMv +cTd +cTd +cTd +cTd +cTd +cSX +cSL +cSA +cSp +cMv +cMv +hSM +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSu +eSs +eSo +eLu +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(189,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFK +cFT +awT +cGj +cFK +cFB +cFB +cUw +cFB +cFB +aDJ +cGh +aDv +aDt +wQh +aDl +kSP +yfv +cFK +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cMv +cVp +cVi +cRu +cMv +cMv +cMv +cOw +cOx +cMv +cMv +cUm +cUj +cRu +fbA +cMv +cTV +cOa +cNN +cNN +cOz +cNN +cTs +cTo +cMv +cTd +cTd +cTd +cTd +cTd +cSX +cSM +cSB +cSq +cMv +cMv +hSM +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +eSx +eSu +eSs +eSn +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(190,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cGx +cHH +cHV +awU +cFn +cFn +cFq +cHf +cVP +cFB +aDT +aDK +cFS +cFS +cFR +aDp +cGg +cGc +aCY +cFK +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cMv +cVq +cOx +cOx +cOw +cOw +cOw +cOx +cUt +cOw +cMv +fbL +cRu +fbD +cUd +cMv +cTV +cNN +cNN +cNN +cNO +cNN +cOw +cTo +cMv +cTd +cTd +cTd +cTd +cTd +cSX +cSq +cSC +cSm +aay +eLF +hSM +cjc +cjc +cjc +cjc +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cjc +cjc +cjc +cjc +cjc +eSx +eSu +eSs +eSn +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(191,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cGA +cHX +cHO +cHO +cHG +awF +cFq +cHf +cVP +cFB +aDV +cFS +cGh +cGh +cGp +hVw +cGg +cGd +aCZ +cFB +cFB +cWA +cWA +cWA +cWA +cWA +cWA +cMv +cOw +cVj +cXU +cOx +cUH +cOx +cNO +cNO +cOw +cMv +cMv +cRD +cRD +aay +cMv +cTW +cNN +cNN +cNN +cNO +cNO +cOw +cOx +cMv +cMv +cTd +cTd +cTd +cTe +cSp +cSp +cSp +cSr +aay +adp +hSM +cjc +cjc +cjc +cjc +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cWe +cjc +cjc +cjc +cjc +cjc +eSx +eSu +eSs +eSo +eLu +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(192,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cWF +cWE +cWE +cWD +cHH +cFn +awA +cHf +cVP +cFB +aDW +cFS +cFS +cGh +cFB +aDp +cGo +cGe +aCY +cFI +cFC +cFm +cFm +cFm +cFm +cFm +cFm +cVx +cOw +cOK +cOw +cOY +cOx +cOw +cOx +cOK +cOx +cOx +cOx +cOw +cOY +cOx +cOw +cNN +cNN +cOa +cOa +cNN +cTu +cNN +cOr +cMv +cMv +cMv +cMv +cMv +cMv +cMv +aay +cRD +cSs +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWe +cWe +cWe +cWe +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +eSx +eSu +eSs +eSk +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(193,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFK +cGb +cGb +cFK +cVQ +cFB +aDX +cGh +cFS +aDw +cFB +hVw +cGe +cGf +aCY +cFJ +cFq +cFn +cFn +cFq +cFq +cFn +cFn +cVy +cOx +cOx +cOw +cUR +cUI +cUy +cOx +cOx +cOx +cOK +cNO +cOx +cXP +cOK +cNO +cOw +cNN +cNN +cOa +cOa +cNN +eQB +cTq +cTn +cMV +cME +cMG +cMG +cMG +cMG +cMG +cME +cMG +aay +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +eSx +eSu +eSs +eSn +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(194,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFB +cGF +cHB +cGF +cFB +cFB +cFB +cFB +aDL +cFS +aDx +cFB +hVw +cGg +cGg +aCY +cFJ +cFq +cFq +cFq +cFn +cFn +cFn +cFn +cVx +cOx +cOx +cOw +cUS +cUJ +cUz +cOw +cOz +cOw +cOw +cOw +cOx +cOx +cOx +cUb +cOw +cNN +cQW +cNN +cNN +cTv +cNN +cOr +cNy +cMG +cMG +cMG +cME +cME +cME +cME +cNa +cMU +aay +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +eSx +eSu +eSs +eSo +eLu +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(195,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFK +cHP +cHI +aEh +cGF +cHh +cFB +cFB +aDY +cGh +aDB +cFS +cFB +aDp +cGc +cGg +aDa +cFJ +cFn +cFq +cFn +cFn +cFn +cFn +cFn +cVx +cOw +cUt +cOw +cUT +cUK +cUA +cOw +cXT +cOw +cMv +aay +aay +aay +aay +cMv +cTW +cTP +cOa +eQB +cNN +cNN +cOx +cMz +aay +cMJ +cMJ +cMJ +cMx +cTf +cMJ +cMJ +cMG +cMG +aay +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +eSx +eSu +eSs +eSn +eSk +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(196,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFB +veW +wSa +cGS +cGF +cGF +cGE +cFB +aDV +cGh +aDC +cFS +cFB +urc +aDm +aDg +tor +cFJ +cFD +cFo +cFo +cFo +cFo +cFo +cFo +cVx +cOw +cOK +cOx +cOw +cOx +cOw +cOw +cNO +cOw +cMv +cXO +cXO +cXO +cXO +cMv +cTX +cNN +cTJ +eSY +cNO +cNO +cOx +cOx +cMv +cMv +cMv +cMv +cMv +cMv +aay +aay +cRD +cSs +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +eSx +eSv +eLy +eLv +eLu +eSf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(197,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +elH +cHl +cGF +cGE +cFB +aDV +cGh +aDD +aDy +cFB +cGy +cGp +cFR +cFR +cFB +cFB +cWB +cWB +cWB +cWB +cWB +cWB +cMv +cOx +cOK +cXU +cOx +cUL +cOx +cOK +cUu +cOw +cMv +fbM +fbH +fbE +fbB +cMv +cTY +cOa +cTQ +cTD +eSX +eSW +cPk +cTr +cMv +cMv +cTd +cTd +cMv +dYm +cSY +cSN +cSt +cSt +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czZ +fay +czR +czR +czR +czr +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(198,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +elH +cHs +cGe +cGE +cFB +cGP +aDM +cFS +cGh +cFB +cGh +cGh +cGh +aDb +cFK +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cMv +fcp +fcf +fcf +fcf +fca +fbZ +fbU +fbI +fbT +dTp +fbN +cOK +cXU +cUe +cMv +cXO +eTb +eSZ +cTD +eSX +cMv +cMv +cMv +cMv +cTd +cTd +cTd +cMv +cTg +cSH +cSH +cSt +cSt +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czZ +fat +fat +fat +czu +czr +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(199,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +elH +cGF +cHi +cGc +cFB +cFB +cGy +cFR +cGp +cFB +cGh +cGq +cGh +aDc +cFK +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cMv +cMv +cXS +cXV +cXV +cQw +cMv +cXS +cXS +cMv +cMv +fbN +cNO +cXQ +cUE +cMv +cXO +cQU +eTa +cTE +cOa +uZE +cTd +cTd +cTd +cTd +cTd +cTd +cMv +cTh +cSt +cSO +cSD +cSu +aay +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWj +cAb +czA +czA +czA +beQ +czr +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(200,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +cHD +cGo +cGD +cGD +aEe +cGQ +cGg +cGE +cGo +cGp +cFS +cFS +cFS +dTC +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +fct +cMv +fcl +fcg +fcg +fcb +cMv +fbV +fbQ +fbQ +fbQ +cUn +cOx +cOw +cUE +dTp +cOx +eQD +cOK +cTE +cOa +uZE +cTd +cTd +cTd +cTd +cTd +cTd +cMv +cTi +cSt +cSP +cSE +cSu +aay +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWk +vBa +czI +czI +qck +dAD +czs +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(201,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFK +cHA +cHA +cHA +cHD +cGo +cHj +cGg +cGY +aDZ +cGg +cGF +cGo +cGp +cFS +cGh +aDh +cFB +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +fct +aay +fcm +cOK +cOx +fcc +cRD +fbR +cOx +cOx +cOx +cOw +cUl +dlx +cUE +cMv +cOx +cTQ +cOK +cOa +cTx +uZE +cTd +cTd +cTd +cTd +cTd +cTd +cMv +cSt +cSH +cSQ +cSF +cSv +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWk +uCB +czJ +czJ +nnT +cWg +cjc +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(202,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFK +cHA +cHA +cHA +cHD +aDn +cGD +aEf +cGY +aEa +aDN +cGD +cGD +aDu +cGh +cFS +cGi +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +fct +aay +fcn +cOx +cUU +fcc +cRl +fbR +cUv +fbI +cXR +cOK +cOK +cOx +cUE +cMv +cOx +cOa +cNN +cTF +cOa +uZE +cTd +cTd +cTd +cTd +cTd +cTd +cMv +cTj +cSH +cSH +cSH +cSt +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWk +uCB +czJ +czJ +nnT +cWg +cjc +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(203,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFK +cHA +cHA +cHA +cHD +aEg +cGe +cGg +cGY +cGR +cGc +cGF +cGo +cGp +aDr +cFS +aDi +cFB +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +fct +cMv +fck +fci +cOx +fcc +cRj +fbN +cUE +cMv +fbN +cOK +cXU +cOx +fbC +cMv +cPr +cTE +cTK +cTG +cTz +uZE +cTd +cTd +cTd +cTd +cTd +cTd +cMv +cTk +cSZ +cSR +cSH +cSw +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWk +dmc +czK +czK +ubZ +cWg +cjc +czn +czh +czh +cze +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(204,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +cHD +cGo +cHk +cGD +adK +cGS +aNf +cGE +cGo +cGp +cGh +cGh +cFS +aDd +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +fct +cMv +fco +fcj +fch +cUM +cMv +fbW +cPq +cMv +fbS +fbO +fbU +fbI +cUf +cMv +cTZ +cTR +cTL +cTA +cTA +cMv +cMv +cMv +cMv +cTd +cTd +cTd +cMv +cTl +cTa +cSS +cSH +cSt +cMv +adp +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cWl +czn +czh +czh +czh +mfL +czh +aSn +fas +czi +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(205,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +elH +cGF +cHi +dkW +cFB +cFB +cGy +cGp +cGp +cFB +cGh +cGh +aDj +aDc +cFK +cWw +cWw +cWw +cWw +cWw +cWw +cWw +vGK +fcs +cMv +fck +fcf +fce +cMv +aay +aay +cMv +cMv +aay +aay +cQw +cMv +cMv +cDU +cDs +cDs +cDs +cDd +cWt +cWo +cWo +cMv +cMv +cTd +cTd +cMv +cTm +cST +cST +cSH +cSx +cMv +eLG +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czi +czi +fas +fas +fas +fas +fas +czi +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(206,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +elH +cGe +cHl +cGE +cFB +eNA +aDP +cFS +cGh +cFB +aDs +cGh +cFS +cFS +cFK +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +fct +cMv +aay +aay +aay +cMv +fdd +kDt +kDt +kDt +kDt +kDt +fcs +uNi +cWu +cDU +cDs +cDs +eQC +cDd +cWt +cWo +cWo +cWo +cMv +cMv +cMv +cMv +cMv +aay +aay +cMv +cMv +cMv +cMv +hSM +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +blF +czk +czk +czk +czk +czk +czk +agh +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(207,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cHA +cHA +cHA +elH +cGF +cGe +cGE +cFB +aEb +cFS +cFS +aDz +cFB +cGz +cGp +cFR +aDe +cFB +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +vGK +kDt +kDt +kDt +kDt +kDt +fLH +cWo +cWo +cWo +cWo +cWo +vGK +fLH +cWu +cDU +cDs +cDs +cDs +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +vGK +kDt +fLH +eLJ +vGK +kDt +fLH +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czf +czl +czo +czo +czo +czo +czl +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(208,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFB +vsi +hqn +cGQ +cGF +cGe +cGE +cFB +aEc +cFS +aDc +dTD +cFB +wQh +kSP +aDk +kSP +yfv +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +cDs +cDs +cDI +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +eLJ +cWt +cWo +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czf +czm +eXN +eXN +eXN +eXN +czm +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(209,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFK +aEi +cHJ +cGS +cGF +cHm +cFB +cFB +eNA +cGh +aDE +aDA +cFB +aDp +aDn +cGc +aDf +xBV +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +cTS +cDs +cDs +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +eLJ +cWt +cWo +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czf +nnT +czp +czp +czp +czp +uCB +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(210,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFB +cGe +cGe +cGF +cFB +cFB +cFB +cFB +aDQ +aDH +cFS +cFB +urc +aDg +aDg +vqS +aCX +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +cDI +cDs +cDs +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +eLJ +cWt +cWo +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czf +nnT +czp +czp +czp +czp +uCB +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(211,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cFB +cFK +cFK +cFK +cFB +cVR +cFB +cGP +cGh +aDI +aDd +cFB +cFK +aDo +cGj +cFT +cFK +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +eQC +cDs +cEV +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +eLJ +cWt +cWo +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czf +nnT +czp +czp +czp +czp +uCB +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(212,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cGA +eMI +cFA +cVR +cVR +cFB +cGT +aDR +aDd +cFB +cFB +cFG +cFG +cFG +cFG +cFG +cFB +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +cDs +cDs +cDs +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +eLJ +cWt +cWo +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czj +czf +nnT +czp +czp +czp +czp +uCB +czj +czg +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(213,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVO +eLY +eLW +cVR +cVR +cFB +aEd +aDS +cFB +cFB +cFG +cFG +cFG +cFG +cFG +cFG +cFz +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +cEV +cTM +cDs +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +eLJ +cWt +cWo +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czS +czf +czl +fXs +fXs +fXs +fXs +czl +czj +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(214,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVO +eLY +eLX +eLV +eLV +cFB +cFB +cFB +cFB +cFG +cFG +cFG +cFG +cFG +cFG +cFG +cFz +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +csg +vlX +rof +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWu +cDU +cDs +cDs +cDs +cDd +cWt +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +eLI +ejg +eLJ +eLI +ejg +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +aQu +czh +czh +czh +czh +czh +czh +aSn +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(215,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVO +eLZ +eLN +eLN +eLN +eMH +cGx +cFG +cFG +cFG +cFH +cFH +cFH +cFG +cFG +cFH +cFz +cWw +cWw +cWw +cWw +cWw +cWw +rPp +afa +aeX +aeV +aeT +oGc +gkC +aeO +aeJ +hzQ +dbH +cCS +cET +cCm +cCn +cCm +cDV +cDK +tgN +cDt +xfF +ejq +cAZ +ejh +ejh +cAZ +cAZ +cAZ +cAZ +cAZ +cAZ +ejh +ejh +ejh +cAZ +eLH +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czh +czh +czh +czh +czh +czh +czh +czh +cze +cjc +cjc +czj +czi +fas +fas +fas +czi +czi +aQu +cze +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(216,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cWF +cWE +cWE +cWE +cWE +cGA +cFU +cFU +cFU +cFU +cFU +eTi +cFH +cFG +cFG +cFH +cFz +cWw +cWw +cWw +cWw +cWw +cWw +vBb +afb +cWM +aes +aes +aes +oHl +cWM +fhA +aeH +aeF +aeA +aew +aer +aeo +pKS +dbH +cFd +cCm +aKi +cCc +cCc +ejj +ejn +eji +ejj +ejm +ejj +ejj +cjv +ejj +eji +eji +eji +cAZ +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czi +czi +czi +czi +czi +czi +czi +czi +aQu +czh +czh +aSn +fav +fau +czk +czk +czk +czk +agh +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(217,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cGx +cFG +cFG +cFG +cFH +cFz +cWw +cWw +cWw +jSi +ckS +afl +afi +afc +aeY +aep +aep +aep +aep +aep +qdh +qjM +aes +aes +cWM +aes +qvB +aem +cCn +dbH +cFc +cCm +eji +ejm +pMc +pMc +eRa +sQi +ejm +eji +cBR +eji +ejj +ejj +ejj +ejj +eji +ejh +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czp +czp +czp +czp +czp +czi +czi +czi +czi +czi +czi +fas +faw +eRU +eSh +eSh +eLt +eRW +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(218,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cGx +cFG +cFG +cFG +eUt +cFA +cWw +cWw +cWw +aui +afn +vaR +afj +afd +aeK +aes +cWM +qFp +fhA +aes +aeK +aep +aep +aep +aep +cgM +aep +gbj +cCS +ejt +ejs +wBS +cCn +ejm +uxo +uxo +uxo +bxM +cCc +ejj +cBT +eji +eji +eji +eji +ejn +eji +ejh +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czp +czp +czp +czp +czp +czp +czp +tRd +tRd +tRd +czi +czi +czf +eSp +eSi +eSi +eSb +eRX +eRU +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(219,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cGA +cFU +cFU +cFU +cFA +cWw +cWw +cWw +cWw +aui +afo +vaR +aes +iUP +aeZ +aeW +aeU +aeS +aeQ +aeP +ejv +aep +aep +aep +aep +aep +aep +oHl +cCn +dbH +cCn +cCn +cCn +bVr +cCc +ejm +ejm +cCc +cCc +ejj +cBR +eji +eji +eji +ejk +ejj +ejj +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czp +czp +czp +czp +czp +czp +czp +tRd +tRd +czi +czi +czi +czf +eSp +eSi +eSi +eSc +eRY +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(220,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bTM +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cVR +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +aui +afp +vaR +oHl +afe +aeK +qjM +qvB +cWM +qvB +aes +aeK +aep +aep +aep +aep +aep +nkI +gkC +cCS +cTB +kfw +cCn +cDf +clu +cCc +ejj +eji +ejm +ejn +xRO +eji +ejj +ejj +ejj +eji +eji +eji +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czp +czp +czp +czp +czp +czp +czp +czi +fas +czi +fas +czi +czf +eSq +eSl +eSc +eRX +eRZ +eRU +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(221,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +cVR +cVR +cVR +cVR +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +jzz +oGQ +afm +afk +aff +fmH +aep +aep +aep +aep +aep +aeL +qjM +gLb +aeB +fhA +gLb +oHl +oks +yef +dNr +cCn +cVr +cVr +clu +clu +aFr +dSx +its +eji +lJn +aKJ +eji +eji +eji +eji +eji +eji +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czp +czp +czp +czp +czp +czp +czi +czi +czi +fas +fas +fas +czi +czf +eSr +eRX +eSj +eSd +eSa +czj +czf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(222,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +fcP +fcB +fcE +fcE +fcB +fcu +cWw +cWw +cWw +cWw +cWw +cWw +cWw +uol +afg +qFp +gLb +aes +gkC +aes +aes +feh +aeI +aeG +cOD +gmO +sUa +kbv +mFV +dbH +ide +cVr +vHk +wuK +clv +lJn +ejk +eji +nIV +nIV +aFr +cBR +eji +eji +eji +ejj +ejj +ejj +ejh +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +czp +czi +czi +czi +czi +czi +czi +czi +czi +czi +blF +czk +czk +agh +aQu +czh +eRU +czh +eRU +czh +eRV +czg +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(223,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faG +faG +faG +fcF +fcF +faG +fcy +fcu +cWw +cWw +cWw +cWw +cWw +cWw +iRh +afh +aeM +aeM +gbj +aes +oHl +aes +aeM +sXp +cCS +cCn +cDg +cDW +cCS +dbH +cDW +oHQ +cVr +cVr +cVr +mSf +aKN +lJn +lJn +cCc +ejj +ejk +cBR +cBJ +cBD +ejl +eji +eji +ejk +ejh +cze +eLC +eLC +eLC +eLC +eLC +eLC +eLC +eLC +eLC +eLC +eLC +eLC +czn +czS +czk +czk +czk +czk +czk +czk +czk +czk +czk +czg +cWf +cWf +czS +czk +czk +czk +czk +czk +czk +czg +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(224,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fcQ +faG +fcM +fcG +fcD +fcz +fcw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +cAZ +cAZ +cET +dbH +cCm +cET +cCm +dbH +wfl +rDA +cBc +cBc +cBc +cBc +acR +cCj +cCn +ejs +uxo +bxM +bxM +ejm +cmz +cCc +cCc +ejj +cBR +eji +eji +eji +eji +eji +eji +ejh +eMg +eLB +eLB +eLB +eLB +eLB +eLB +eLB +eLB +eLB +eLB +eLB +eLB +cuU +czf +eMl +eMl +eMl +eMl +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(225,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faG +fcN +fcH +fcD +fcz +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +cBc +cBc +ejx +cCS +aKZ +cCn +eji +xRO +cDu +cCe +cBc +cBc +cBc +tVQ +aKV +kuo +lJn +eji +eji +cCc +aKQ +ejj +eji +ejk +ejm +eji +cBR +eji +eji +eji +ejj +ejj +ejj +ejh +eLE +eLD +eLD +eLD +eLD +eLD +eLD +eLD +eLD +eLD +eLD +eLD +eLD +czS +czg +eMl +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(226,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +fcQ +faD +faD +faD +faD +faD +faD +faD +faA +faz +faz +faz +faz +faz +faI +faG +fcN +fcH +faG +fcy +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +cBc +cBc +ejy +ejw +cCe +eji +eji +eji +eji +cAZ +cBc +cBc +cBc +cBc +acU +ejn +eji +aKK +eji +eji +ejm +eji +eji +eji +cCo +eji +eji +ejj +ejj +ejj +eji +eji +eji +ejh +cjc +cjc +cjc +cjc +cjc +cjc +cjc +cjc +faV +faQ +faM +cjc +faG +eMl +eMl +eMl +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(227,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +fcQ +fcT +faE +faE +faE +faE +faE +faE +faE +fcR +faA +faz +faz +faz +faz +faI +faG +fcN +fcH +faG +fcy +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +cBc +cBc +ejy +aKY +cAZ +eji +ejk +cBR +cBR +cCJ +aKX +cBc +cBc +cBc +acW +aCV +aKM +eji +aKR +eji +ejm +cBR +eji +ejj +cCc +cCc +ahh +eji +eji +eji +ejk +ejj +ejj +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +faZ +faW +faR +faN +faK +faG +faz +faz +faz +faz +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(228,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +fcQ +fcT +faE +faE +faE +faE +faE +faE +faE +faE +faE +fcR +faA +faz +faz +faz +faI +faG +fcN +fcH +fcD +fcz +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +ejz +ejz +ejy +cCC +cCJ +eji +cBR +eji +cBR +cCJ +cBc +cBc +cBc +cBc +aKS +eTc +ejk +cDu +cBR +cBR +cCc +cCc +ejm +aKL +cCc +cCc +cBW +eji +ejn +eji +eji +eji +ejj +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +fba +faX +faO +faO +aaF +faG +faz +faz +faz +faz +faz +faz +faz +faz +faz +fax +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(229,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faI +faG +fcO +fcI +fcD +fcA +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +aLa +adE +adE +ejw +cAZ +eji +eji +eji +eji +cAZ +cBc +cBc +cBc +cBc +aKV +lJn +aKT +eji +cBR +ejk +cCc +cCc +ejj +eji +cCr +ejm +eji +eji +ejj +ejj +ejj +ejj +ejj +cAZ +cjc +cjc +cjc +cjc +cjc +cjc +cjc +fbb +faO +faS +abV +aaF +faG +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(230,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faI +faG +faG +faG +faG +faG +faG +cWw +cWw +cWw +cWw +cWw +cWw +cWw +cAZ +cAZ +aKY +aLb +ejw +cAZ +eji +eji +eji +eji +cAZ +cBc +cBc +cBc +aKW +adb +cTH +cCm +eji +cCm +cCn +cCt +cCc +aPL +ejj +ejj +ejm +ejj +cjw +ejj +ejj +ejj +ejj +bta +bta +fTs +cjc +cjc +cjc +cjc +cjc +fTs +fbc +faP +faO +faP +aaF +faG +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(231,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faJ +faF +faF +faF +faF +faC +faG +fax +fax +fax +fax +fax +fax +fax +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +eju +ejr +ejr +ejr +ejr +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +bta +faC +fTs +fax +fax +fax +fax +fax +fTs +faJ +faF +faF +faF +faL +faH +faD +faD +faD +faD +faD +faD +faD +faD +faA +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(232,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fax +cWo +cWo +cWo +cWo +cWo +cWo +cWo +cWo +fax +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fTs +faz +faz +faz +faz +faz +fTs +faz +faz +faU +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(233,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fax +cWo +cWo +cWo +cWo +cWo +cWo +cWo +ejp +fax +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(234,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +bta +faz +faz +faz +faz +faz +fcQ +faD +faA +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +fax +ejp +ejp +ejp +ejp +ejp +ejp +ejp +fax +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(235,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +faz +faz +faz +faz +faz +fcQ +fcT +faE +fcR +faA +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +fax +fax +cWf +cWf +cWf +cWf +cWf +aaj +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(236,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +faz +faz +faz +faz +faz +faI +faE +faE +faE +faB +faz +faz +faJ +fcU +faE +faE +faE +faE +faE +faE +faE +faE +faE +fcS +faC +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +faz +fax +cWf +cWf +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(237,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faB +faz +faz +faz +faJ +fcU +faE +faE +faE +faE +faE +faE +faE +fcS +faC +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faI +faE +faE +faE +faE +faE +faE +faE +faE +faB +faz +faz +faz +faz +faz +faz +fax +cWf +cWf +cWf +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(238,1,3) = {" +sqe +cKE +aky +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +bta +faz +faz +faz +faz +faz +faJ +faF +faF +faF +faC +faz +faz +faz +faz +faJ +faF +faF +faF +faF +faF +faF +faF +faC +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faJ +faF +faF +faF +faF +faF +faF +faF +faF +faC +faz +faz +faz +faz +faz +faz +bta +bta +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +sqe +"} +(239,1,3) = {" +sqe +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +bta +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +faz +bta +bta +bta +bta +bta +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(240,1,3) = {" +sqe +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +bta +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +eLz +faz +faz +faz +faz +bta +bta +bta +bta +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +sqe +"} +(241,1,3) = {" +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +sqe +"} diff --git a/maps/map_files/Tyrargo_Rift/sprinkles/10.bar_resin.dmm b/maps/map_files/Tyrargo_Rift/sprinkles/10.bar_resin.dmm new file mode 100644 index 000000000000..83aa3cba3698 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/sprinkles/10.bar_resin.dmm @@ -0,0 +1,1467 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"af" = ( +/obj/effect/decal/siding, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"ag" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"ap" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"aA" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north_west) +"bC" = ( +/obj/structure/barricade/handrail/hybrisa/road/wood/orange, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"bL" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"bO" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"dC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"dX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"ea" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"ek" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"eD" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"fB" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"fJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"fP" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/outdoors/colony_streets/north_west) +"gq" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"gw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/bar/ground) +"gC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"hl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/barbed_wire, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"hr" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + pixel_x = 5; + layer = 2.98 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"hN" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"jj" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"jC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"kj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"kR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"kX" = ( +/obj/structure/girder/displaced, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"la" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/outdoors/colony_exterior/north_west) +"ls" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"lQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"lY" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/girder/displaced, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"mF" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north_west) +"mI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"mZ" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"nM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"oi" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ol" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/ground) +"oM" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"oU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"qF" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"qT" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"rc" = ( +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"ru" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/ground) +"sb" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"sf" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"so" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"sp" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"sw" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_west) +"sY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"tO" = ( +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"tX" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/ground) +"uE" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"uT" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"vb" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"vm" = ( +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"vw" = ( +/obj/structure/roof/hybrisa/signs/barsign{ + light_color = "#00AAFF"; + light_on = 1; + light_power = 4; + light_range = 6; + pixel_x = -12; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"wv" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"wX" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"xg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"xx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 13 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"xM" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"xP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"xR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"yh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"yF" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"yX" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"zc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"zS" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"AC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/roof/hybrisa/signs/mechanicsign, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"AV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"Bu" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"BR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"BU" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"Cb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + pixel_y = 31 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"CM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"CY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"Di" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"Dz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"DJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"Fl" = ( +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"Fo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"Fq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 24 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"FB" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"FG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"FN" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"Gj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"Gq" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/item/trash/plate, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"GC" = ( +/obj/effect/decal/siding, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"GO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"HE" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/roof/hybrisa/signs/opensign2, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"Ic" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"It" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_2, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"IC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"IF" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"IJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"IW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"Jb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"Jt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north_west) +"JG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"JT" = ( +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/tyrargo/indoors/bar/ground) +"JV" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"KI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"Lx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4; + pixel_x = -14 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"LB" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"LF" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"LG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"LM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north_west) +"LO" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"LU" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/colony_exterior/north) +"LY" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"Mz" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"MD" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/ground) +"MT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"MU" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"Nr" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"NN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"OG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"OM" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + dir = 6 + }, +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"Pb" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"Qn" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/ground) +"Qx" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"Qy" = ( +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"QC" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"QH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"QI" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/bar/ground) +"QT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"QU" = ( +/obj/effect/decal/siding, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"Sd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"Sh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"Sp" = ( +/obj/structure/prop/resin_prop{ + icon_state = "chair" + }, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"Sz" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"SC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"SP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north_west) +"SX" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"Tc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north_west) +"Te" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass/reinforced, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"Uf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north_west) +"Ul" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/ground) +"Vj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"Vn" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/bar/ground) +"VN" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"VX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/bar/ground) +"Wc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/wood/redwood, +/area/tyrargo/indoors/bar/ground) +"Wv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"WR" = ( +/obj/item/trash/plate, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"WS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"Xd" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) +"XH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"XZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/darkerwood, +/area/tyrargo/indoors/bar/ground) +"Yt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north_west) +"YE" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_west) +"YP" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/ground) +"YW" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/bar/ground) +"Zi" = ( +/obj/effect/decal/siding, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"Zx" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/tyrargo/indoors/bar/ground) +"ZI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/tyrargo/indoors/bar/ground) +"ZP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/bar/ground) +"ZS" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#4A0404" + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/carpet/pink, +/area/tyrargo/indoors/bar/ground) +"ZX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/ground) + +(1,1,1) = {" +mF +mF +LM +SP +wv +wv +Sd +wv +SP +SP +SP +bs +kR +bC +"} +(2,1,1) = {" +mF +ab +Jt +LY +Ul +MD +MD +MD +MD +Ul +Ul +fP +ap +Lx +"} +(3,1,1) = {" +Jb +Jt +LY +LY +aA +eD +MU +MU +MU +qF +uT +uT +HE +It +"} +(4,1,1) = {" +QC +LY +LY +hN +MT +bl +vm +qT +IW +ZX +af +uT +LY +kR +"} +(5,1,1) = {" +QC +Ul +SX +hN +XZ +oi +Qy +Qy +kj +yh +af +xP +ZP +zc +"} +(6,1,1) = {" +QC +MD +Vn +IF +Vj +Qy +JT +JT +Gj +tO +Zi +xR +QI +QH +"} +(7,1,1) = {" +QC +MD +fB +Ic +XZ +Qy +JT +JT +Qy +Vj +GC +xR +MD +Pb +"} +(8,1,1) = {" +KI +Ul +xM +FB +BR +yX +Qy +Qy +ZS +WS +uE +rc +MD +Pb +"} +(9,1,1) = {" +KI +Ul +Ul +ol +IC +Vj +tO +vm +Sp +vm +QU +Ul +Ul +Fq +"} +(10,1,1) = {" +Tc +sw +LY +Ul +mZ +JV +wX +wX +wX +LF +Ul +uT +Bu +Pb +"} +(11,1,1) = {" +QC +sw +LY +uT +AV +XZ +Vj +tO +BU +sf +Ul +uT +uT +Pb +"} +(12,1,1) = {" +QC +uT +uT +uT +ea +vm +XZ +vm +WR +Wv +xg +uT +uT +kX +"} +(13,1,1) = {" +la +uT +uT +uT +Vj +lQ +Vj +tO +ls +XH +uT +ZX +uT +lY +"} +(14,1,1) = {" +QC +uT +uT +ZX +tO +vm +dX +vm +BU +ZI +uT +ZX +uT +Pb +"} +(15,1,1) = {" +KI +gw +uT +SC +Wc +tO +vm +tO +sp +sf +OG +ZX +MD +xx +"} +(16,1,1) = {" +KI +MD +Xd +Vj +DJ +vm +XZ +vm +sf +ZI +sf +sY +Ul +kR +"} +(17,1,1) = {" +KI +Ul +Ul +QT +Vj +XZ +so +tO +Te +sf +sf +Ul +Ul +Cb +"} +(18,1,1) = {" +QC +sw +LY +Ul +tO +Vj +XZ +vm +dC +FN +Ul +LY +Bu +hl +"} +(19,1,1) = {" +KI +sw +LY +Ul +Sz +LO +ag +ag +ag +bL +Ul +LY +Bu +kR +"} +(20,1,1) = {" +KI +Ul +Ul +ru +vm +tO +vm +tO +vm +tO +Mz +Ul +Ul +hr +"} +(21,1,1) = {" +KI +Ul +xM +Nr +tO +oM +IJ +Qy +vb +vm +VN +JG +tX +OM +"} +(22,1,1) = {" +KI +MD +Qn +jj +Vj +Qy +JT +JT +Qy +tO +uE +xR +YP +CY +"} +(23,1,1) = {" +KI +MD +Dz +sb +XZ +Qy +JT +JT +Qy +vm +ek +Sh +gw +Pb +"} +(24,1,1) = {" +KI +Ul +aa +IF +Vj +Gq +Qy +Fl +Di +nM +bO +ZX +YW +kR +"} +(25,1,1) = {" +KI +LY +LY +hN +XZ +gC +tO +vm +uT +Fo +bO +uT +uT +jC +"} +(26,1,1) = {" +GO +fJ +VX +LY +Zx +Zx +LB +yF +Zx +uT +LY +uT +vw +Pb +"} +(27,1,1) = {" +LU +Yt +gq +LY +Ul +MD +MD +MD +MD +Ul +LY +Pb +Qx +zS +"} +(28,1,1) = {" +CM +AC +gq +LG +Pb +kR +kR +oU +kR +YE +mI +Uf +FG +NN +"} diff --git a/maps/map_files/Tyrargo_Rift/sprinkles/10.bar_resin_upper.dmm b/maps/map_files/Tyrargo_Rift/sprinkles/10.bar_resin_upper.dmm new file mode 100644 index 000000000000..f5e89fa154b4 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/sprinkles/10.bar_resin_upper.dmm @@ -0,0 +1,913 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/bar/upper/external) +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/bar/upper/external) +"ac" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/indoors/bar/upper/external) +"ad" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/bar/upper/external) +"ae" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/indoors/bar/upper/external) +"af" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/indoors/bar/upper/external) +"aT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/bar/upper/external) +"bU" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/bar/upper) +"dc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/bar/upper/external) +"dz" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north_west) +"dB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"fj" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"fZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"hc" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"hn" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"hp" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"hN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/bar/upper/external) +"hS" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"hU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/upper) +"hX" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"iK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/computer/hybrisa/misc/slotmachine{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"jA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"km" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"kx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"kz" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"kE" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"ni" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"nM" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/toy/handcard/aceofspades{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"nW" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"oD" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/bar/upper/external) +"pn" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/bar/upper/external) +"rC" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/bar/upper/external) +"si" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"sk" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"sT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"tk" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"to" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"vm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"wh" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + explo_proof = 0; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/indoors/bar/upper/external) +"ww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/bar/upper/external) +"xn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper/external) +"xt" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"xw" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/bar/upper/external) +"xE" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"yt" = ( +/obj/structure/bed/chair/comfy{ + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"AM" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/upper) +"Bv" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/upper) +"CK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"CN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"Db" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper/external) +"DJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"DS" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/upper) +"Eh" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"Ft" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Fw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"Ge" = ( +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Gt" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"GI" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"GK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/bar/upper/external) +"GW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Jv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/upper/external) +"JB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/apart_gararge) +"JQ" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/bar/upper/external) +"JR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"Ka" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Ke" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/upper) +"Lm" = ( +/obj/structure/barricade/handrail/type_b, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"LP" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Ml" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"Nw" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"NX" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Om" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"Oz" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/strata/fake_wood, +/area/tyrargo/indoors/bar/upper) +"OX" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/bar/upper/external) +"Pi" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"Ps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"RT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/bar/upper) +"RU" = ( +/obj/structure/machinery/computer/hybrisa/misc/slotmachine{ + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"Sb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating, +/area/tyrargo/indoors/bar/upper) +"Sm" = ( +/turf/open_space, +/area/tyrargo/indoors/bar/upper) +"SV" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"TM" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/bar/upper/external) +"Vc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"Vt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"Wf" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"WX" = ( +/turf/open/floor/hybrisa/wood/greywood, +/area/tyrargo/indoors/bar/upper) +"Xz" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/bar/upper/external) +"Yu" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/bar/upper/external) +"YJ" = ( +/obj/structure/surface/table/gamblingtable{ + color = "#aeaeae" + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"YV" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bar/upper) +"ZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/wood/blackwood, +/area/tyrargo/indoors/bar/upper) +"ZR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/bar/upper/external) + +(1,1,1) = {" +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +tk +tk +tk +"} +(2,1,1) = {" +dz +dz +dz +Yu +TM +TM +TM +ZR +ZR +ZR +oD +tk +tk +tk +"} +(3,1,1) = {" +dz +dz +hN +ae +bU +bU +DS +DS +Bv +Bv +ac +oD +tk +tk +"} +(4,1,1) = {" +dz +Yu +ae +bU +bU +Sm +Sm +Sm +Bv +Bv +Bv +aT +oD +JR +"} +(5,1,1) = {" +dz +bU +bU +bU +Sm +Sm +Sm +Sm +Sm +Bv +Ke +aT +Xz +xw +"} +(6,1,1) = {" +dz +bU +Sm +Sm +Sm +Sm +Sm +Sm +Sm +Sm +AM +OX +Xz +dc +"} +(7,1,1) = {" +dz +bU +Sm +Sm +sk +Sm +Sm +Sm +Sm +Sm +bU +OX +Xz +xw +"} +(8,1,1) = {" +dz +bU +GI +YV +hX +Sm +Sm +Sm +Sm +Sm +bU +aa +oD +kx +"} +(9,1,1) = {" +dz +DS +Ka +Nw +kz +Eh +Eh +Eh +Eh +Eh +bU +ab +rC +tk +"} +(10,1,1) = {" +dz +DS +Ge +Ft +NX +NX +Gt +NX +NX +NX +DS +OX +tk +tk +"} +(11,1,1) = {" +dz +bU +bU +Wf +dB +ZQ +jA +fj +WX +fj +DS +OX +OX +JR +"} +(12,1,1) = {" +dz +bU +Bv +WX +Vt +jA +Vt +jA +CK +hU +bU +OX +Xz +xw +"} +(13,1,1) = {" +dz +DS +Bv +Bv +WX +fj +xt +fj +Bv +RT +Bv +OX +Xz +dc +"} +(14,1,1) = {" +dz +DS +RT +WX +yt +Pi +fj +WX +fj +RT +Bv +OX +Xz +xw +"} +(15,1,1) = {" +dz +DS +iK +Vt +km +hp +to +kE +WX +Ps +Ke +xn +oD +kx +"} +(16,1,1) = {" +dz +DS +RU +vm +si +nM +YJ +Pi +fj +jA +Sb +xn +OX +tk +"} +(17,1,1) = {" +dz +bU +bU +Fw +jA +fj +SV +fj +WX +DJ +bU +ab +rC +tk +"} +(18,1,1) = {" +dz +bU +bU +fZ +Vt +WX +CK +WX +fj +ni +DS +aT +tk +tk +"} +(19,1,1) = {" +dz +DS +GW +Oz +Om +Om +Om +Om +LP +hS +DS +OX +tk +tk +"} +(20,1,1) = {" +dz +DS +Ka +Lm +hn +xE +xE +xE +xE +xE +bU +ac +oD +tk +"} +(21,1,1) = {" +dz +bU +hc +nW +hX +Sm +Sm +Sm +Sm +Sm +bU +Db +OX +tk +"} +(22,1,1) = {" +dz +bU +Sm +Sm +Ml +Sm +Sm +Sm +Sm +Sm +bU +Db +OX +tk +"} +(23,1,1) = {" +dz +bU +Sm +Sm +Sm +Sm +Sm +Sm +Sm +Sm +Bv +Db +OX +tk +"} +(24,1,1) = {" +dz +bU +bU +bU +Sm +Sm +Sm +Sm +Sm +Bv +Bv +Db +OX +tk +"} +(25,1,1) = {" +dz +ww +af +bU +bU +Sm +Sm +Sm +Bv +Bv +Bv +wh +rC +tk +"} +(26,1,1) = {" +Vc +JQ +pn +af +bU +bU +DS +DS +bU +bU +ad +rC +tk +tk +"} +(27,1,1) = {" +Vc +Jv +sT +ww +GK +rC +JQ +JQ +JQ +pn +rC +tk +tk +tk +"} +(28,1,1) = {" +Vc +Jv +sT +tk +tk +tk +CN +JB +sT +tk +tk +tk +tk +tk +"} diff --git a/maps/map_files/Tyrargo_Rift/sprinkles/10.carshop_resin.dmm b/maps/map_files/Tyrargo_Rift/sprinkles/10.carshop_resin.dmm new file mode 100644 index 000000000000..c6f7d1e88566 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/sprinkles/10.carshop_resin.dmm @@ -0,0 +1,1932 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aO" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 2.99; + pixel_x = -1; + pixel_y = -2 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 1; + pixel_y = 1; + layer = 2.8 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"aV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"be" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"bu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"bv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"bM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"cl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/ground) +"cM" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"de" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"dF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"dX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"ef" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal2"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"eh" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"em" = ( +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"eI" = ( +/obj/structure/roof/hybrisa/signs/mechanicsign, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/ground) +"eT" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"fa" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"fi" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"fs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"fP" = ( +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"fQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"ge" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/ground) +"gj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"gN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/ground) +"gO" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"hd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"hj" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/oob) +"hy" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"hX" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/apc/destroyed{ + dir = 8; + pixel_y = -13 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/gararge/ground) +"ir" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"iz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"iM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"iQ" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"ji" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/ground) +"jm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"jK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"jS" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"ke" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"kh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"ku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"kA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/ground) +"kQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"mh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"ns" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"nD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"nL" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"oa" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 12 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"on" = ( +/obj/effect/vehicle_spawner/van/decrepit{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"ox" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"oR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"oS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"pd" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"pi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"pL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"pO" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"pR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_exterior/north) +"qj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 30 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"qo" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/item/stack/barbed_wire, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"qr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"qu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"qw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"qB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"qG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"qM" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/outdoors/colony_streets/north) +"qO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/device/radio, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"qU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"qV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"ra" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"rn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"rT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"sh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/north) +"sw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar/red{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"sO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"sT" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"sV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"tb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"tf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/tyrargo/outdoors/colony_streets/north) +"tm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"uc" = ( +/turf/template_noop, +/area/template_noop) +"uk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"uH" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/obj/item/hardpoint/locomotion/van_wheels{ + unacidable = 1 + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"uJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"uN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"uQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"uY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"vv" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"vA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"vN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"ws" = ( +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"ww" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/ground) +"wz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"wE" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"wN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"wW" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"xi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_y = -4; + pixel_x = -10 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"xE" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"xK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"xN" = ( +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"xT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"xW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards{ + dir = 4; + layer = 2.98; + pixel_y = -8 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"yP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"yU" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/ground) +"yY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/tyrargo/outdoors/colony_streets/north) +"zr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"zy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"zD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"zP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"zV" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/tyrargo/indoors/gararge/ground) +"Ae" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"AQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"AT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_exterior/north) +"BO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"BS" = ( +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"Cd" = ( +/turf/open/asphalt/cement/cement15, +/area/tyrargo/outdoors/colony_streets/north) +"Cq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"CQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"CZ" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"Do" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"Dy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"DC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"DR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"DX" = ( +/obj/structure/largecrate{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"Em" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"Eu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"Ex" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/ground) +"EG" = ( +/obj/effect/decal/siding, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"Fj" = ( +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"Fv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"Fx" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"Fz" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"FO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"FT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"FW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"FZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -32 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_exterior/north) +"GT" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/gararge/ground) +"HE" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"HT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"Ia" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4; + layer = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = -13; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"Il" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"IX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"IY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Jh" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"Jl" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"JJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge/west, +/area/tyrargo/indoors/admin/ground) +"JT" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"Kh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_streets/north) +"Lm" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"Ln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"Lp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"Lw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"LF" = ( +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"LN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"Ml" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"ME" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"MI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/empty, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"MM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/ground) +"MP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"Ng" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_exterior/north) +"Nw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"Ny" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"NP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"OC" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Pg" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"Pp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"PA" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/gararge/ground) +"PD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"PH" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"PX" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_streets/north) +"Qg" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"Qq" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"QA" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"QH" = ( +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/ground) +"QO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/ground) +"Rw" = ( +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"Sc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"Sk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement4, +/area/tyrargo/outdoors/colony_exterior/north) +"Sq" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"Sz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"SC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"SQ" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/admin/ground) +"ST" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"SX" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"Ta" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0"; + color = "#a98c7c"; + layer = 3.9; + pixel_y = -11 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"TD" = ( +/obj/item/tool/screwdriver{ + pixel_x = 12; + pixel_y = 8 + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/ground) +"TS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/indoors/admin/ground) +"TY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/tyrargo/outdoors/colony_exterior/north) +"Uq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/tyrargo/outdoors/colony_streets/north) +"Ur" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"Uw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"UD" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"Vd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"VD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"VG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"VO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"VZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"Wi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/turf/open/asphalt/cement/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"Ww" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/ground) +"WE" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"WJ" = ( +/turf/open/asphalt/cement/cement12, +/area/tyrargo/outdoors/colony_streets/north) +"XA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/asphalt, +/area/tyrargo/indoors/gararge/ground) +"XE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"XI" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/gararge/ground) +"XQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/prison/floor_plate/southwest, +/area/tyrargo/indoors/admin/ground) +"Yl" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/ground) +"YF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"YJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/tyrargo/indoors/admin/ground) +"YK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/tyrargo/outdoors/colony_streets/north) +"YM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/colony_streets/north) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north) +"Zo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/gararge/ground) +"ZA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/tyrargo/outdoors/colony_streets/north) +"ZW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/ground) + +(1,1,1) = {" +pR +AT +bu +GT +ww +ww +ww +PA +PA +ww +ww +Ex +Ex +uc +uc +"} +(2,1,1) = {" +mh +GT +GT +GT +iz +qj +wp +qU +ns +fs +qV +ZW +Ex +ww +ji +"} +(3,1,1) = {" +em +ww +MP +Sc +Ny +HE +Qg +wW +wW +wW +Pg +Ny +ns +tm +ww +"} +(4,1,1) = {" +em +ww +jm +Ny +HE +fP +fP +Uw +Uw +fP +fP +uH +Ny +qO +ww +"} +(5,1,1) = {" +em +PA +Ny +fs +EG +on +Uw +DR +uk +uk +sw +MM +fs +ST +PA +"} +(6,1,1) = {" +mh +zV +ox +vv +EG +fP +Uw +fP +pL +TD +Ex +Ex +QO +hy +PA +"} +(7,1,1) = {" +mh +Ex +ZW +qU +WE +nL +fP +Uw +fP +XA +Yl +Ex +XI +fa +ww +"} +(8,1,1) = {" +mh +Ex +QH +ZW +Ny +fs +EG +Uw +fP +xE +fs +Ny +Ny +cZ +ww +"} +(9,1,1) = {" +mh +ww +zV +Ex +gj +eI +Do +oa +Lw +Lw +eI +Do +Zo +PA +ww +"} +(10,1,1) = {" +hd +ww +vA +uQ +sO +ww +Fx +Jl +ke +ke +ww +be +qw +qw +hX +"} +(11,1,1) = {" +sO +xK +sO +sO +Rw +kQ +Fx +Jl +Fx +FO +Kh +dV +qw +qw +qw +"} +(12,1,1) = {" +rn +YK +Uq +Uq +Cd +FT +Fx +ra +Cq +Cq +FT +Db +XE +XE +XE +"} +(13,1,1) = {" +QA +BO +ZA +ZA +kh +oR +Fx +Cq +Cq +Fx +FT +pd +vN +vN +fQ +"} +(14,1,1) = {" +ef +uJ +VZ +VZ +LN +zy +PH +IX +PH +qB +qo +Ta +aO +PH +PH +"} +(15,1,1) = {" +Fz +de +ZA +ZA +YM +Fv +PD +eh +Fx +Fx +FT +Ur +xi +NP +Ix +"} +(16,1,1) = {" +tf +dX +yY +sh +Fj +VG +dX +Fj +Fj +Wi +xW +Fj +wE +sV +dX +"} +(17,1,1) = {" +SX +Zd +VO +sO +sO +ME +tb +SC +sO +Rw +Ia +AQ +ku +VO +dF +"} +(18,1,1) = {" +uc +PX +ge +CZ +Vd +ge +DX +iM +uQ +qM +ge +VD +JT +ge +WJ +"} +(19,1,1) = {" +uc +Lm +cl +YJ +nD +ge +Ml +Ml +Ml +hj +jS +pO +iQ +cl +qr +"} +(20,1,1) = {" +uc +mh +cl +Ln +aV +ge +Sq +UD +UD +gO +jS +Qq +wN +cl +qr +"} +(21,1,1) = {" +uc +mh +ge +zP +rz +aV +aV +aV +xN +xN +xN +Eu +oS +ge +qr +"} +(22,1,1) = {" +uc +yP +ge +rT +aV +aV +YF +aV +aV +wz +aV +Nw +fi +ge +qr +"} +(23,1,1) = {" +uc +em +ge +Jh +jS +eT +Dy +HT +Ww +Dy +LF +uN +ir +ge +qr +"} +(24,1,1) = {" +uc +Sk +jS +jS +jS +JJ +DC +bv +uY +uY +bM +FW +jS +SQ +WJ +"} +(25,1,1) = {" +uc +ws +bu +jS +jS +kA +yU +yU +yU +gN +xT +jS +SQ +sO +zr +"} +(26,1,1) = {" +uc +uc +TY +bu +ge +XQ +Pp +Il +Sz +qG +Em +ge +sO +Lp +uc +"} +(27,1,1) = {" +uc +uc +uc +jK +ge +TS +cM +OC +OC +OH +CQ +jS +sO +uc +uc +"} +(28,1,1) = {" +uc +uc +uc +em +ge +zD +pi +Sz +zD +IY +MI +ge +Rw +uc +uc +"} +(29,1,1) = {" +uc +uc +uc +mh +ge +ge +ge +ge +ge +ge +ge +ge +Rw +uc +uc +"} +(30,1,1) = {" +uc +uc +uc +TY +Ng +bu +Ae +bu +bu +FZ +sT +BS +qu +uc +uc +"} diff --git a/maps/map_files/Tyrargo_Rift/sprinkles/10.carshop_resin_upper.dmm b/maps/map_files/Tyrargo_Rift/sprinkles/10.carshop_resin_upper.dmm new file mode 100644 index 000000000000..ffb8c5f3559a --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/sprinkles/10.carshop_resin_upper.dmm @@ -0,0 +1,1116 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"aX" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/gararge/upper/external) +"cd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/orange_edge/north, +/area/tyrargo/indoors/admin/upper) +"cK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge/north, +/area/tyrargo/indoors/admin/upper) +"dN" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/gararge/upper/external) +"ej" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"eS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/gararge/upper/external) +"fr" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/upper/external) +"gp" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"gT" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"hg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"ib" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"jb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"jd" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/gararge/upper/external) +"jB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"kL" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"lq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"lx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"lX" = ( +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"ma" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"me" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"mu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/orange_icorner, +/area/tyrargo/indoors/admin/upper) +"nJ" = ( +/turf/template_noop, +/area/template_noop) +"nK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"oq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"oO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"oS" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/gararge/upper/external) +"qa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"qN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/upper/external) +"qY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"rf" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"rp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"rt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"rx" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"rC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"rS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"sg" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/admin/upper/external) +"sp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = 9; + pixel_y = 42 + }, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"ss" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"sG" = ( +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"tR" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper) +"uE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"uS" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"vR" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/upper/external) +"wc" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/gararge/upper/external) +"wU" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/upper/external) +"xo" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"xB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"xT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge/north, +/area/tyrargo/indoors/admin/upper) +"yg" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"yC" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/admin/upper/external) +"zc" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"zG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/upper/external) +"zJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/gararge/upper/external) +"zT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/tyrargo/indoors/gararge/upper/external) +"zX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"Ah" = ( +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/upper) +"An" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"At" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/gararge/upper/external) +"AE" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper) +"AK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"AM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"BZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/gararge/upper/external) +"Ci" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/gararge/upper/external) +"Cs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"CR" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"Da" = ( +/turf/open/floor/strata/orange_icorner/east, +/area/tyrargo/indoors/admin/upper) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"Di" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/gararge/upper/external) +"DB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/admin/upper) +"Ew" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"EJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"EY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/upper) +"Fq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/gararge/upper/external) +"FL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"Gk" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/gararge/upper/external) +"Gq" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/colony_streets/north) +"GV" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"Hz" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/gararge/upper/external) +"HS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"Iu" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/gararge/upper/external) +"Iz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"IZ" = ( +/obj/structure/platform/metal/strata, +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"Kn" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/admin/upper) +"Ky" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"KG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"KZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north_west) +"LR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"Ma" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"Mt" = ( +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"MC" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"Na" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"NI" = ( +/turf/open_space, +/area/tyrargo/outdoors/colony_exterior/north) +"NS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"Pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/gararge/upper/external) +"PW" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"Qo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"Qx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/gararge/upper/external) +"Qy" = ( +/turf/open/floor/strata/orange_edge/north, +/area/tyrargo/indoors/admin/upper) +"QF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/gararge/upper/external) +"RF" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/upper) +"Sd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"SD" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/gararge/upper/external) +"SY" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/admin/upper) +"Tu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"TA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"TB" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/shiva/purplefull, +/area/tyrargo/indoors/admin/upper) +"TC" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"TG" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open_space, +/area/tyrargo/outdoors/colony_streets/north) +"TT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/gararge/upper/external) +"UJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/gararge/upper/external) +"VX" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/admin/upper) +"Wz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"Xr" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/upper) +"XJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"XN" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/gararge/upper/external) +"XQ" = ( +/turf/open/floor/strata/orange_edge, +/area/tyrargo/indoors/admin/upper) +"XW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/gararge/upper/external) +"Yi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/gararge/upper/external) +"YN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/outdoors/walkway_access/gararge_admin) +"Za" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "An M83 SADAR Anti-Tank RPG. This one has been expended."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/rocket_launchers.dmi'; + icon_state = "m83a2"; + name = "M83 SADAR (expended)"; + pixel_x = 1; + pixel_y = 1; + dir = 4; + layer = 4.1 + }, +/turf/open/floor/hybrisa/tile/tilegreen, +/area/tyrargo/indoors/admin/upper) +"ZI" = ( +/obj/structure/platform/metal/strata/north, +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"ZS" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/gararge/upper/external) + +(1,1,1) = {" +NI +NI +NI +UJ +aX +aX +aX +ZS +ZS +ZS +aX +wU +wU +TT +KZ +"} +(2,1,1) = {" +NI +UJ +ZS +ma +ma +ma +ma +ma +BZ +wU +wU +wU +wU +dN +aX +"} +(3,1,1) = {" +NI +aX +ma +ma +ma +ma +ma +QF +Di +XW +Iu +wU +Hz +zJ +SD +"} +(4,1,1) = {" +NI +aX +QF +QF +FL +ma +ma +ma +wc +oS +Ci +wc +eS +zJ +SD +"} +(5,1,1) = {" +NI +aX +Fq +QF +ma +ma +ma +Ci +wU +wU +wc +Iu +QF +zJ +SD +"} +(6,1,1) = {" +NI +aX +zT +Di +QF +aX +aX +oS +wU +wU +wU +Iu +ma +zJ +SD +"} +(7,1,1) = {" +NI +wU +Qx +Iu +Iu +aX +eS +oS +Iu +wU +Ci +XN +QF +Yi +aX +"} +(8,1,1) = {" +NI +wU +wU +eS +At +eS +eS +Pw +eS +eS +Hz +eS +Db +Yi +aX +"} +(9,1,1) = {" +NI +wU +wU +wU +Hz +Iu +ma +ma +ma +ma +ma +XW +aX +aX +aX +"} +(10,1,1) = {" +rx +wU +rx +rx +jd +Gk +TC +TC +TC +TC +jd +Gk +aX +rx +Gq +"} +(11,1,1) = {" +rx +rx +rx +rx +rx +LR +rS +rf +rf +yg +Ew +rx +rx +rx +rx +"} +(12,1,1) = {" +rx +rx +rx +rx +rx +LR +rS +YN +rf +yg +Ew +rx +rx +rx +rx +"} +(13,1,1) = {" +rx +rx +rx +rx +rx +LR +rS +qY +me +yg +Ew +rx +rx +rx +rx +"} +(14,1,1) = {" +rx +rx +rx +rx +rx +LR +rS +qY +rf +yg +Ew +rx +rx +rx +rx +"} +(15,1,1) = {" +rx +rx +rx +rx +rx +LR +rS +rf +XJ +yg +Ew +rx +rx +rx +rx +"} +(16,1,1) = {" +rx +rx +rx +RF +RF +AE +An +An +jB +An +AE +RF +RF +rx +rx +"} +(17,1,1) = {" +rx +rx +RF +RF +sG +sG +HS +GV +Tu +nK +kJ +kJ +RF +RF +rx +"} +(18,1,1) = {" +NI +rx +RF +XQ +kJ +aQ +sG +rt +hg +sG +sp +kJ +Qy +RF +rx +"} +(19,1,1) = {" +NI +NI +RF +EJ +kJ +rt +gp +Na +TB +xo +kJ +TA +cK +RF +rx +"} +(20,1,1) = {" +NI +NI +RF +XQ +qa +MC +ZI +Mt +Mt +IZ +uE +kJ +cd +RF +rx +"} +(21,1,1) = {" +NI +NI +AE +oO +sG +MC +Mt +Mt +Mt +Mt +uE +kJ +xT +AE +rx +"} +(22,1,1) = {" +NI +NI +AE +lx +oq +MC +Mt +Mt +Mt +Mt +uE +kJ +xT +AE +rx +"} +(23,1,1) = {" +NI +NI +RF +Sd +rt +MC +Mt +Mt +Mt +Mt +uE +zX +Xr +AE +rx +"} +(24,1,1) = {" +NI +NI +RF +Qo +Ky +kJ +jb +ej +NS +gT +kJ +EY +Xr +RF +rx +"} +(25,1,1) = {" +NI +NI +tR +VX +DB +kJ +TA +lq +Za +rp +ib +Ah +Xr +rx +rx +"} +(26,1,1) = {" +NI +NI +RF +Kn +SY +Da +CR +kJ +rC +mu +Xr +Xr +Xr +rx +nJ +"} +(27,1,1) = {" +NI +NI +NI +NI +RF +AE +AM +Iz +Wz +AE +Xr +Xr +TG +nJ +nJ +"} +(28,1,1) = {" +NI +NI +NI +NI +yC +vR +kL +lX +PW +PW +xB +fr +Ew +nJ +nJ +"} +(29,1,1) = {" +NI +NI +NI +NI +sg +zG +KG +KG +qN +ss +Cs +fr +Ew +nJ +nJ +"} +(30,1,1) = {" +NI +NI +NI +NI +uS +AK +AK +Ma +vR +PW +zc +fr +Ew +nJ +nJ +"} diff --git a/maps/map_files/Tyrargo_Rift/sprinkles/10.government_resin.dmm b/maps/map_files/Tyrargo_Rift/sprinkles/10.government_resin.dmm new file mode 100644 index 000000000000..c0ce1a1892b7 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/sprinkles/10.government_resin.dmm @@ -0,0 +1,2425 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"al" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"ap" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13; + pixel_x = -17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ar" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic/burst, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"aI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"aR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"bs" = ( +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"bJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/ointment{ + pixel_x = 4; + pixel_y = 3; + amount = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"bK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/admin/ground) +"cl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/admin/ground) +"cA" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/ground) +"cC" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/tyrargo/indoors/admin/ground) +"cF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"cR" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/tyrargo/outdoors/colony_streets/north_east) +"dk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tray, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dm" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"dz" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"dB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/admin/ground) +"dT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/admin/ground) +"dV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable/burst, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"dW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"ed" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"eH" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/ground) +"fj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"fl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"fr" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"fw" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"fI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/blue/east, +/area/tyrargo/indoors/admin/ground) +"fJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"gf" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"gA" = ( +/obj/structure/bed/bedroll{ + dir = 8; + pixel_x = 14; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"gU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"hi" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"hs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"hY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/darkred2, +/area/tyrargo/indoors/admin/ground) +"id" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_y = 4 + }, +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"ih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"ir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"iA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"iU" = ( +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/admin/ground) +"jn" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"jr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/admin/ground) +"ju" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"jx" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 11 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"jK" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"jM" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"jY" = ( +/obj/structure/bed/bedroll{ + dir = 5; + pixel_y = 6 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"kc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"kg" = ( +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/admin/ground) +"kn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/defibrillator{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"kz" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"kK" = ( +/obj/structure/tent/med, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"kL" = ( +/obj/item/reagent_container/blood/empty, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"kN" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"lj" = ( +/turf/open/floor/prison/yellow/southeast, +/area/tyrargo/indoors/admin/ground) +"lr" = ( +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"lu" = ( +/obj/structure/bed/bedroll{ + dir = 1; + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"lG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"lP" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/ground) +"me" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"mj" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"mB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/green/northwest, +/area/tyrargo/indoors/admin/ground) +"mF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/admin/ground) +"mJ" = ( +/obj/item/reagent_container/hypospray/autoinjector/tramadol/random_amount, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1; + layer = 3; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"mP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"mR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 6; + pixel_y = 15 + }, +/turf/open/floor/prison/darkred2, +/area/tyrargo/indoors/admin/ground) +"ne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/ar10, +/obj/item/ammo_casing/bullet, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"nj" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/admin/ground) +"nv" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"oz" = ( +/turf/open/floor/corsat/marked, +/area/tyrargo/indoors/admin/ground) +"oA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"oE" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"oM" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"pu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"pK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"pN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"qh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"qE" = ( +/obj/item/stack/sheet/metal, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/green/north, +/area/tyrargo/indoors/admin/ground) +"qI" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/turf/open/floor/prison/yellow/northwest, +/area/tyrargo/indoors/admin/ground) +"ra" = ( +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/prison/green/southwest, +/area/tyrargo/indoors/admin/ground) +"rc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"rn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northeast, +/area/tyrargo/indoors/admin/ground) +"rJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"rP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"rS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"rU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/tyrargo/indoors/admin/ground) +"rZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"sc" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + layer = 3.9; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"sk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"st" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"tj" = ( +/obj/item/reagent_container/hypospray/autoinjector/tricord/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"tm" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"tt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/yellow/southeast, +/area/tyrargo/indoors/admin/ground) +"ty" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"tE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"tG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/ground) +"tI" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/ground) +"tX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"us" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"uv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"uz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"uO" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/oob) +"uW" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"uY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"vd" = ( +/obj/structure/bed/bedroll{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"vA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"vB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/admin/ground) +"vK" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison/blue/southeast, +/area/tyrargo/indoors/admin/ground) +"vS" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"vU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/buritto, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"wa" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/green/southeast, +/area/tyrargo/indoors/admin/ground) +"wI" = ( +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"xO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"xQ" = ( +/obj/item/trash/cheesie, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"xT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"xY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/admin/ground) +"yb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ys" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/admin/ground) +"zi" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/admin/ground) +"zp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"zz" = ( +/obj/structure/bed/bedroll{ + dir = 9; + layer = 3.0; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"zC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Af" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"AC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/admin/ground) +"AR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ba" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Bf" = ( +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/admin/ground) +"Bt" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/ground) +"BC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"BG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 26; + pixel_x = -18 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"BP" = ( +/obj/item/stack/medical/ointment{ + pixel_x = 4; + pixel_y = 3; + amount = 2 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"Ca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"CQ" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 5 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"CS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Dc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/medical/lifesaver, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"Dg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Dm" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/ground) +"Dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/bruise_pack/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"DE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"DG" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"DV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 8; + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ED" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"EE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/blue/northwest, +/area/tyrargo/indoors/admin/ground) +"EI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"EK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"EW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"FR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ga" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/indoors/admin/ground) +"Gc" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Gi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"Gm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Gt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Gz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/prison/blue, +/area/tyrargo/indoors/admin/ground) +"GH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian/burst, +/turf/open/floor/prison/green/west, +/area/tyrargo/indoors/admin/ground) +"Hh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Hl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 9; + layer = 3.0; + pixel_x = 10; + pixel_y = 5 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian/burst, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Hu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"HB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"HW" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/prison/yellow/northeast, +/area/tyrargo/indoors/admin/ground) +"Ip" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 14 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"Iq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/structure/closet/bodybag{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"Is" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Iv" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"Iw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/folding_barricade, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"IL" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"Jg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"Jj" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Jv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"JF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"JH" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/ground) +"JL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/yellow, +/area/tyrargo/indoors/admin/ground) +"Km" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 9; + layer = 4; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Kn" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"Ku" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"KT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"KX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Lh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Lx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Lz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/optable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Mm" = ( +/turf/template_noop, +/area/template_noop) +"Ms" = ( +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"ML" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"MU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ni" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/item/device/defibrillator/compact{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"No" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"NV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"NZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"Oe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"Op" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ot" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"OG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/tyrargo/indoors/admin/ground) +"OK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"OP" = ( +/obj/structure/largecrate/supply/supplies/wy_emergency_food, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"OX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Px" = ( +/obj/item/prop/colony/used_flare, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"PE" = ( +/obj/item/ammo_casing/bullet, +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"PI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"Qe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Qs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/blood/empty{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"QA" = ( +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/admin/ground) +"QZ" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/yellow/east, +/area/tyrargo/indoors/admin/ground) +"Rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"RB" = ( +/obj/structure/bed/bedroll{ + dir = 9; + layer = 4; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"RC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"RH" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"RN" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"RO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"Sg" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor/prison/green/east, +/area/tyrargo/indoors/admin/ground) +"Sk" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = -5; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"Sl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"So" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"SX" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ta" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Ti" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"TC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Uj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/bodybag{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Uq" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/green/northeast, +/area/tyrargo/indoors/admin/ground) +"Uy" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"UA" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/prison/yellow/west, +/area/tyrargo/indoors/admin/ground) +"UF" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"UG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/yellow/north, +/area/tyrargo/indoors/admin/ground) +"UL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/darkred2, +/area/tyrargo/indoors/admin/ground) +"UX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"Vd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"VA" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1; + layer = 3; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"VJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/ointment/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"VT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"VW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Wi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/storage/surg_vest/drop_green/equipped, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Wy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"WF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/tyrargo/indoors/admin/ground) +"WY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Xm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray/autoinjector/kelotane/random_amount, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Xu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"XM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"XO" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"XS" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/ground) +"Ye" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/yellow/southwest, +/area/tyrargo/indoors/admin/ground) +"Yi" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Yq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green{ + pixel_x = 3 + }, +/turf/open/floor/prison/green, +/area/tyrargo/indoors/admin/ground) +"YA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"YF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian/burst, +/turf/open/floor/prison/darkred2/north, +/area/tyrargo/indoors/admin/ground) +"YH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"YT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkred2/west, +/area/tyrargo/indoors/admin/ground) +"YZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/ground) +"Zm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) +"Zw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/multi_tiles/west, +/area/tyrargo/indoors/admin/ground) +"ZA" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/turf/open/floor/prison/blue/north, +/area/tyrargo/indoors/admin/ground) +"ZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/ground) + +(1,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +kN +kN +kN +kN +Mm +"} +(2,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +gA +kN +jK +kN +Ga +"} +(3,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +BP +uW +Sk +EE +eH +"} +(4,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +fw +dn +zC +RC +oz +"} +(5,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +jY +uW +pu +pN +oz +"} +(6,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +vK +rP +vS +jr +cA +"} +(7,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +EW +rP +RB +lP +lP +"} +(8,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +mJ +rP +ap +Dm +Mm +"} +(9,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +Bt +Bt +Bt +lP +lP +dz +UX +XS +tG +Mm +"} +(10,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +lP +fI +dB +fI +lP +lP +hs +JF +Dc +tG +Mm +"} +(11,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +id +tE +fJ +Ba +XS +bs +gn +uW +VW +tG +Mm +"} +(12,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +kn +Gm +Iv +EI +RN +BC +YZ +NZ +EW +lP +Mm +"} +(13,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +Gz +mj +dn +ZO +Is +rS +OK +Af +jn +lP +Mm +"} +(14,1,1) = {" +Mm +Mm +Ga +lP +lP +lP +lP +Mm +lP +lP +yb +Zw +YH +lP +kN +kN +lP +lP +lP +lP +"} +(15,1,1) = {" +Mm +Ga +Ga +zz +mP +uY +lP +lP +lP +lP +Hl +uW +xY +kN +kN +ys +QZ +QZ +lj +lP +"} +(16,1,1) = {" +Mm +lP +KX +Is +Lx +Is +vS +lP +lP +lP +TC +uW +ZA +lP +st +Is +gn +rJ +iA +lP +"} +(17,1,1) = {" +lP +lP +Jv +Yi +aR +Qs +lu +kN +kN +kN +aI +uW +ih +lP +FR +Dg +vS +NV +NV +lP +"} +(18,1,1) = {" +lP +ty +EK +ra +Lx +Vd +kN +aI +kN +kN +Ip +wI +ih +lP +Xm +VJ +XS +NV +lP +lP +"} +(19,1,1) = {" +Bt +xT +rc +kL +MU +CS +bJ +aI +kN +kN +KT +vU +dV +lP +Is +xO +vA +Ti +Bt +Mm +"} +(20,1,1) = {" +Bt +ML +Is +lr +vd +Hh +UF +kN +kN +kN +vS +qh +rn +eH +Is +xQ +CS +oE +eH +Mm +"} +(21,1,1) = {" +lP +vS +WY +JH +uO +Is +nv +tm +mB +nj +hs +Zw +Rz +kg +Ye +DV +kN +kN +eH +Mm +"} +(22,1,1) = {" +lP +Km +Is +JH +uO +Ix +VT +RH +dT +PI +XS +oM +Ot +QA +JL +ZO +kN +kN +Ga +Mm +"} +(23,1,1) = {" +lP +oA +DG +JH +uO +ne +No +iA +qE +jM +fl +ac +Oe +UG +Bf +kz +kN +kN +cR +Mm +"} +(24,1,1) = {" +lP +fj +vS +JH +uO +aa +Ca +Is +cl +Yq +tX +uW +EW +QA +AC +Is +CS +kN +Ga +Mm +"} +(25,1,1) = {" +lP +Zm +sc +JH +uO +Ta +Hh +Gt +Uq +wa +iA +XO +kc +HW +tt +cF +Is +Ti +eH +Mm +"} +(26,1,1) = {" +lP +lu +Wy +Jg +No +Px +dk +ar +lP +lP +aa +HB +OG +Bt +YA +vS +Jj +Ti +Bt +Mm +"} +(27,1,1) = {" +Bt +ML +Is +PE +ED +Lh +AR +Op +lP +kN +YH +uW +Gi +lP +SX +Is +Is +Ti +Bt +Mm +"} +(28,1,1) = {" +Bt +Sg +mP +iU +OX +Gm +Qe +Op +kN +kN +tI +fr +Gi +lP +Dw +XM +XS +XS +lP +lP +"} +(29,1,1) = {" +lP +lP +Lz +gU +kK +Ni +gU +jx +kN +kN +pK +BG +YF +lP +Hu +me +lG +Kn +OP +lP +"} +(30,1,1) = {" +Mm +lP +gf +Wi +tj +Hh +dm +kN +kN +kN +sk +HB +cC +lP +gn +Iw +Is +Is +CS +lP +"} +(31,1,1) = {" +Mm +Ga +Ga +ty +GH +dW +lP +lP +lP +kN +hi +ed +XS +lP +qI +zi +zi +UA +kN +kN +"} +(32,1,1) = {" +Mm +Mm +Ga +lP +lP +lP +lP +Mm +lP +lP +VA +RO +IL +lP +lP +lP +kN +kN +kN +kN +"} +(33,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +mR +Ms +HB +IL +XS +NV +Uj +aI +aI +kN +Ga +"} +(34,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +hY +us +NZ +CQ +Iq +BC +Uy +WF +ir +mF +Bt +"} +(35,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +UL +uz +Is +Is +Is +uv +vS +uW +vS +Sl +oz +"} +(36,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +lP +YT +bK +vB +lP +lP +Is +NZ +ju +Gi +al +"} +(37,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +Bt +Bt +Bt +lP +kN +Gc +Xu +Ku +So +oz +"} +(38,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +kN +rZ +iA +Is +rU +Bt +"} +(39,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +kN +kN +zp +DE +Ga +Ga +"} +(40,1,1) = {" +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +Mm +lP +kN +lP +lP +Ga +Mm +"} diff --git a/maps/map_files/Tyrargo_Rift/sprinkles/10.government_resin_upper.dmm b/maps/map_files/Tyrargo_Rift/sprinkles/10.government_resin_upper.dmm new file mode 100644 index 000000000000..dabf87c8df64 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/sprinkles/10.government_resin_upper.dmm @@ -0,0 +1,1880 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"ab" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper/external) +"ac" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"ad" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"aN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"aX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"bp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"bB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"bE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"bG" = ( +/turf/open/floor/prison/red/southeast, +/area/tyrargo/indoors/admin/upper) +"cK" = ( +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"cN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/admin/upper/external) +"dJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"dK" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"dQ" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_on = 1; + light_range = 1; + light_color = "#017549" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"eg" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"fi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/admin/upper) +"gT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/admin/upper) +"hw" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/indoors/admin/upper/external) +"hE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"hK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"iV" = ( +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/tool/pen/blue{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"jw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"jF" = ( +/turf/open/floor/prison/red/east, +/area/tyrargo/indoors/admin/upper) +"jM" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/indoors/admin/upper/external) +"ki" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper/external) +"kl" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/upper) +"ko" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"kx" = ( +/turf/open/floor/prison/red/southwest, +/area/tyrargo/indoors/admin/upper) +"kN" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"lf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/admin/upper) +"mi" = ( +/obj/structure/machinery/big_computers/computerblack/computer5, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"mk" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/tyrargo/indoors/admin/upper) +"mJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"nB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper/external) +"nO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"nS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"nW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"oi" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/admin/upper) +"oB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"oN" = ( +/obj/item/weapon/gun/rifle/ar10{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"oQ" = ( +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/upper/external) +"pO" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/upper/external) +"qk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 6; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"qq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/admin/upper) +"qI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"qK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/admin/upper) +"rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"ro" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"rr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"rP" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"sf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"so" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"sL" = ( +/turf/closed/wall/strata_outpost, +/area/tyrargo/indoors/admin/upper) +"sP" = ( +/turf/open_space, +/area/tyrargo/indoors/admin/upper) +"sY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/medical_doctor_corpse/burst, +/turf/open/floor/prison/red/northeast, +/area/tyrargo/indoors/admin/upper) +"tl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -20 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"tr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/tyrargo/indoors/admin/upper) +"tC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"ui" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/tyrargo/indoors/admin/upper) +"um" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/indoors/admin/upper/external) +"us" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"uF" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper/external) +"vc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/tool/screwdriver/tactical{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"vW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"wd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = -4; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"wL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"wP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"wU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"xl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"xm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"xI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"xT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"yh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"yj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"yp" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"ys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"yG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"yN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"yR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"zg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"zO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"zP" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper) +"zZ" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/admin/upper) +"AB" = ( +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount{ + pixel_y = 6; + pixel_x = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"Bn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"By" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Bz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"BY" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Cg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/red/north, +/area/tyrargo/indoors/admin/upper) +"CW" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/admin/upper) +"DG" = ( +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"DI" = ( +/obj/structure/machinery/light{ + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/red/southwest, +/area/tyrargo/indoors/admin/upper) +"Fc" = ( +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"FO" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/tyrargo/indoors/admin/upper/external) +"FZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Gf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Gl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Gs" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/admin/upper) +"Gu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/ramptop, +/area/tyrargo/indoors/admin/upper) +"GG" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/indoors/admin/upper/external) +"GU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/southeast, +/area/tyrargo/indoors/admin/upper) +"Hi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"Hr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Hv" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Hx" = ( +/obj/structure/stairs/multiz/down, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper) +"HC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 3; + layer = 3.1; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"HR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/tyrargo/indoors/admin/upper) +"HU" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/indoors/admin/upper/external) +"HX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Ik" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/paper, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Ix" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + dir = 8; + pixel_x = 5; + pixel_y = -3; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"IN" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/admin/upper/external) +"IO" = ( +/turf/template_noop, +/area/template_noop) +"Jm" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"JH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper) +"JV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/civilian_office/burst, +/turf/open/floor/prison/red/north, +/area/tyrargo/indoors/admin/upper) +"Kj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Kp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/red/east, +/area/tyrargo/indoors/admin/upper) +"KE" = ( +/turf/open/floor/prison/cell_stripe, +/area/tyrargo/indoors/admin/upper) +"KO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"Lk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Lq" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + pixel_y = 28 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"LA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"LV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northeast, +/area/tyrargo/indoors/admin/upper) +"Mc" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/indoors/admin/upper/external) +"Nr" = ( +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"NS" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/admin/upper/external) +"Ob" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/east, +/area/tyrargo/indoors/admin/upper) +"Og" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/red, +/area/tyrargo/indoors/admin/upper) +"Oi" = ( +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Ov" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 30 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Ph" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/indoors/admin/upper/external) +"Px" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/admin/upper) +"PC" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/indoors/admin/upper/external) +"PH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Qs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/tyrargo/indoors/admin/upper) +"Qw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"QY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/tyrargo/indoors/admin/upper) +"Rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/admin/upper) +"Rv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"RB" = ( +/turf/open/floor/prison/red/west, +/area/tyrargo/indoors/admin/upper) +"RO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/hybrisa/nspa_constable, +/obj/structure/machinery/light{ + dir = 8; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Sg" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/admin/upper/external) +"Sy" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/admin/upper) +"Tc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + dir = 4; + light_color = "#A7DBB6" + }, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Tq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"TK" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"TW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Ug" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/tyrargo/indoors/admin/upper/external) +"Uq" = ( +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"UB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/tyrargo/indoors/admin/upper) +"Vf" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/admin/upper/external) +"Vh" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/big_computers/computerblack/computer5{ + density = 0; + pixel_y = 25 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Vj" = ( +/obj/structure/machinery/light{ + dir = 1; + light_color = "#A7DBB6" + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Vm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/tyrargo/indoors/admin/upper) +"Vu" = ( +/turf/open/floor/prison/red/north, +/area/tyrargo/indoors/admin/upper) +"VH" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + light_color = "#96DED1"; + light_on = 1; + light_range = 1; + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"VR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/northwest, +/area/tyrargo/indoors/admin/upper) +"VX" = ( +/turf/open/floor/prison/red/northeast, +/area/tyrargo/indoors/admin/upper) +"Xd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/tyrargo/indoors/admin/upper) +"Xj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/tyrargo/indoors/admin/upper) +"Xn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"XJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + pixel_y = -2; + pixel_x = 32 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"XS" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -6; + layer = 3.1 + }, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Yd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Yg" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/admin/upper/external) +"Yl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/ramptop/east, +/area/tyrargo/indoors/admin/upper) +"YB" = ( +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) +"Zq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_sticky, +/turf/open/floor/strata/floor3, +/area/tyrargo/indoors/admin/upper) +"Zz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/north, +/area/tyrargo/indoors/admin/upper) +"ZJ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northwest, +/area/tyrargo/indoors/admin/upper) +"ZR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/floor2, +/area/tyrargo/indoors/admin/upper) + +(1,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +PC +hw +hw +hw +Ph +IO +"} +(2,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +oQ +oQ +oQ +NS +Ph +"} +(3,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +pO +cN +Yg +NS +HU +"} +(4,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +ki +Yg +Yg +Yg +um +"} +(5,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +Sg +Yg +Sg +IN +aa +"} +(6,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +ki +Sg +Sg +oQ +oQ +"} +(7,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +ki +Yg +oQ +oQ +oQ +"} +(8,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +nB +cN +oQ +pO +IO +"} +(9,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +sL +sL +sL +sL +sL +zP +JH +tr +nS +sL +IO +"} +(10,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +sL +mi +DG +YB +kN +VR +oB +RB +DI +sL +IO +"} +(11,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +BY +Hv +LA +LA +HX +Zz +Uq +ro +wP +sL +IO +"} +(12,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +xI +LA +DG +DG +cK +Vu +Uq +Yl +Og +sL +sL +"} +(13,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +ys +LA +LA +DG +sL +JV +Qs +Lk +wP +qq +vW +"} +(14,1,1) = {" +IO +IO +sL +zP +tr +tr +zP +IO +sL +Ix +DG +LA +hK +sL +Cg +Lk +Bn +wP +KE +mJ +"} +(15,1,1) = {" +IO +sL +sL +Oi +Xj +Oi +sL +sL +sL +sL +Lq +LA +bp +sL +Vu +zO +zO +wP +KE +mJ +"} +(16,1,1) = {" +IO +zP +zZ +Xd +Vm +bB +RO +sL +kl +XS +DG +yp +LA +sL +Zz +ro +Uq +xl +KE +uF +"} +(17,1,1) = {" +sL +sL +fi +Gs +mk +Oi +Oi +Jm +kl +QY +CW +TW +tC +sL +VX +Kp +Ob +bG +KE +FO +"} +(18,1,1) = {" +sL +sP +sP +sP +ui +By +Oi +kl +kl +QY +Tq +Qw +Ik +kl +cK +Zq +HX +HX +sL +sL +"} +(19,1,1) = {" +sL +sP +sP +sP +ui +dJ +hE +eg +sL +dK +TK +LA +kl +kl +kl +DG +DG +yh +zP +IO +"} +(20,1,1) = {" +sL +sP +sP +sP +ui +Oi +PH +ro +sL +sL +Vj +HX +cK +kl +Tq +yN +DG +Yd +zP +IO +"} +(21,1,1) = {" +sL +sP +sP +sP +Hx +Qs +Fc +wU +Dp +Sy +KO +eg +Qs +cK +LA +LA +LA +dQ +sL +IO +"} +(22,1,1) = {" +zP +sP +sP +sP +Hx +Qs +rP +Uq +qK +gT +Uq +aN +Qs +cK +LA +DG +us +sL +sL +IO +"} +(23,1,1) = {" +zP +sP +sP +sP +Hx +rj +Fc +oN +qK +Rj +ko +sf +Fc +iV +DG +LA +Ov +sL +IO +IO +"} +(24,1,1) = {" +zP +sP +sP +sP +Hx +qI +aX +Uq +qK +UB +ro +aN +Qs +cK +yG +LA +Gf +sL +sL +IO +"} +(25,1,1) = {" +sL +sP +sP +sP +Hx +Qs +Gu +Fc +oi +mk +Yl +eg +Qs +cK +DG +DG +LA +ZR +sL +IO +"} +(26,1,1) = {" +sL +sP +sP +sP +ui +Oi +PH +AB +kl +kl +cK +cK +Gl +sL +DG +DG +Xn +Yd +zP +IO +"} +(27,1,1) = {" +sL +sP +sP +sP +ui +aX +By +kl +kl +kl +tl +LA +Bz +sL +Rv +Bz +LA +LA +zP +IO +"} +(28,1,1) = {" +sL +sP +sP +sP +ui +Oi +aX +kl +sL +HC +LA +LA +vc +sL +yj +cK +bE +so +sL +sL +"} +(29,1,1) = {" +sL +sL +ZJ +lf +Sy +Oi +aX +kl +sL +wd +LA +Yd +VH +sL +VR +xm +jw +RB +kx +sL +"} +(30,1,1) = {" +IO +zP +LV +HR +mk +Oi +Tc +sL +sL +dK +DG +zg +xT +sL +Zz +yR +nW +Hi +Nr +sL +"} +(31,1,1) = {" +IO +sL +sL +aX +aX +Oi +sL +sL +sL +sL +Vh +FZ +LA +sL +sY +Ob +Ob +jF +GU +sL +"} +(32,1,1) = {" +IO +IO +sL +zP +zP +zP +sL +IO +sL +ad +DG +Kj +ZR +sL +zP +wL +nO +Px +zP +sL +"} +(33,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +Hr +rr +ZR +sL +sL +NS +Sg +Ug +Vf +Sg +sL +"} +(34,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +qk +XJ +sL +sL +ki +nB +IN +Vf +ki +NS +HU +"} +(35,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +sL +sL +sL +sL +Sg +Ug +Sg +ki +ki +Sg +NS +HU +"} +(36,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +ac +NS +NS +NS +NS +pO +oQ +oQ +IN +Ug +pO +HU +"} +(37,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +GG +Mc +Mc +Mc +Mc +Mc +ab +oQ +NS +NS +pO +HU +"} +(38,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +NS +NS +NS +pO +HU +"} +(39,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +jM +NS +NS +pO +pO +um +"} +(40,1,1) = {" +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +IO +GG +Mc +Mc +Mc +um +IO +"} diff --git a/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash.dmm b/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash.dmm new file mode 100644 index 000000000000..f700adc32a38 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash.dmm @@ -0,0 +1,3162 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "26"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ab" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ac" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ad" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"ae" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/vehicles/tank/longstreet/primary/ltb/destroyed{ + pixel_y = -68; + dir = 8; + pixel_x = -15; + layer = 3.1 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"af" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ag" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ah" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ai" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aj" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ak" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "27"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"al" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "33"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"am" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "39"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"an" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ao" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/machinery/m56d_hmg/mg_turret/dropship, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"ap" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship2/transparent/lower_right_wing{ + dir = 8; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aq" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship2/transparent/middle_right_wing{ + dir = 8; + name = "Tychon" + }, +/obj/structure/machinery/light/dropship/green{ + needs_power = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"ar" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"as" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"at" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "38"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"au" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/prop/rock{ + pixel_x = 2; + pixel_y = 5; + density = 0 + }, +/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"av" = ( +/obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons{ + dir = 8; + density = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aw" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "19"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"ax" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "25"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"ay" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "31"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"az" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "48"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aA" = ( +/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons{ + dir = 8; + density = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aB" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/outdoors/outskirts/central) +"aC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/shuttle/part/dropship2/transparent/nose_top_right{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aD" = ( +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"aE" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "53"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/shuttle/part/dropship2/left_outer_wing_connector{ + dir = 8; + name = "\improper Tychon" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aG" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "10"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/shuttle/part/dropship2/transparent/nose_top_left{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aI" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "52"; + name = "\improper Tychon"; + dir = 8 + }, +/area/tyrargo/indoors/tychon) +"aJ" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "47"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aK" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "76"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aL" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "51"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/shuttle/part/dropship2/bottom_left_wall{ + name = "\improper Tychon"; + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aN" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "62"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aO" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "67"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aP" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"aQ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aR" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "75"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"aS" = ( +/obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons{ + dir = 8; + density = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aT" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/shuttle/part/dropship2/transparent/lower_left_wing{ + dir = 8; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aU" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/shuttle/part/dropship2/transparent/middle_left_wing{ + dir = 8; + name = "Tychon" + }, +/obj/structure/machinery/light/dropship/red{ + dir = 1; + needs_power = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aV" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/shuttle/part/dropship2/transparent/upper_left_wing{ + dir = 8; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aW" = ( +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_y = 1; + layer = 3.1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"aY" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aZ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ba" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bb" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "23"; + dir = 4; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bc" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bd" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"be" = ( +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = -18; + pixel_y = -23; + layer = 3.1 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "22"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bf" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ + dir = 8; + density = 0; + name = "Tychon" + }, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3; + pixel_y = 15; + pixel_x = -17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bg" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/item/device/m56d_gun, +/obj/item/device/m56d_post, +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bj" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/pistol/mod88, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bk" = ( +/obj/item/ammo_casing/bullet, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bl" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/light/dropship/blue{ + dir = 1; + needs_power = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bm" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bn" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bp" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bq" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"br" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"bs" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bt" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"by" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bz" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"bB" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bD" = ( +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_y = 16 + }, +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_y = 1; + layer = 3.1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bE" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 6; + pixel_y = -7; + dir = 1 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"bH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/trunk2{ + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"bK" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"bL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"bM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/largecrate/supply/ammo/m39/half, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bN" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bO" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bQ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bR" = ( +/turf/open/auto_turf/tyrargo_grass/layer1, +/area/tyrargo/outdoors/outskirts/central) +"bS" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bT" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bU" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"bV" = ( +/obj/item/storage/backpack/marine/satchel/rto/small{ + pixel_x = 7; + pixel_y = 19 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bW" = ( +/obj/structure/dropship_equipment/sentry_holder, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"bX" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"cM" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"cZ" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "86"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"dH" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ee" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ew" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"eL" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -20; + pixel_y = 15; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"eN" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -1; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"eW" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"fs" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag." + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"fR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing{ + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"hy" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"hO" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "68"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"hX" = ( +/obj/structure/bed/chair/vehicle{ + icon_state = "vehicle_seat_destroyed"; + dir = 8; + pixel_y = 16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"ji" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"jp" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"jH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"kd" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"kF" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_6" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"kL" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"lJ" = ( +/turf/open/floor/plating/burnt_platingdmg3, +/area/tyrargo/indoors/tychon) +"lR" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"md" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"ml" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"mN" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 4; + light_color = "#FF7700"; + pixel_x = 7 + }, +/turf/closed/shuttle/dropship2{ + icon_state = "52"; + name = "\improper Tychon"; + dir = 8 + }, +/area/tyrargo/indoors/tychon) +"mQ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"no" = ( +/obj/structure/prop/hybrisa/misc/fire/fire1{ + pixel_x = -20; + pixel_y = 9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"od" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"oB" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"oL" = ( +/obj/effect/attach_point/crew_weapon/dropship3/floor{ + attach_id = 7 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"oR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/shuttle/part/dropship2/transparent/nose_center{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"oU" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"oX" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"pg" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -8; + pixel_y = 9; + layer = 5.89 + }, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -22; + pixel_y = 7 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"pw" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"py" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"pO" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"pZ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"qd" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/tychon) +"qe" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"qj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"qs" = ( +/obj/structure/bed/chair/vehicle{ + icon_state = "vehicle_seat_destroyed"; + dir = 8; + layer = 3.1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"ra" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"rw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"sd" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "sunnybush_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"sJ" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"sQ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "Empty and useless now."; + icon = 'icons/obj/items/casings.dmi'; + icon_state = "cartridge_10_1"; + name = "spent casings"; + pixel_y = 12; + pixel_x = -15 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"sZ" = ( +/obj/structure/flora/tree/tyrargo, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.9 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.89 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"tf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/shuttle/part/dropship2/left_inner_wing_connector{ + dir = 8; + name = "\improper Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ut" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "77"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"uI" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700" + }, +/obj/structure/shuttle/part/dropship2/right_inner_wing_connector{ + name = "\improper Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"uP" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"uU" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"va" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/clothing/head/helmet/marine/rto/army{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"vo" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/tyrargo/indoors/tychon) +"vK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"vL" = ( +/obj/structure/bed/chair/vehicle{ + icon_state = "vehicle_seat_destroyed"; + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"wc" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"wf" = ( +/obj/structure/shuttle/part/dropship2/right_outer_wing_connector{ + name = "\improper Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"wK" = ( +/obj/structure/prop/vehicles/tank/longstreet/ballistic/destroyed{ + pixel_y = -34; + pixel_x = -48; + dir = 1; + layer = 2.8 + }, +/obj/structure/prop/vehicles/tank/longstreet/secondary/glauncher/destroyed{ + dir = 8; + pixel_y = -36; + pixel_x = -54; + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"wY" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"xb" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"xe" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"xh" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"yM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"yR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -1; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"yX" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"zg" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"zq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"zB" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.5; + burn_multiplier = 0.1; + dir = 1; + explosive_multiplier = 0.1; + layer = 2; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "Tank Trap"; + layer = 3 + }, +/area/tyrargo/outdoors/outskirts/central) +"zM" = ( +/obj/item/prop{ + desc = "A primary armament cannon magazine"; + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/USCM/vehicles.dmi'; + icon_state = "ltbcannon_1"; + name = "LTB Cannon Magazine"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Ae" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"Ai" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/tyrargo/indoors/tychon) +"Aj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Ay" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"AM" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "35"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Bn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Bv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/tyrargo/indoors/tychon) +"Bw" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "82"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"BC" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"BJ" = ( +/turf/closed/wall/strata_ice/forest/rock/dirty, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"BV" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Cb" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"Cl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Cx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"Cy" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"CB" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"CH" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"CV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Db" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing{ + dir = 8; + density = 0; + name = "Tychon" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Do" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"Ej" = ( +/obj/structure/prop/vehicles/tank/longstreet/turret/destroyed{ + dir = 8; + pixel_x = -47; + pixel_y = -68 + }, +/obj/structure/prop/vehicles/tank/longstreet/module/slauncher/destroyed{ + pixel_x = -82; + pixel_y = -16; + layer = 2.9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/oob) +"En" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Ep" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ED" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14 + }, +/turf/closed/shuttle/dropship2{ + icon_state = "83"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"Fb" = ( +/obj/structure/bed/chair/vehicle{ + dir = 8; + pixel_y = 16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"FK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"FT" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"FV" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Ga" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Gm" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -12; + pixel_y = 19 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/oob) +"Gw" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Gx" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/tyrargo/indoors/tychon) +"GZ" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/tychon) +"HH" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"HV" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3; + pixel_y = 15; + pixel_x = -17 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Iq" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"IE" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"IP" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/tychon) +"IU" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"IV" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Ja" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/tyrargo/indoors/tychon) +"Jg" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing{ + dir = 8; + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Js" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Jz" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"JC" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"JX" = ( +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Kc" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Kv" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"KA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"KJ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"KP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"La" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Lh" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Lp" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"LH" = ( +/obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing{ + density = 0; + name = "Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Mr" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/central) +"NR" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/shuttle/part/dropship2/bottom_right_wall{ + name = "\improper Tychon"; + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"OH" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "92"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"OI" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"OM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Po" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/light_grey_top_right, +/area/tyrargo/indoors/tychon) +"Pq" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Pt" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "63"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/indoors/tychon) +"QI" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"QQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"QR" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "pointybush_1" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Rn" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Rx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Se" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/shuttle/part/dropship2/bottom_left_wall{ + dir = 8; + name = "\improper Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Si" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Sj" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Su" = ( +/obj/structure/shuttle/part/dropship2/nose_front_left{ + dir = 8; + name = "\improper Tychon" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"SB" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"SR" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"TU" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"UQ" = ( +/obj/effect/decal/remains/robot, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"Ve" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"VC" = ( +/obj/item/stack/rods, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"VN" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"WF" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"WQ" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -23; + pixel_y = 15; + layer = 5.99 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -9; + pixel_y = 19; + layer = 5.98 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"Xa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Xr" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700" + }, +/turf/closed/shuttle/dropship2{ + icon_state = "52"; + name = "\improper Tychon"; + dir = 8 + }, +/area/tyrargo/indoors/tychon) +"XD" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "32"; + name = "\improper Tychon"; + dir = 4 + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"XE" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"XK" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Yg" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/tyrargo/indoors/tychon) +"YB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/tyrargo/indoors/tychon) +"YC" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "28"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"YD" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + density = 0; + pixel_y = 17; + name = "dropship controls"; + desc = "Controls for the dropship. This console appears to be offline for maintenance." + }, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -6; + pixel_y = -11 + }, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/tychon) +"YE" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "29"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Zi" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ZG" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "34"; + dir = 8; + name = "\improper Tychon" + }, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ZM" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ZP" = ( +/turf/open/auto_turf/strata_grass, +/area/tyrargo/outdoors/outskirts/central) +"ZR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"ZY" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/tyrargo/indoors/tychon) + +(1,1,1) = {" +bz +Ep +OM +Xa +JX +JX +JX +JX +CH +CH +Aj +CH +JC +JX +JX +JX +JX +KP +uI +wf +"} +(2,1,1) = {" +Ep +eN +bP +yR +bO +bO +Ay +JX +Sj +ae +JC +bp +OM +SB +JX +JX +JX +ah +Ep +LH +"} +(3,1,1) = {" +ah +Cy +sQ +Gw +bO +bO +bN +JX +Rx +En +En +vK +by +fs +py +ac +JX +JX +ah +fR +"} +(4,1,1) = {" +hy +IV +uP +La +bS +bN +bN +Aj +no +Ej +wK +Gm +Bn +CV +Ep +QQ +JX +Js +JX +JX +"} +(5,1,1) = {" +JX +bO +bO +bO +bN +bN +bQ +wc +Rx +bq +bq +ZR +HH +va +uU +JX +JX +JX +JX +oX +"} +(6,1,1) = {" +JX +JX +FK +JX +JX +JX +JX +JX +JX +JX +zM +JX +JX +JX +JX +JX +JX +oX +oX +oX +"} +(7,1,1) = {" +JX +JC +FV +JX +JX +JC +JX +JX +aQ +pZ +pZ +ag +bt +rw +od +bo +oX +oX +oX +oX +"} +(8,1,1) = {" +JX +JX +KA +aZ +BC +TU +JX +JX +Db +Jg +aF +qe +Rn +ab +Si +Si +qj +QR +oX +oX +"} +(9,1,1) = {" +Lp +bw +bt +ee +kd +JX +JX +JX +Ga +bm +tf +Cl +Si +af +Pq +Si +zq +JX +bN +ZM +"} +(10,1,1) = {" +XE +Ep +Si +Si +XK +CB +JX +JX +yX +Se +aG +bl +UQ +Ve +GZ +NR +Kc +JX +xh +BJ +"} +(11,1,1) = {" +CB +sd +bd +ba +Ep +CB +JX +Aj +ai +Xr +QI +sJ +oL +sJ +aW +aw +as +aj +bO +lR +"} +(12,1,1) = {" +bU +Ep +be +bb +zq +JX +JC +JX +xe +mN +md +Yg +sJ +sJ +QI +ax +aa +ak +JX +JX +"} +(13,1,1) = {" +HV +Ep +YC +YE +Iq +JX +JX +pZ +xe +aI +Fb +sJ +oL +sJ +bT +ay +XD +al +Aj +JX +"} +(14,1,1) = {" +pg +Ep +ZG +AM +Iq +JX +JX +bu +bs +aI +bW +Cx +sJ +Yg +aW +aw +at +am +JX +JX +"} +(15,1,1) = {" +xb +BV +bf +bc +bx +JC +bw +bv +af +aI +bD +sJ +oL +sJ +QI +aw +au +an +JX +JX +"} +(16,1,1) = {" +IE +ra +XE +bx +JX +bw +Ep +Zi +aM +aJ +QI +sJ +bg +sJ +vL +az +NR +Ep +bn +dH +"} +(17,1,1) = {" +cM +sZ +Mr +Kv +ji +mQ +WF +yM +aI +bX +Ai +Gx +Bv +Gx +vo +bM +aL +WF +mQ +jH +"} +(18,1,1) = {" +aP +WQ +kL +Lh +ZP +VC +mQ +mQ +aI +hX +Yg +QI +aE +QI +sJ +Ae +aL +mQ +WF +ad +"} +(19,1,1) = {" +SR +eL +Cb +kL +ZP +ZP +br +KJ +IU +QI +sJ +md +Pt +bV +sJ +QI +Ve +mQ +ad +ZP +"} +(20,1,1) = {" +SR +wY +kL +ZP +ZP +ZP +ZP +aY +Ve +QI +sJ +QI +Pt +aD +sJ +QI +IU +ao +FT +ZP +"} +(21,1,1) = {" +aP +oU +Cb +kL +ZP +ZP +ZP +aT +aN +hX +sJ +qs +Pt +QI +sJ +QI +aL +ap +ZP +ZP +"} +(22,1,1) = {" +cM +sZ +VN +kL +bR +FT +ZP +aU +aO +QI +sJ +QI +hO +Ae +sJ +aW +aL +aq +bF +bA +"} +(23,1,1) = {" +aP +WQ +pw +kL +bR +bR +ZP +aV +aI +Fb +Po +Gx +YB +Gx +Ja +QI +aL +ar +bG +bB +"} +(24,1,1) = {" +SR +eL +Cb +kL +bR +bR +ZP +aY +aR +aK +ut +IP +jp +lJ +GZ +Bw +ED +bK +bH +bC +"} +(25,1,1) = {" +SR +wY +Cb +kL +bR +bR +ZP +br +aS +aA +cZ +Do +bj +QI +lJ +aA +av +bL +bI +bE +"} +(26,1,1) = {" +zg +ew +Cb +kL +bR +bR +bR +ZP +br +mQ +OH +YD +bk +md +GZ +mQ +ad +ZP +bJ +ad +"} +(27,1,1) = {" +ml +oB +OI +ZP +zB +ZP +ZP +ZP +ZP +aY +Su +qd +GZ +ZY +aB +Lh +ZP +ZP +ZP +ZP +"} +(28,1,1) = {" +pO +Jz +kL +ZP +ZP +ZP +ZP +ZP +ZP +br +aH +oR +oR +oR +aC +eW +ZP +ZP +ZP +kF +"} diff --git a/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash_aboveground.dmm b/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash_aboveground.dmm new file mode 100644 index 000000000000..a13b363c991a --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash_aboveground.dmm @@ -0,0 +1,241 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts/central) +"d" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/central) +"h" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/outskirts/central) +"t" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/outdoors/outskirts/central) +"w" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts/central) +"x" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/outskirts/central) +"B" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/outskirts/central) +"F" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/outskirts/central) +"M" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts/central) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +x +M +c +a +a +a +"} +(3,1,1) = {" +a +a +x +d +d +d +c +a +a +"} +(4,1,1) = {" +a +a +F +d +d +d +w +a +a +"} +(5,1,1) = {" +a +a +F +d +d +d +w +a +a +"} +(6,1,1) = {" +a +a +F +d +d +d +w +a +a +"} +(7,1,1) = {" +a +a +F +d +d +d +w +a +a +"} +(8,1,1) = {" +a +a +F +d +d +d +w +a +a +"} +(9,1,1) = {" +a +x +d +d +d +d +d +c +a +"} +(10,1,1) = {" +a +F +d +d +d +d +d +w +a +"} +(11,1,1) = {" +x +F +d +d +d +d +d +w +c +"} +(12,1,1) = {" +t +F +d +d +d +d +d +w +h +"} +(13,1,1) = {" +a +F +d +d +d +d +d +w +a +"} +(14,1,1) = {" +a +F +d +d +d +d +d +w +a +"} +(15,1,1) = {" +a +t +B +d +d +d +B +h +a +"} +(16,1,1) = {" +a +a +a +F +d +w +a +a +a +"} +(17,1,1) = {" +a +a +a +F +d +w +a +a +a +"} +(18,1,1) = {" +a +a +a +t +B +h +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash_underground.dmm b/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash_underground.dmm new file mode 100644 index 000000000000..6ce35e86bcb1 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/standalone/dropship_bunker_crash_underground.dmm @@ -0,0 +1,390 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 4.1 + }, +/turf/open/floor/corsat/blue/east, +/area/tyrargo/underground/bunker/north) +"b" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"d" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/oob) +"e" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/tyrargo/underground/bunker/north) +"f" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"g" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"h" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/blue/west, +/area/tyrargo/underground/bunker/north) +"i" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"j" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/bunker/north) +"k" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"q" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/tyrargo/underground/bunker/north) +"r" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen, +/area/tyrargo/underground/bunker/north) +"s" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/tyrargo/underground/bunker/north) +"t" = ( +/obj/structure/prop/hybrisa/boulders, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"u" = ( +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/north) +"v" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/north) +"w" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"x" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"y" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"A" = ( +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"B" = ( +/obj/structure/prop/hybrisa/boulders/smallboulderdark, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"C" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/bluecorner/north, +/area/tyrargo/underground/bunker/north) +"E" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/fake/lattice/full, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"F" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"G" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"H" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/north) +"I" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"J" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/north) +"K" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/north) +"L" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"M" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"N" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/tyrargo/underground/bunker/north) +"P" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/north) +"Q" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + pixel_y = -12 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"R" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"S" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/northeast, +/area/tyrargo/underground/bunker/north) +"T" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/north) +"U" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/north) +"V" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/north) +"W" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/north) +"X" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreencorner, +/area/tyrargo/underground/bunker/north) +"Y" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate{ + layer = 4 + }, +/turf/open/gm/river/desert/tyrargo/no_slowdown, +/area/tyrargo/underground/bunker/north) +"Z" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/north) + +(1,1,1) = {" +A +A +A +A +A +A +A +A +A +A +"} +(2,1,1) = {" +A +A +A +A +A +A +A +A +A +A +"} +(3,1,1) = {" +j +j +d +d +d +d +d +j +A +A +"} +(4,1,1) = {" +s +j +L +W +Q +B +L +j +j +A +"} +(5,1,1) = {" +h +C +x +x +x +x +t +R +j +A +"} +(6,1,1) = {" +g +V +U +w +G +f +x +M +j +A +"} +(7,1,1) = {" +g +V +S +K +f +G +u +M +j +A +"} +(8,1,1) = {" +a +e +i +v +I +Z +V +b +j +A +"} +(9,1,1) = {" +Y +j +F +S +P +J +M +M +j +A +"} +(10,1,1) = {" +E +j +k +V +y +y +H +j +j +A +"} +(11,1,1) = {" +E +j +j +q +T +X +j +j +A +A +"} +(12,1,1) = {" +E +E +E +N +g +r +j +A +A +A +"} diff --git a/maps/map_files/Tyrargo_Rift/standalone/uss_heyst.dmm b/maps/map_files/Tyrargo_Rift/standalone/uss_heyst.dmm new file mode 100644 index 000000000000..f2a53ee61f18 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/standalone/uss_heyst.dmm @@ -0,0 +1,8612 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"ab" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central_south) +"ac" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"ad" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"ae" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"af" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/indoors/bunker/central_south) +"ag" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ah" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ai" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aj" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 8; + anchored = 1 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central_south) +"ak" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"al" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"am" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"an" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"ao" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"ap" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"aq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"ar" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"as" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"at" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"au" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"av" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"aw" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6; + pixel_y = 12 + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"ax" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"ay" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6; + pixel_y = 6; + pixel_x = 6 + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"az" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"aA" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"aB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"aC" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"aD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"aE" = ( +/obj/structure/window_frame/almayer, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"aF" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aG" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"aH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aI" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aJ" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aK" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aL" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aM" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts_road/east) +"aN" = ( +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"aO" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"aP" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aR" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"aS" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aT" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"aU" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -1; + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"aV" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/bunker/north_south) +"aW" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"aX" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"aY" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"aZ" = ( +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"ba" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/outskirts_road/east) +"bb" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 4; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"bc" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 2; + dir = 4 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"bd" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"be" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"bf" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bg" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bh" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown/variant_2, +/area/tyrargo/outdoors/outskirts/central) +"bi" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bj" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_1, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bk" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3; + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.95 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"bl" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts_road/central) +"bm" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bn" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts_road/central) +"bo" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts_road/central) +"bp" = ( +/obj/structure/flora/wood/stick1, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bq" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown/variant_3, +/area/tyrargo/outdoors/outskirts/central) +"br" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"bs" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"bt" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/landinglight{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"bv" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bw" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"bx" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "30" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"by" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bz" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 7; + pixel_x = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = 32; + pixel_y = -3 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/central) +"bA" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_5/west, +/area/tyrargo/outdoors/outskirts/central) +"bB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 10; + pixel_y = -7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bC" = ( +/obj/structure/prop/tyrargo/boards/boards_2, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"bD" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"bE" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/obj/structure/flora/wood/stick4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bF" = ( +/obj/structure/flora/wood/stick2, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"bH" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 1 + }, +/obj/structure/flora/grass/temperate{ + icon_state = "8" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"bI" = ( +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"bJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"bK" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/heyst) +"bL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"bM" = ( +/obj/effect/landmark/ammo_spawn/smg_ammo, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"bN" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"bO" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"bP" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"bQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/outdoors/outskirts/central) +"bR" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/outdoors/outskirts/central) +"bS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/vehicles/tank/apc/destroyed{ + dir = 8; + pixel_y = -80 + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"bT" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"bU" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/outdoors/outskirts_road/central) +"bV" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/outdoors/outskirts/central) +"bW" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/heyst) +"bX" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/heyst) +"bY" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/heyst) +"bZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"ca" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"cb" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"cc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/heyst) +"cd" = ( +/obj/structure/machinery/landinglight{ + dir = 8 + }, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/heyst) +"ce" = ( +/obj/structure/window_frame/almayer, +/obj/item/shard, +/turf/open/floor/plating/panelscorched, +/area/tyrargo/indoors/heyst) +"cf" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cg" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/heyst) +"ch" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/outdoors/outskirts/central) +"ci" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/outdoors/outskirts/central) +"cj" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ck" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/outdoors/outskirts/central) +"cl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"cn" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cu" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"cw" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"cC" = ( +/obj/item/tool/warning_cone{ + pixel_x = -22; + pixel_y = 4 + }, +/obj/effect/landmark/ammo_spawn/vp78_ammo, +/obj/effect/landmark/ammo_spawn/vp78_ammo, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"cD" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"cH" = ( +/obj/item/parachute, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"cI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"cP" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"cQ" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"cR" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"de" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"df" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall7" + }, +/area/tyrargo/indoors/bunker/north_south) +"dh" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"dm" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"dp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"ds" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dz" = ( +/obj/structure/prop/tyrargo/traffic_signal/traffic_signal_4, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"dA" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/bunker/central_south) +"dB" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"dT" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"dV" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"dW" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"eb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/south_face/south, +/area/tyrargo/indoors/heyst) +"ee" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/outskirts_road/east) +"ef" = ( +/obj/item/frame/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"eg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"ek" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"er" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"et" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/almayer/orange/northeast, +/area/tyrargo/indoors/heyst) +"ev" = ( +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"eA" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 1; + pixel_x = -15 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/dark_brown, +/area/tyrargo/outdoors/outskirts/central) +"eE" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"eG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"eI" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"eP" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 17 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"eS" = ( +/obj/structure/prop/hybrisa/misc/fire/firebarrel{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"eT" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"eU" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"eV" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"eY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/orange/north, +/area/tyrargo/indoors/heyst) +"fj" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"fk" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"fl" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"fo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"fv" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"fy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"fA" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"fG" = ( +/obj/item/hardpoint/armor/paladin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"fI" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"fJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"fO" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/indoors/heyst) +"fR" = ( +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst) +"fU" = ( +/obj/item/stack/rods, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/outskirts/central) +"fW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"fY" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts/central) +"gc" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"gi" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"gj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"gq" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"gx" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north_south) +"gz" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"gD" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/central_south) +"gE" = ( +/turf/open/floor/panelscorched, +/area/tyrargo/indoors/bunker/north_south) +"gF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"gG" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"gO" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "heyst0"; + dir = 1; + pixel_x = -5; + name = "USS Heyst" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/central) +"gP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"gQ" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"gS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"gU" = ( +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"gY" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"he" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 10; + light_color = "#FF7700"; + pixel_x = 7 + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"hg" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/bunker/central_south) +"hi" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"hl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"hn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"hr" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"hx" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/heyst) +"hF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"hG" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "heyst1"; + dir = 1; + pixel_x = -5; + name = "USS Heyst" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/central) +"hK" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"hM" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"hP" = ( +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/bunker/north_south) +"hR" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/tyrargo/outdoors/outskirts_road/central) +"hT" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall4" + }, +/area/tyrargo/indoors/bunker/north_south) +"hZ" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/indoors/heyst) +"ie" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/bunker/central_south) +"ig" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -15; + pixel_y = -11 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"il" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal2"; + pixel_y = -12 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"io" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"iq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"it" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"iA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"iC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"iJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/landinglight{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"iV" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_x = 4; + pixel_y = 5; + dir = 8; + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north_south) +"iW" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"iX" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"je" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"ji" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"jj" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall10" + }, +/area/tyrargo/indoors/bunker/north_south) +"jr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/bunker/central_south) +"js" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ju" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"jw" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"jC" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"jE" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 26; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"jK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_x = -18; + pixel_y = -7; + layer = 3.1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"jM" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"jN" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"jU" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"jV" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700" + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"jX" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 38 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/heyst) +"ka" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/east, +/obj/structure/platform/stone/tyrargo, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts/east) +"kc" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ke" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"kg" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"ki" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"kl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"km" = ( +/obj/structure/prop/rock/black_ground{ + dir = 10 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"kp" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"kr" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"ks" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"ku" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts_road/central) +"kv" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"kx" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"ky" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/south_face/southeast, +/area/tyrargo/indoors/heyst) +"kB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/south_face/north, +/area/tyrargo/indoors/heyst) +"kF" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"kH" = ( +/obj/structure/flora/tree/tyrargo{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -8; + pixel_y = 19; + layer = 5.98 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -26; + pixel_y = 11; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"kJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/landinglight{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"kO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"kU" = ( +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"kV" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = -5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"kW" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"kY" = ( +/obj/item/weapon/gun/shotgun/pump, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"lb" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"le" = ( +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"lg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"lh" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ls" = ( +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"lC" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 8; + pixel_x = 14; + pixel_y = -4; + layer = 2.8 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -4; + pixel_y = -1; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"lH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"lP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"lR" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"lX" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"mb" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"me" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"mi" = ( +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"mo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"ms" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"mw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"my" = ( +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"mB" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"mD" = ( +/obj/structure/prop/vehicles/tank/ifv/destroyed{ + pixel_x = -30 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"mK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"mM" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"mO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/tyrargo/indoors/heyst) +"mX" = ( +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/tyrargo/outdoors/outskirts/central) +"na" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -1; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"nb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/floodlight/landing/floor{ + icon_state = "floor_flood_2"; + on_light_range = 0; + light_power = 0; + light_system = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"ni" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/bunker/central_south) +"nj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/indoors/bunker/central_south) +"nm" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/m56d{ + pixel_x = -9; + pixel_y = -3; + current_rounds = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/central_south) +"np" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/floodlight/landing/floor{ + icon_state = "floor_flood_2"; + on_light_range = 0; + light_power = 0; + light_system = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"ns" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/heyst) +"nt" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"nw" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"nA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"nF" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts/central) +"nI" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/north, +/area/tyrargo/indoors/bunker/central_south) +"nL" = ( +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"nM" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/bunker/central_south) +"nQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"nS" = ( +/obj/effect/spawner/random/gun/uscm_primary/highchance, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"nW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/structure/machinery/floodlight/landing/floor{ + icon_state = "floor_flood_2"; + on_light_range = 0; + light_power = 0; + light_system = 0 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"nX" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ob" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"od" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"of" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/uscm_primary/midchance, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"oo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"op" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"os" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"oz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"oA" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 30 + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"oD" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/central_south) +"oM" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall2" + }, +/area/tyrargo/indoors/bunker/north_south) +"oP" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts_road/central) +"oQ" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"oS" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"oY" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 1 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"pb" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"pc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"pi" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"pj" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"pk" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"pl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"pI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/bunker/central_south) +"pZ" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/almayer/plating_striped/east, +/area/tyrargo/indoors/heyst) +"qa" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"qc" = ( +/turf/closed/wall/strata_ice/forest, +/area/tyrargo/oob) +"qe" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"ql" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"qm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"qn" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"qq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/west, +/area/tyrargo/indoors/heyst) +"qv" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"qD" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"qH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"qL" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2/east, +/area/tyrargo/indoors/bunker/central_south) +"qR" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"qS" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"qY" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"rf" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 23; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -3; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"rg" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"ro" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ru" = ( +/obj/structure/prop/tyrargo/watchtower, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"rv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north_south) +"rw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"rx" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"rB" = ( +/obj/structure/largecrate/random{ + layer = 3.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"rD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/prop/rock/black_ground{ + icon_state = "black_ground_alt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"rF" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"rK" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"rM" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"rN" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/platform/stone/tyrargo/east, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"rQ" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 4; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"rS" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/bunker/north_south) +"rW" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"sk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/hardpoint/special/firing_port_weapon, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"sn" = ( +/obj/structure/ladder{ + id = "bunker_lad"; + height = 2 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"so" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/outdoors/outskirts/central) +"su" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassgb_2" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"sv" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/northwest, +/area/tyrargo/indoors/heyst) +"sw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"sx" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"sy" = ( +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"sG" = ( +/obj/item/stack/rods, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"sK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"sM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"sN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"sR" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"sV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"sY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ta" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"tg" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"tl" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"tm" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"to" = ( +/obj/item/hardpoint/locomotion/apc_wheels, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"tq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"tv" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"tE" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall3" + }, +/area/tyrargo/indoors/bunker/north_south) +"tF" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"tM" = ( +/turf/open/floor/almayer/orange/north, +/area/tyrargo/indoors/heyst) +"tP" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"tS" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/outskirts_road/central) +"tW" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"tX" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/southwest, +/area/tyrargo/indoors/bunker/central_south) +"ua" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"ui" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"um" = ( +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"uu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"uC" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -25; + pixel_y = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"uE" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"uI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/uscm_primary/midchance, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"uM" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts_road/east) +"uN" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "heyst2"; + dir = 1; + pixel_x = -5; + name = "USS Heyst" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts_road/central) +"uR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"uT" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"va" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"vc" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"vd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"vh" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"vr" = ( +/turf/open/shuttle/escapepod/floor2, +/area/tyrargo/indoors/bunker/north_south) +"vu" = ( +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"vv" = ( +/obj/item/prop/colony/canister{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"vw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"vx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"vB" = ( +/obj/item/ammo_casing/shell, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"vG" = ( +/turf/open/floor/almayer/uscm/south_face/west, +/area/tyrargo/indoors/heyst) +"vM" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"vN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"vP" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/indoors/bunker/central_south) +"vT" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ + name = "Medical Cabinet"; + pixel_y = -32 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"vV" = ( +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"vW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -11; + pixel_x = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"wa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -11; + pixel_x = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"wc" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/supply, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"wf" = ( +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"wh" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"wi" = ( +/obj/item/stack/rods, +/turf/open/floor/panelscorched, +/area/tyrargo/indoors/bunker/north_south) +"wk" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts/central) +"wo" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"wr" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"ws" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/bunker/central_south) +"wt" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall6" + }, +/area/tyrargo/indoors/bunker/north_south) +"wx" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/radiation, +/obj/item/storage/firstaid/toxin, +/obj/item/prop/geiger_counter, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"wG" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"wI" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" + }, +/area/tyrargo/indoors/bunker/north_south) +"wN" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"wP" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north_south) +"wR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"wT" = ( +/obj/item/frame/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"xb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/landinglight{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"xg" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"xh" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"xk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"xo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/tyrargo/military_alert_sign/alt{ + layer = 6.1; + pixel_x = -30 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"xt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"xu" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 3; + pixel_x = -8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"xv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"xA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 9 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/tyrargo/indoors/bunker/north_south) +"xD" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"xH" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"xK" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/outskirts/central) +"xN" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"xO" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"ya" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"yh" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"yk" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"yl" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts_road/central) +"yt" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"yw" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"yy" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"yz" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"yD" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/outskirts/central) +"yF" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/almayer/plating_stripedcorner/south, +/area/tyrargo/indoors/heyst) +"yG" = ( +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700"; + pixel_x = -12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"yI" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 32 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"yL" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"yN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"yP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"yW" = ( +/obj/structure/prop/rock/black_ground{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"yZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts_road/central) +"zb" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"zc" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/outdoors/outskirts/central) +"zd" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"ze" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"zf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"zg" = ( +/obj/item/ammo_magazine/pistol/mod88{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"zl" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"zs" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty{ + pixel_x = -2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"zt" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"zv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"zy" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -14; + pixel_y = 6; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"zA" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"zE" = ( +/obj/structure/prop/vehicles/tank/miltruck/wheeled/cover{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"zQ" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts_road/central) +"zS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"zW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"zY" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"Ac" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"Ai" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Am" = ( +/turf/open/floor/plating, +/area/tyrargo/outdoors/outskirts/central) +"Ap" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Ar" = ( +/obj/item/device/flashlight/flare/on{ + fuel_rate = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"At" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Av" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"Ay" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"AD" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -4; + pixel_x = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"AE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"AP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"AT" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"AU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"AX" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"AY" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Be" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Bl" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"Bn" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"By" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/spawner/random/gun/uscm_primary/midchance, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"BB" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/bunker/north_south) +"BG" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"BJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"BK" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"BQ" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"BZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Ce" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"Ch" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Ck" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"CA" = ( +/obj/item/stack/rods, +/turf/open/floor/almayer/uscm/south_face/east, +/area/tyrargo/indoors/heyst) +"CB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"CC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"CE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/tyrargo/indoors/heyst) +"CG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"CH" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"CN" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall8" + }, +/area/tyrargo/indoors/bunker/north_south) +"CO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"CU" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"CV" = ( +/obj/item/ammo_magazine/m56d{ + pixel_x = 3; + pixel_y = 10; + current_rounds = 45 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blackcorner/east, +/area/tyrargo/indoors/bunker/central_south) +"CX" = ( +/obj/structure/prop/rock{ + icon_state = "brown_alt"; + density = 0 + }, +/obj/structure/platform/stone/tyrargo/north, +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -32; + pixel_y = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"Dd" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"De" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"Dk" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Dr" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/almayer/plating_stripedcorner/north, +/area/tyrargo/indoors/heyst) +"Dv" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"DC" = ( +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst) +"DQ" = ( +/obj/structure/prop/rock/black_ground{ + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"DU" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"DY" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"DZ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Eh" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/indoors/heyst) +"Ei" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall1" + }, +/area/tyrargo/indoors/bunker/north_south) +"En" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/landinglight{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Ep" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowbush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Eq" = ( +/turf/template_noop, +/area/template_noop) +"Er" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/stack/medical/ointment/random_amount{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"Et" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + name = "access barrier" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"Eu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"Ev" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"EA" = ( +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"ED" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/central) +"Fd" = ( +/obj/structure/platform/stone/tyrargo/west, +/obj/structure/platform/stone/tyrargo, +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/outdoors/outskirts/east) +"Fo" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/bathmens{ + pixel_x = 7; + pixel_y = 9; + desc = "A traffic signal denoting the direction towards the nearest city."; + name = "City Direction Sign" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26; + name = "\improper North traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the North." + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"Fz" = ( +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"FA" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"FE" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 4; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"FI" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"FQ" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer/black2/west, +/area/tyrargo/indoors/bunker/north_south) +"FY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/item/shard, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"Gb" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -6; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"Gi" = ( +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"Gj" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/trr{ + dir = 8; + pixel_x = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"Gm" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14; + light_color = "#FF7700" + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"Gr" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 38 + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"Gt" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Gu" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"Gv" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"Gx" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"Gy" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/blackfull2, +/area/tyrargo/indoors/bunker/central_south) +"GC" = ( +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + light_color = "#FF7700"; + layer = 6 + }, +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst) +"GD" = ( +/obj/structure/prop/rock/black_ground{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"GE" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"GI" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 3; + pixel_x = 1 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"GM" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"GS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst) +"GT" = ( +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"GU" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_y = 4; + pixel_x = 1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"GY" = ( +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"GZ" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Hb" = ( +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/outdoors/outskirts/central) +"He" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"Hg" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/heyst) +"Hl" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"Hm" = ( +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_x = -32 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Hx" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open_space, +/area/tyrargo/indoors/bunker/north_south) +"Hy" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 20; + anchored = 1 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/tyrargo/indoors/bunker/central_south) +"HB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"HC" = ( +/obj/structure/barricade/hesco{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"HR" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"HT" = ( +/obj/effect/decal/heavy_cable/cable_horizontal, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"HY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/landinglight{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Id" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 18; + pixel_y = 2; + layer = 2.98; + dir = 1 + }, +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Ig" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Is" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"It" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Iv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"IB" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"IL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"IM" = ( +/turf/open/floor/plating, +/area/tyrargo/indoors/bunker/central_south) +"IN" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"IS" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall13" + }, +/area/tyrargo/indoors/bunker/north_south) +"IU" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"IW" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -1; + pixel_y = -18; + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Jh" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Jk" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Jl" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"Jo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"Jr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"Jt" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"Jz" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"JK" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/outskirts/central) +"JQ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Kb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Ke" = ( +/turf/open/auto_turf/snow/brown_base/layer2, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Kf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"Ki" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Kl" = ( +/obj/structure/prop/vehicles/tank/miltruck{ + dir = 8; + pixel_y = -28 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Kn" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Ko" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Kp" = ( +/turf/open/shuttle/escapepod/north, +/area/tyrargo/indoors/bunker/north_south) +"Kz" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"KG" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"KH" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"KV" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = -32; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"KW" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 3; + pixel_x = 8 + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -18; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Lg" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/shuttle/escapepod/floor4, +/area/tyrargo/indoors/bunker/north_south) +"Lj" = ( +/obj/structure/prop/rock/black_ground{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Lp" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"Lv" = ( +/obj/structure/prop/rock/black_ground{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"Ly" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"LC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"LK" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 4; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 6; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -22; + pixel_y = 2; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/tyrargo/military_checkpoint_sign{ + pixel_y = -10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"LO" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "heyst4"; + dir = 1; + pixel_x = -5; + name = "USS Heyst" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts_road/central) +"LQ" = ( +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + layer = 2.1; + pixel_y = -13; + pixel_x = -17 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = -4; + pixel_x = -9 + }, +/turf/open/gm/dirt/dark_brown/variant_1, +/area/tyrargo/outdoors/outskirts/central) +"LS" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/tyrargo/outdoors/outskirts/central) +"LW" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"LY" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 32; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"Me" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/landinglight{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Mf" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/black2, +/area/tyrargo/indoors/bunker/central_south) +"Mg" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"Mk" = ( +/obj/effect/landmark/ammo_spawn/vp78_ammo, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Ml" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1"; + layer = 2.9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"Mq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"Mu" = ( +/obj/structure/barricade/hesco{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Mx" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"MA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"MC" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -27 + }, +/obj/item/frame/table/almayer, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"ME" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -23; + pixel_y = 15; + layer = 3 + }, +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -8; + pixel_y = 4; + layer = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"MI" = ( +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"MO" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"MR" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"MZ" = ( +/obj/structure/machinery/cryopod/evacuation, +/turf/open/shuttle/escapepod/floor4, +/area/tyrargo/indoors/bunker/north_south) +"No" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"Nq" = ( +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"Nv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/uscm_primary/highchance, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"NB" = ( +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 60 + }, +/turf/open/floor/almayer/orange/west, +/area/tyrargo/indoors/heyst) +"NC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"NE" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/outskirts/central) +"NH" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"NI" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"NL" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25; + layer = 3.6 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/military_alert_sign{ + pixel_y = 31 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"NP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"NQ" = ( +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"NR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Oe" = ( +/obj/structure/fence/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Of" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/outdoors/outskirts/central) +"Om" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"On" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"Ou" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts_road/central) +"Ov" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"Oy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/southface, +/area/tyrargo/indoors/heyst) +"OD" = ( +/obj/structure/window_frame/almayer, +/obj/item/shard, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"OF" = ( +/obj/structure/barricade/sandbags/weak_wired{ + icon_state = "sandbag_0"; + pixel_y = -6 + }, +/obj/structure/barricade/sandbags/weak_wired{ + dir = 4; + icon_state = "sandbag_0"; + pixel_x = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"OG" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"OJ" = ( +/obj/structure/largecrate/random{ + layer = 3.1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"OK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"OO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/south_face/southwest, +/area/tyrargo/indoors/heyst) +"OZ" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Ph" = ( +/turf/open/shuttle/escapepod/floor0/north, +/area/tyrargo/indoors/bunker/north_south) +"Pm" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Pn" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"Pp" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Ps" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -10; + pixel_y = -4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"Pz" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"PA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"PB" = ( +/obj/structure/prop/rock/black_ground{ + dir = 5; + pixel_y = -11; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"PH" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"PJ" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"PO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/west, +/area/tyrargo/indoors/heyst) +"PZ" = ( +/obj/item/shard, +/turf/open/floor/almayer/plating_stripedcorner/east, +/area/tyrargo/indoors/heyst) +"Qa" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Qe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/south_face/northwest, +/area/tyrargo/indoors/heyst) +"Qf" = ( +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/random_amount, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Qj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Ql" = ( +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/central) +"Qn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"Qo" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/east) +"Qt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Qv" = ( +/obj/item/storage/belt/utility/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"QM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"QP" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/bunker/north_south) +"QS" = ( +/obj/structure/prop/tyrargo/boards/boards_1{ + pixel_x = -15 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"QU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_horizontal, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"QW" = ( +/turf/open/floor/almayer/uscm/south_face/northeast, +/area/tyrargo/indoors/heyst) +"QX" = ( +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"Re" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Ri" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/regular, +/obj/item/bodybag/cryobag, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Rm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/orange/north, +/area/tyrargo/indoors/heyst) +"Ru" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"Rx" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"RC" = ( +/obj/item/shard, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts/central) +"RH" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"RM" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"RO" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"RW" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"RX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/landinglight{ + dir = 1 + }, +/obj/structure/machinery/floodlight/landing/floor{ + icon_state = "floor_flood_2"; + on_light_range = 0; + light_power = 0; + light_system = 0 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Sk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_medic, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"Sm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/landinglight{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"St" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Sy" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"SA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"SF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/structure/machinery/landinglight{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"SK" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"SM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"SP" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"SR" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/east) +"SV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"SZ" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/indoors/bunker/north_south) +"Tg" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"Th" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/bunker/north_south) +"Tk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"To" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/west, +/area/tyrargo/indoors/heyst) +"TG" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts/central) +"TS" = ( +/turf/open/floor/almayer/orange/southwest, +/area/tyrargo/indoors/heyst) +"TX" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"Ul" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"Uq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/tyrargo/us_army_trooper, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"UB" = ( +/obj/structure/flora/tree/tyrargo/tree_3{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"UE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"UH" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"UJ" = ( +/obj/structure/prop/hybrisa/vehicles/Meridian/Purple{ + pixel_y = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"UQ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"UR" = ( +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"UT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"UY" = ( +/obj/structure/stairs/perspective, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/heyst) +"Va" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "heyst3"; + dir = 1; + pixel_x = -5; + name = "USS Heyst" + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts_road/central) +"Ve" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/indoors/bunker/north_south) +"Vf" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Vh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Vk" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"VJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"VK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"VP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"VS" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"VU" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"VZ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"Wb" = ( +/obj/effect/decal/grass_overlay/grass1/dark, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"Wc" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"Wg" = ( +/obj/structure/largecrate/random/barrel/purewhite, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst) +"Wk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/crate/green, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Wo" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plating_stripedcorner/west, +/area/tyrargo/indoors/heyst) +"Wp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst) +"Wu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"Wy" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/wood/orange{ + dir = 1; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"WD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"WK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"WP" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = 15; + pixel_y = 22 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"WR" = ( +/obj/structure/flora/tree/tyrargo{ + layer = 5.97 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -26; + pixel_y = 11; + layer = 5.96 + }, +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -7; + pixel_y = 16; + layer = 5.95 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"WT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst) +"WZ" = ( +/obj/item/hardpoint/primary/arc_sentry{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst) +"Xa" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"Xd" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"Xe" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + pixel_x = -10; + pixel_y = 9; + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Xh" = ( +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 12; + pixel_y = 20; + layer = 2.9 + }, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/tyrargo/boards/boards_1{ + dir = 4; + pixel_y = 16; + layer = 2.8; + pixel_x = -1 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Xj" = ( +/obj/structure/flora/tree/tyrargo/tree_2{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -15; + pixel_y = 15; + layer = 5.88 + }, +/obj/structure/flora/tree/tyrargo{ + pixel_x = -6; + pixel_y = 6; + layer = 5.99 + }, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Xk" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"Xl" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -2; + pixel_y = -13; + dir = 8 + }, +/obj/structure/prop/tyrargo/boards{ + dir = 8; + pixel_x = 2; + pixel_y = -2; + layer = 2.98 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"Xn" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/central) +"Xq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/road/roadmiddle{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Xw" = ( +/obj/structure/fence/dark, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"XJ" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central) +"XK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"XQ" = ( +/turf/open/floor/almayer_hull, +/area/tyrargo/outdoors/outskirts_road/east) +"XS" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst) +"XV" = ( +/obj/item/ammo_magazine/rifle/lmg/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"Yh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"Yp" = ( +/obj/item/prop{ + desc = "A M56D heavy machine gun mounted upon a small reinforced post with sandbags to provide a small machine gun nest for all your defensive needs. This one is no longer functional."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/USCM/hmg.dmi'; + icon_state = "M56D"; + name = "M56D heavy machine gun nest"; + pixel_y = 8; + anchored = 1; + layer = 3.8; + pixel_x = 29 + }, +/obj/item/ammo_casing/bullet{ + layer = 3.1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"Yq" = ( +/obj/structure/barricade/sandbags/weak_wired{ + dir = 1; + icon_state = "sandbag_0"; + pixel_y = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -3; + dir = 4 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + pixel_y = -7; + dir = 1; + pixel_x = -14 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"Yr" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/central) +"Yv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + pixel_x = -12; + pixel_y = 16 + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 4 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/east) +"Yw" = ( +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"YC" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"YD" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/central) +"YF" = ( +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"YG" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts/central/landing_zone) +"YI" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"YM" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/test_floor4, +/area/tyrargo/indoors/heyst) +"YP" = ( +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + explosive_multiplier = 0.1; + pixel_y = -6 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 8; + explosive_multiplier = 0.1; + pixel_x = -5 + }, +/obj/structure/barricade/metal/wired{ + brute_multiplier = 0.05; + burn_multiplier = 0.1; + dir = 4; + explosive_multiplier = 0.1; + pixel_x = 5 + }, +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "Tank Trap"; + layer = 3 + }, +/area/tyrargo/outdoors/outskirts/east) +"YQ" = ( +/obj/item/storage/firstaid/regular, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"YS" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"YW" = ( +/obj/structure/flora/tree/tyrargo_small/tree_stump{ + layer = 3 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"YX" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"YY" = ( +/obj/structure/prop/vehicles/aircraft/vtol/damaged{ + pixel_x = -31; + pixel_y = -24 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"Zc" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"Zh" = ( +/obj/item/ammo_casing/bullet, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/central) +"Zn" = ( +/obj/effect/decal/grass_overlay/grass1/dark{ + dir = 8 + }, +/obj/structure/barricade/handrail/hybrisa/road/plastic/red{ + dir = 4 + }, +/turf/open/auto_turf/tyrargo_grass/layer0_mud_alt, +/area/tyrargo/outdoors/outskirts_road/east) +"Zp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/almayer/plating/northeast, +/area/tyrargo/indoors/heyst) +"Zs" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts_road/central) +"Zz" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/platingdmg1, +/area/tyrargo/indoors/bunker/central_south) +"ZF" = ( +/obj/item/ammo_magazine/rifle/m4ra/heap/empty, +/obj/effect/decal/strata_decals/tyrargo_mud_corner{ + dir = 9 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/east) +"ZK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/tyrargo_grass/layer0_mud, +/area/tyrargo/outdoors/outskirts_road/east) +"ZL" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/no_build, +/area/tyrargo/indoors/heyst) +"ZN" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ZP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/tyrargo/outdoors/outskirts/north_east_usasf) +"ZT" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/tyrargo_grass/layer0, +/area/tyrargo/outdoors/outskirts_road/central) +"ZU" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/outdoors/outskirts/north_east_usasf) + +(1,1,1) = {" +Gu +RM +RM +sw +RM +RM +wG +SZ +SZ +rv +iV +xA +SZ +SZ +YG +RM +RM +RM +RM +Pn +Pn +Wb +IU +hi +dM +dz +AT +AT +AT +Ke +qc +WR +kH +wN +Ap +AT +AT +AT +Ap +Ke +Ke +bk +Xj +tg +Ap +AT +AT +it +AT +Sy +ZP +Ri +ZN +nX +IN +Kn +wc +cC +IB +Ai +lh +mM +AT +js +Pp +AT +"} +(2,1,1) = {" +Gu +RM +RM +RM +Mx +cI +Ve +SZ +eU +Av +Er +FQ +vT +SZ +Ve +RM +RM +RM +aG +xD +Ou +IU +IU +kg +IU +gF +AT +ZU +YF +AT +qc +qc +Xj +Ap +Re +AT +Ig +AT +AT +su +Ap +Ap +Ap +AT +AT +AT +AT +it +er +NI +RW +wx +Yw +Gt +YS +Dk +BK +AT +ob +AT +Ig +St +AT +fA +AT +AT +"} +(3,1,1) = {" +zc +lR +aA +aA +Oe +Ve +Ve +SZ +wP +gx +gx +gx +QP +SZ +Ve +Ve +lR +aA +aA +uE +Ou +ku +NL +bm +IU +Yr +ZU +ZU +ro +ro +tl +tl +tl +AT +AT +AT +AT +AT +AT +Ig +AT +AT +AT +AT +sK +AT +AT +it +AT +NI +Wk +Qa +vc +Ly +Yw +Qt +BK +GD +AT +Id +AT +St +AT +js +sK +AT +"} +(4,1,1) = {" +LS +Jz +jU +jU +hl +jU +jU +SZ +kp +Hx +Hx +Hx +my +SZ +jU +xN +CG +an +aI +On +Ou +Pn +yy +fv +bm +zd +wh +Ou +Pn +AT +AT +AT +AT +AT +sN +aS +vh +Jk +Jk +zt +od +YY +Lj +YW +AT +bg +pj +it +Ig +dV +dB +dB +Yw +xh +Yw +Qt +xk +rK +IW +eS +Xh +St +AT +js +zy +AT +"} +(5,1,1) = {" +Ql +LS +jU +bB +jU +Ch +jU +SZ +Hx +Hx +Hx +Hx +Hx +SZ +HC +jU +ca +jU +jU +Pn +Pn +WD +Kf +BJ +xO +ad +Pn +zA +IU +lP +aF +AT +AT +AT +aT +uC +kc +yG +zS +VS +jK +aH +pi +Pn +Pn +Pn +AD +hR +Pn +Pn +Pn +Lv +yh +gi +WK +LC +YC +Pn +Fz +QS +Pn +hR +Xl +aU +Pn +mw +"} +(6,1,1) = {" +LS +jU +bF +by +by +bv +jU +SZ +Hx +Hx +Hx +Hx +Hx +SZ +HC +am +SK +pb +cQ +kW +VJ +PH +pk +UT +sR +bL +NC +IU +kW +kW +IU +ag +ds +cn +km +cn +Ev +mb +XK +de +hF +AT +Pn +Pn +Pn +Pn +Yq +hR +hR +qY +Xw +qY +Is +Zs +UQ +Wy +FE +uE +Kz +Kz +hR +hR +ZT +oQ +gj +AT +"} +(7,1,1) = {" +Ql +LS +bH +bD +bz +bw +bt +SZ +Hx +Hx +Hx +Hx +Hx +SZ +aJ +SK +SK +SK +SK +kW +kW +kW +kW +kW +kW +kW +kW +fl +kW +kW +kW +IU +ag +Pn +bl +bl +bl +Pn +Pn +Pn +Pn +Pn +ap +xD +wo +Xa +ig +GI +Hm +OZ +Jh +OZ +CC +Ps +AU +sY +OZ +vx +vx +zl +xo +vW +KW +Zc +wo +ag +"} +(8,1,1) = {" +aW +LS +jU +bE +bA +bx +jU +SZ +SZ +Hx +Hx +Hx +BB +gE +SK +SK +JK +TG +TG +TG +TG +TG +TG +oP +oP +oP +oP +oP +oP +yl +kW +kW +IU +ag +bp +bo +bn +zg +Pn +Pn +ap +xD +IU +kr +kW +zY +cR +il +OZ +io +GY +bJ +bJ +zf +mK +Xq +fI +ua +ua +ua +CC +lX +xH +kW +kW +kW +"} +(9,1,1) = {" +Nq +LS +jU +ca +at +jU +bd +bs +gE +Hx +Hx +Hx +wi +SK +SK +sx +yD +wk +wk +gO +wk +hG +wk +uN +zQ +Va +zQ +LO +zQ +yZ +fl +kW +IU +IU +IU +ag +yw +cH +GU +xD +IU +IU +IU +IU +IU +zY +OZ +DZ +iC +iC +DU +zv +zv +iC +iC +iC +zv +zv +CC +OZ +cj +wa +xu +kW +kW +kW +"} +(10,1,1) = {" +Ql +LS +jU +jU +jU +jU +jU +aI +aV +rS +gE +rS +hP +Ul +sx +sx +fU +wk +wk +wk +wk +wk +wk +zQ +zQ +zQ +zQ +zQ +zQ +yZ +kW +kW +kW +kW +kW +kW +Gb +xD +IU +Bl +kW +IU +kW +IU +IU +IU +kV +as +ev +ah +bC +bi +RO +Pn +Pn +Pn +Pn +ah +Xk +kW +bf +PJ +na +YI +kW +IU +"} +(11,1,1) = {" +Ql +LS +am +SK +ai +jU +jU +jU +jU +am +HR +HR +HR +sx +sx +sx +yD +JK +TG +TG +aN +aN +VZ +jV +TG +TG +TG +oP +yl +yZ +kW +tF +kW +kW +kW +fl +IU +IU +IU +IU +kW +kW +kW +kW +IU +kW +kW +Zh +dT +bj +lC +Pn +Pn +Pn +Ml +MO +Pn +Pn +Pz +hr +zs +bP +FI +YX +ah +IU +"} +(12,1,1) = {" +Ql +SK +SK +Xn +SK +XJ +aQ +jU +jU +XJ +lb +lb +iX +sx +sx +sx +ce +VZ +aN +aN +aN +aN +Hg +aN +aN +VZ +VZ +aN +jV +fY +Ul +ki +kW +ki +ki +ki +vN +qv +qv +tS +oP +oP +TG +TG +TG +TG +TG +TG +nF +SK +SK +SK +le +cQ +ai +jU +ya +jU +WP +rB +jU +dh +oY +jU +Pn +ah +"} +(13,1,1) = {" +SK +IS +jj +Th +jj +wI +XJ +jU +jU +XJ +SK +SK +SK +SK +ek +ch +um +um +bO +QU +eg +bM +Gi +ze +KV +rz +rz +rW +aN +he +SK +kW +fl +hK +ki +ac +ac +ac +tS +bU +zQ +zQ +wk +wk +wk +wk +wk +wk +bQ +nF +SK +XJ +SK +jC +Uq +jC +LW +Mk +NH +OJ +DY +jU +jU +jU +jU +jE +"} +(14,1,1) = {" +SK +Ei +vr +Kp +Ph +CN +SK +jU +am +GZ +cQ +SK +SK +le +so +UE +nW +CO +BZ +IL +AP +Vh +By +AP +Wu +AP +HB +nb +oA +aN +SK +SK +sx +sx +sx +sx +JK +aN +aN +aN +aN +aN +aN +VZ +VZ +VZ +aN +aN +aN +bQ +TG +nF +XJ +XJ +XJ +oS +SK +SK +NH +yk +Sk +vV +Be +jU +jU +Pn +"} +(15,1,1) = {" +SK +oM +MZ +Lg +MZ +df +SK +aP +XJ +XJ +SK +SK +SK +SK +ch +op +bX +gq +bW +op +op +Ov +ms +op +qe +op +sV +HY +ze +aN +sx +sx +sx +rg +sx +zW +aN +aN +aN +hn +kO +Wg +VZ +DC +WZ +DC +fR +aN +aN +aN +aN +aN +TG +TG +TG +TG +nF +dn +SK +pc +an +jU +nt +jU +nt +jU +"} +(16,1,1) = {" +MA +tE +hT +hT +hT +wt +HR +hM +HR +sx +Ul +rD +zW +zW +Am +fy +op +op +op +op +op +op +Ov +op +Ov +Tk +op +En +ze +aN +aN +RC +TG +TG +TG +TG +aN +aN +cP +Gi +fo +ze +CH +kU +vd +vd +vd +UY +to +sG +fW +aN +wk +wk +wk +wk +fY +mB +XJ +Jz +jU +jU +jU +jU +jU +jU +"} +(17,1,1) = {" +aI +SK +SK +SK +XJ +XJ +XJ +XJ +XJ +pc +sx +sx +FY +ch +Hb +op +op +op +cc +op +QX +op +me +op +op +Ov +Ov +xb +Wp +ju +aN +OD +VZ +aN +VZ +VZ +aN +cu +ze +kx +Nv +nw +VZ +kU +sv +qq +qq +eE +ji +ji +qS +VZ +xK +xK +xK +xK +NE +pc +XJ +an +jU +jU +nt +jU +jU +jU +"} +(18,1,1) = {" +jU +jU +aR +XJ +pc +cQ +SK +SK +SK +SK +XJ +aa +SK +ch +bX +op +op +op +Ov +Ov +Ov +Ov +Ov +bX +op +op +dp +En +Gi +VZ +Dr +PO +PO +hZ +fO +Wo +VZ +Mq +At +PA +WT +Mq +VZ +kU +eY +AE +uu +cD +EA +ji +bI +VZ +DQ +XJ +SK +XJ +wR +XJ +SK +MR +jU +jU +am +oo +ai +jU +"} +(19,1,1) = {" +Ck +oo +XJ +XJ +SK +SK +Eq +Eq +Eq +SK +Ul +lb +zW +Am +op +VK +op +gY +op +bX +op +op +op +op +op +op +op +kJ +Gi +fk +ji +VP +Px +rw +oz +ji +NQ +kU +Qe +vG +OO +MC +aN +qn +CE +AE +ef +bS +Zp +Ix +EA +aN +TG +TG +TG +TG +TG +TG +nF +ai +am +oo +XJ +XJ +AY +ai +"} +(20,1,1) = {" +SK +cQ +SK +SK +SK +Eq +Eq +Eq +Eq +Eq +SK +XJ +SK +ci +Am +op +cg +op +op +op +op +op +XS +op +op +je +Ov +RX +ze +Eu +ji +uI +EA +ji +gQ +ji +iA +vd +kB +Oy +eb +iq +aN +kU +mO +qm +Om +He +Ix +Ix +EA +aN +wk +wk +wk +wk +wk +wk +fY +nM +bh +be +bc +af +XJ +kF +"} +(21,1,1) = {" +SK +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +SK +lb +zW +zW +Am +op +op +op +Ov +bW +op +op +op +Ov +op +op +Ov +En +ze +gP +ji +EA +NP +jw +ji +ji +YM +kU +QW +CA +ky +ar +aN +vd +Rm +GT +Hl +He +Ix +Zp +EA +aN +xK +xK +xK +xK +xK +xK +NE +hg +ab +aj +gD +af +af +Jz +"} +(22,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +SK +XJ +SK +Hb +Am +op +op +op +op +Ov +op +op +bY +Ov +op +bW +Ov +En +nw +aE +yF +hx +bK +jX +pZ +PZ +VZ +Mq +vd +kU +vd +OK +VZ +vd +tM +ZL +GT +He +Ix +Zp +EA +VZ +XJ +XJ +GZ +XJ +DQ +XJ +hg +dA +nm +Zz +tX +pI +aY +XJ +"} +(23,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +eA +vw +lb +zW +ck +Am +op +op +qe +op +Ov +Ov +Ov +Ov +ql +op +op +op +En +Gi +aN +aN +VZ +VZ +aN +VZ +OD +aN +Jl +Gi +bZ +lg +Gi +VZ +Qv +et +DC +GS +cD +sk +of +Jr +VZ +TG +TG +TG +TG +nF +XJ +hg +qL +jr +CV +Mf +Hy +aZ +aX +"} +(24,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +LQ +bq +XJ +XJ +SK +cQ +Hb +mX +op +op +gY +Ov +Ov +yN +op +op +op +QM +op +En +ze +aN +aN +xK +xK +xK +xK +xK +aN +aN +gc +Gi +ze +Gi +CH +kU +vd +Ko +bT +UY +fG +ji +Xd +aN +wk +wk +wk +wk +fY +XJ +ni +ie +nA +nI +ws +pI +bb +XJ +"} +(25,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +br +FA +CB +pb +SK +SK +SK +ci +ch +Eh +bX +op +nS +op +op +op +op +gY +op +SF +cl +aN +sx +sx +sx +UH +sx +Ul +aN +ay +aN +wT +yI +um +VZ +To +NB +TS +ns +aN +Gm +aN +aN +aN +xK +xK +xK +xK +NE +Hb +IM +sn +Gy +nj +oD +af +af +Jz +"} +(26,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +SK +XJ +an +Ul +Ul +sx +sx +sx +FY +sx +cd +iJ +iJ +Sm +iJ +bu +Me +Me +bu +np +tW +aN +cf +SK +sx +dm +sx +sx +Of +aN +aw +aN +aN +aN +aN +VZ +VZ +VZ +aN +aN +GC +bR +xK +NE +XJ +XJ +XJ +XJ +XJ +Am +Am +vP +vP +af +af +af +CG +RH +"} +(27,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +SK +Jz +am +cQ +qa +Ul +Ul +sx +sx +sx +sx +HT +CU +bN +Gi +Gi +LY +rz +um +Gr +aN +aN +SK +SK +SK +SK +uR +XJ +XJ +XJ +Of +bV +wk +wk +wk +wk +wk +wk +wk +wk +bR +NE +XJ +XJ +uR +XJ +JQ +XJ +XJ +an +ED +ED +Mu +Mu +Mu +jU +jU +yW +"} +(28,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +XJ +XJ +aL +SK +SK +SK +SK +cQ +SK +SK +aN +aN +aN +Hg +aN +aN +VZ +VZ +aN +aN +fY +SK +SK +Ul +Ul +lb +lb +lb +ME +Ay +Of +xK +xK +xK +xK +xK +xK +xK +xK +NE +Dd +XJ +pl +XJ +XJ +XJ +an +vB +Be +jU +jU +jU +jU +jU +jU +jU +jU +"} +(29,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +os +kF +jU +SK +cQ +MA +SK +SK +SK +SK +xK +aN +aN +VZ +aN +xK +xK +xK +xK +NE +fY +SK +SK +XJ +XJ +XJ +XJ +XJ +Ep +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +uT +XJ +fJ +wf +Qj +PB +jU +jU +kY +jU +YD +jU +jU +jU +jU +Fo +"} +(30,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +os +Pm +jU +SK +Ul +sx +sx +Ul +Wc +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +aM +yL +gS +tm +tm +tm +XJ +XJ +XJ +XJ +XJ +XJ +XJ +CB +XJ +XJ +UB +XJ +XJ +XJ +Kl +Vf +SK +ao +jU +jU +jU +ta +ca +jU +jU +jU +jU +ca +jU +jU +ak +"} +(31,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +XJ +NR +jU +aK +Ul +Ul +sx +Wc +GE +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +XQ +aM +yL +tm +tm +tm +GM +aD +az +ax +ax +av +XJ +XJ +XJ +XJ +an +jU +jU +Kb +It +Yp +Qf +gz +tP +ca +vB +mi +jU +jU +jU +jU +SM +jU +jU +UR +ak +tm +"} +(32,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Rx +Lp +rx +rx +rx +gU +yL +Bn +GE +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ba +tm +tm +tm +tm +tm +tm +aC +eG +eG +au +at +at +at +at +jU +jU +ca +Xe +Ki +vu +jU +xg +OF +jU +vB +jU +jM +jU +UJ +jU +tq +jU +ak +eG +tm +tm +"} +(33,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Rx +eT +Ru +Ce +UR +cw +Qn +yL +yL +yL +yL +tm +qD +tm +tm +GM +tm +lH +qD +SV +tm +GM +tm +tm +tm +qD +tm +tm +tm +tm +tm +tm +eG +eG +au +UR +UR +ke +UR +ru +Mg +Mg +XV +zb +UR +wr +UR +LK +yP +UR +UR +vv +UR +UR +cw +tm +tm +tm +"} +(34,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Rx +eT +Lp +rx +ak +tm +iW +iW +tm +tm +tm +al +dW +ui +yL +aB +al +UR +UR +UR +av +qD +qD +qD +Dv +wr +cw +tm +tm +tm +aB +tm +tm +tm +tm +eG +rM +sM +UR +UR +ZF +Gx +qH +sy +cb +UR +UR +rf +eG +va +yt +vM +eG +UR +cw +tm +tm +tm +"} +(35,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Eq +Rx +eT +ae +rx +SA +Et +nL +uM +MI +yL +yL +bG +yP +BQ +CX +rN +UR +UR +wr +UR +dW +UR +UR +Yh +UR +UR +De +qD +tm +tm +tm +tm +tm +yL +tm +tm +tm +tm +eG +Gx +yL +Ar +yL +tv +rF +Gx +va +kv +GM +tm +tm +tm +tm +eG +tm +qD +qD +al +"} +(36,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Rx +Rx +Rx +Rx +eT +aO +rx +cw +nL +fj +fj +jN +BG +Fd +KG +rx +eI +ka +SR +SP +nQ +Tg +Yv +mD +YP +rx +rx +rx +rx +UR +UR +av +xt +qD +xv +Ac +Jt +Jt +zE +qR +ZK +qR +No +No +tm +Gv +yL +Gv +tm +mo +mo +mo +mo +mo +TX +tm +lH +al +UR +UR +UR +"} +(37,1,1) = {" +Eq +Eq +Eq +Eq +Eq +Rx +Rx +aq +Jo +Lp +rx +rQ +cw +eV +fj +fj +fj +AX +ls +eT +Vk +Lp +rx +rx +rx +yz +OG +gG +OG +Qo +Iv +rx +ks +rx +UR +UR +UR +UR +UR +UR +UR +UR +UR +De +qD +qD +xt +qD +qD +Ac +kl +Zn +KH +Ac +eP +VU +qD +qD +qD +Gj +YQ +UR +UR +UR +UR +UR +"} diff --git a/maps/map_files/Tyrargo_Rift/standalone/uss_heyst_aboveground.dmm b/maps/map_files/Tyrargo_Rift/standalone/uss_heyst_aboveground.dmm new file mode 100644 index 000000000000..536558a66899 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/standalone/uss_heyst_aboveground.dmm @@ -0,0 +1,1531 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"ab" = ( +/turf/open/floor/almayer/test_floor7, +/area/tyrargo/indoors/heyst/upper) +"ac" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/test_floor7, +/area/tyrargo/indoors/heyst/upper) +"ad" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor7, +/area/tyrargo/indoors/heyst/upper) +"ai" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/outdoors/outskirts/central) +"al" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"au" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/effect/decal/heavy_cable/node_west, +/obj/effect/decal/heavy_cable/node_south, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"av" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"aW" = ( +/turf/open/floor/almayer/orange/northwest, +/area/tyrargo/indoors/heyst/upper) +"by" = ( +/obj/effect/spawner/random/gun/uscm_primary/highchance, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"bH" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/west, +/area/tyrargo/indoors/heyst/upper) +"bU" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"cD" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"cH" = ( +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/almayer/test_floor7, +/area/tyrargo/indoors/heyst/upper) +"cM" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northeast, +/area/tyrargo/outdoors/outskirts/central) +"cS" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"cT" = ( +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"dT" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"ei" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"em" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"gl" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/uscm_secondary/highchance, +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst/upper) +"gB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"gO" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southwest, +/area/tyrargo/outdoors/outskirts/central) +"if" = ( +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"ii" = ( +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"iq" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"iF" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"iK" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"jh" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"jw" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"jx" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"jR" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/northwest, +/area/tyrargo/outdoors/outskirts/central) +"kE" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/tyrargo/indoors/heyst/upper) +"ne" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"nF" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/indoors/heyst/upper) +"nK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = -3 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"nN" = ( +/turf/open/floor/plating/panelscorched, +/area/tyrargo/outdoors/outskirts/central) +"oG" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/no_build/plating, +/area/tyrargo/indoors/heyst/upper) +"oI" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"oP" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2, +/area/tyrargo/outdoors/outskirts/central) +"pl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/uscm_primary/highchance, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"pt" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/heavy_cable/node_north, +/obj/effect/decal/heavy_cable/node_west, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"pw" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"pz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"pG" = ( +/obj/effect/decal/heavy_cable/cable_vertical, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"qd" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/tyrargo/outdoors/outskirts/central) +"rf" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/tyrargo/outdoors/outskirts/central) +"rq" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"rG" = ( +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"rR" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"sc" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst/upper) +"tk" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"tr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"tK" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"us" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/remains/robot, +/obj/effect/spawner/random/gun/uscm_secondary/highchance, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"uH" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"uL" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/tyrargo/outdoors/outskirts/central) +"uX" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/almayer/test_floor7, +/area/tyrargo/indoors/heyst/upper) +"vj" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"vF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_vertical, +/obj/effect/decal/heavy_cable/node_south, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"vP" = ( +/turf/open/floor/plating/burnt_platingdmg3, +/area/tyrargo/outdoors/outskirts/central) +"wf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_vertical, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"wg" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"wj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"wY" = ( +/turf/closed/wall/almayer, +/area/tyrargo/indoors/heyst/upper) +"xg" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/tyrargo/outdoors/outskirts/central) +"xl" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/heyst/upper) +"xU" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"yu" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/tyrargo/outdoors/outskirts/central) +"zy" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"zJ" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/tyrargo/outdoors/outskirts/central) +"Ac" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst/upper) +"Aw" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"Bc" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating, +/area/tyrargo/outdoors/outskirts/central) +"Bf" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Bt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Bv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst/upper) +"BD" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating/burnt_platingdmg3, +/area/tyrargo/outdoors/outskirts/central) +"Da" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/robot, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"DZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/northeast, +/area/tyrargo/indoors/heyst/upper) +"Fk" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Gn" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"GM" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"Hw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Ii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/node_north, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Iq" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"IE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/node_east, +/obj/effect/decal/heavy_cable/node_north, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Jk" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/effect/decal/heavy_cable/node_south, +/obj/effect/decal/heavy_cable/node_east, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"JG" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"Ks" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"KH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southeast, +/area/tyrargo/indoors/heyst/upper) +"Lx" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light_construct, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"LF" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"Mo" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Ne" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/stairs/multiz/down, +/turf/open/floor/almayer_hull, +/area/tyrargo/indoors/heyst/upper) +"Ny" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"NH" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = -32 + }, +/turf/open/floor/almayer/orange/east, +/area/tyrargo/indoors/heyst/upper) +"NT" = ( +/obj/effect/landmark/ammo_spawn/m41a_random_spawn, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"NV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Ob" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Oc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Oi" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"OK" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst/upper) +"OZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_horizontal, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Qa" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Qt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table/almayer, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Qw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/tyrargo/indoors/heyst/upper) +"QC" = ( +/obj/effect/decal/heavy_cable/node_north, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"QE" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Ra" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"Rf" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"RX" = ( +/turf/open_space, +/area/tyrargo/outdoors/outskirts/central) +"Sg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst/upper) +"Sx" = ( +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst/upper) +"SG" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"SK" = ( +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"TH" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"TR" = ( +/turf/open/floor/almayer_hull/outerhull_dir_alt/southeast, +/area/tyrargo/outdoors/outskirts/central) +"UC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Vb" = ( +/turf/open/floor/plating/platingdmg3, +/area/tyrargo/outdoors/outskirts/central) +"Vh" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/tyrargo/outdoors/outskirts/central) +"Vp" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Vy" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/tyrargo/outdoors/outskirts/central) +"VB" = ( +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"VR" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/tyrargo/indoors/heyst/upper) +"Wt" = ( +/turf/template_noop, +/area/template_noop) +"WG" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"WU" = ( +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Xv" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/tyrargo/outdoors/outskirts/central) +"Yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 30 + }, +/turf/open/floor/almayer, +/area/tyrargo/indoors/heyst/upper) +"YB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/tyrargo/indoors/heyst/upper) +"Zj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"Zr" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/heavy_cable/cable_horizontal, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) +"ZC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/heavy_cable/cable_horizontal, +/turf/open/floor/plating/plating_catwalk, +/area/tyrargo/indoors/heyst/upper) + +(1,1,1) = {" +Wt +Wt +Wt +wY +kE +kE +wY +Vy +Vy +Vy +Vy +Vy +Xv +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +"} +(2,1,1) = {" +Bc +nN +vP +wY +xl +cT +wY +kE +wY +wY +wY +wY +cM +Xv +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +"} +(3,1,1) = {" +Wt +zJ +ai +jh +VB +YB +WU +ei +OZ +Zj +ne +wY +wY +yu +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +"} +(4,1,1) = {" +Wt +vP +oP +WG +iF +Bf +Fk +Fk +Fk +ii +rG +Oc +wY +yu +Wt +Wt +Wt +Wt +Wt +xg +Vy +Vy +Vy +Vy +Vy +Vy +Vy +wY +kE +kE +kE +wY +Vy +Xv +Wt +"} +(5,1,1) = {" +Wt +Wt +Wt +bU +bU +bU +bU +bU +cD +em +ii +wf +wY +yu +Wt +Wt +Wt +Wt +Wt +rf +wY +wY +kE +kE +kE +wY +wY +wY +Bv +gl +Bv +wY +wY +cM +Xv +"} +(6,1,1) = {" +Wt +Wt +Wt +cT +cT +cT +cT +cT +al +cD +Ny +wf +wY +cM +Vy +Vy +Vy +Vy +Vy +TR +wY +Jk +WU +WU +WU +DZ +NH +KH +WU +Iq +Iq +QC +wY +wY +yu +"} +(7,1,1) = {" +Wt +Wt +RX +cT +cT +cT +cT +cT +cT +wg +Ny +wf +wY +kE +kE +wY +wY +kE +kE +wY +wY +Sx +Sx +OK +Sx +Ac +sc +Sx +TH +cS +cD +Qa +rq +kE +yu +"} +(8,1,1) = {" +Wt +RX +RX +cT +cT +cT +cT +cT +cT +wg +Ny +vF +tr +WU +tk +NT +jh +SG +WU +WU +UC +pt +jx +rG +rG +rG +ii +gB +TH +Aw +JG +cD +Ny +kE +yu +"} +(9,1,1) = {" +Wt +Wt +RX +cT +cT +cT +cT +cT +cT +wg +Ny +pG +Hw +Fk +Fk +xU +Ks +Fk +Fk +Fk +Da +wj +by +ad +uX +rG +ii +aa +TH +Aw +LF +wg +Ny +wY +yu +"} +(10,1,1) = {" +Wt +Wt +Wt +cT +cT +cT +cT +cT +cT +wg +Ny +pG +wY +VR +iq +iq +iq +iq +iq +jw +wY +Bt +Bt +ab +ab +if +rG +rG +TH +Aw +LF +wg +Lx +wY +yu +"} +(11,1,1) = {" +Wt +Wt +RX +cT +cT +cT +cT +cT +cT +wg +Ny +wf +Hw +Gn +Gn +Gn +Ob +Oi +rR +Gn +Hw +ii +Bt +cH +ac +rG +pw +Qt +TH +Aw +LF +wg +Ny +wY +yu +"} +(12,1,1) = {" +Wt +RX +RX +cT +cT +cT +cT +cT +cT +wg +Ny +vF +us +WU +WU +WU +Mo +ZC +WU +ei +NV +IE +Bt +rG +rG +rG +pl +Bt +TH +Aw +GM +Ra +Ny +kE +yu +"} +(13,1,1) = {" +Wt +Wt +RX +cT +cT +cT +cT +cT +cT +wg +Ny +pG +wY +kE +kE +wY +wY +kE +kE +wY +wY +Yf +Sx +Sx +Sg +Ac +Ac +Ac +TH +Rf +Ra +Vp +wj +kE +yu +"} +(14,1,1) = {" +Wt +Wt +Wt +cT +cT +cT +cT +cT +zy +Ra +Ny +pG +wY +jR +uL +uL +uL +uL +uL +gO +wY +au +pz +WU +WU +aW +bH +Qw +WU +vj +av +Ii +wY +wY +yu +"} +(15,1,1) = {" +Wt +Wt +RX +uH +uH +uH +uH +uH +Ra +QE +ii +pG +wY +yu +Wt +Wt +Wt +Wt +Wt +rf +wY +wY +kE +kE +kE +wY +wY +wY +oG +cT +Ne +wY +wY +jR +Vh +"} +(16,1,1) = {" +Wt +Wt +Wt +nF +oI +iK +Ob +Ob +Ob +ii +SK +gB +wY +yu +Wt +Wt +Wt +Wt +Wt +qd +uL +uL +uL +uL +uL +uL +uL +wY +kE +kE +kE +wY +uL +Vh +Wt +"} +(17,1,1) = {" +Wt +Wt +Vb +dT +rG +nK +WU +WU +Zr +ZC +tK +wY +wY +yu +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +"} +(18,1,1) = {" +Wt +Wt +BD +wY +xl +cT +wY +kE +wY +wY +wY +wY +jR +Vh +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +"} +(19,1,1) = {" +Wt +Wt +Wt +wY +kE +kE +wY +uL +uL +uL +uL +uL +Vh +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +"} diff --git a/maps/map_files/Tyrargo_Rift/standalone/uss_heyst_underground.dmm b/maps/map_files/Tyrargo_Rift/standalone/uss_heyst_underground.dmm new file mode 100644 index 000000000000..b3be4f10f9b1 --- /dev/null +++ b/maps/map_files/Tyrargo_Rift/standalone/uss_heyst_underground.dmm @@ -0,0 +1,272 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/south) +"c" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"f" = ( +/obj/structure/closet/crate/ammo{ + name = "soft-point munitions crate"; + desc = "Crate filled with soft-point ammo. Typically used when fighting onboard space stations, or when there's nothing better to use."; + opened = 1 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m41a_random_spawn{ + spawn_chance = 60 + }, +/obj/effect/landmark/ammo_spawn/m41a_ext_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 20 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_random_spawn{ + spawn_chance = 40 + }, +/obj/effect/landmark/ammo_spawn/m4ra_ext_random_spawn{ + spawn_chance = 20 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"g" = ( +/turf/closed/wall/r_wall/bunker/floodgate{ + desc = "A huge chunk of reinforced metal used to separate rooms. This one appears to be specially reinforced."; + name = "bunker superdense wall" + }, +/area/tyrargo/underground/bunker/south) +"l" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"o" = ( +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"p" = ( +/turf/open/floor/corsat/red/east, +/area/tyrargo/underground/bunker/south) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/squares, +/area/tyrargo/underground/bunker/south) +"t" = ( +/turf/closed/wall/r_wall/bunker, +/area/tyrargo/underground/bunker/south) +"v" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"w" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"x" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"y" = ( +/turf/open/floor/corsat/red, +/area/tyrargo/underground/bunker/south) +"z" = ( +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/south) +"A" = ( +/obj/structure/prop/hybrisa/boulders/smallboulderdark, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"B" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"E" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"F" = ( +/obj/structure/prop/hybrisa/boulders/large_boulderdark, +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1{ + pixel_y = -12 + }, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"G" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"H" = ( +/turf/closed/wall/strata_ice/forest/rock, +/area/tyrargo/oob) +"J" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/northeast, +/area/tyrargo/underground/bunker/south) +"K" = ( +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"L" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/box, +/area/tyrargo/underground/bunker/south) +"M" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_east, +/area/tyrargo/underground/bunker/south) +"N" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/north, +/area/tyrargo/underground/bunker/south) +"O" = ( +/obj/structure/prop/hybrisa/boulders, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"P" = ( +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"Q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner, +/area/tyrargo/underground/bunker/south) +"R" = ( +/obj/structure/prop/hybrisa/boulders/wide_boulderdark/wide_boulder1, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/tyrargo/underground/bunker/south) +"S" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/m56d{ + pixel_x = 4; + pixel_y = 5; + current_rounds = 5 + }, +/obj/item/ammo_magazine/m56d{ + pixel_x = -9; + pixel_y = 9; + current_rounds = 45 + }, +/turf/open/floor/corsat/plate, +/area/tyrargo/underground/bunker/south) +"X" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red/southeast, +/area/tyrargo/underground/bunker/south) +"Y" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/corsat/redcorner/east, +/area/tyrargo/underground/bunker/south) + +(1,1,1) = {" +t +g +g +g +g +g +t +H +"} +(2,1,1) = {" +t +R +E +F +A +R +t +t +"} +(3,1,1) = {" +L +o +o +o +o +O +v +t +"} +(4,1,1) = {" +c +N +x +l +x +y +P +t +"} +(5,1,1) = {" +c +J +Y +B +Q +z +S +t +"} +(6,1,1) = {" +c +c +N +s +a +K +K +t +"} +(7,1,1) = {" +P +f +J +p +X +P +t +t +"} +(8,1,1) = {" +t +w +c +M +c +G +t +t +"} diff --git a/maps/templates/lazy_templates/pred/desert_moon.dmm b/maps/templates/lazy_templates/pred/desert_moon.dmm new file mode 100644 index 000000000000..d81fac6372dc --- /dev/null +++ b/maps/templates/lazy_templates/pred/desert_moon.dmm @@ -0,0 +1,26021 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"ab" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"ac" = ( +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/prep_room/desert/interior) +"ad" = ( +/obj/item/skull/warrior{ + pixel_y = 35 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/bracer_attachments/wristblades, +/obj/item/bracer_attachments/wristblades{ + pixel_y = 10 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"ae" = ( +/obj/structure/prop/hunter/trophy_display/center, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"af" = ( +/obj/structure/prop/hunter/trophy_display, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room/desert/interior) +"ag" = ( +/obj/structure/prop/hunter/trophy_display/top_center, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room/desert/interior) +"ah" = ( +/obj/structure/prop/hunter/trophy_display/top_right, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room/desert/interior) +"ai" = ( +/obj/item/weapon/shield/riot/yautja{ + anchored = 1; + layer = 2.9; + pixel_x = 1 + }, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room/desert) +"aj" = ( +/obj/structure/machinery/door_control/yautja{ + id = "cavedesertmoonexit"; + pixel_y = 23; + name = "Temple Cave Shutters"; + req_one_access_txt = "390" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"al" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/south_west) +"am" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/south_west) +"an" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/south_west) +"ao" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/south_west) +"ap" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves) +"aq" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south_west) +"ar" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves) +"as" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/central) +"at" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves) +"au" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves) +"av" = ( +/turf/open/mars_cave/mars_cave_13, +/area/yautja_grounds/caves/central) +"aw" = ( +/obj/structure/blocker/preserve_edge, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"ax" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"ay" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"az" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/yautja_grounds/caves) +"aA" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aB" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/south_west) +"aC" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aD" = ( +/obj/structure/machinery/door/poddoor/yautja/hunting_grounds, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aE" = ( +/obj/effect/decal/remains/human, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aF" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aG" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/south_west) +"aH" = ( +/obj/structure/machinery/hunt_ground_escape, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/south_west) +"aI" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aJ" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aK" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"aL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"aM" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"aN" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/south) +"aO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"aP" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aQ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aR" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"aW" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aX" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"aY" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"aZ" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/south) +"ba" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bb" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/mars_cave/mars_cave_23, +/area/yautja_grounds/desert/south) +"bc" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/turf/open/mars_cave/mars_cave_11, +/area/yautja_grounds/desert/south) +"bd" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"be" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bf" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/mars_cave/mars_cave_10, +/area/yautja_grounds/desert/south) +"bg" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/item/roller/bedroll, +/turf/open/mars_cave/mars_cave_7, +/area/yautja_grounds/desert/south) +"bh" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bi" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bj" = ( +/turf/open/mars_cave/mars_cave_5, +/area/yautja_grounds/desert/south) +"bk" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"bl" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"bm" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bn" = ( +/turf/open/mars_cave/mars_cave_10, +/area/yautja_grounds/desert/south) +"bo" = ( +/turf/open/mars_cave/mars_cave_7, +/area/yautja_grounds/desert/south) +"bp" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/temple/entrance/desert) +"bq" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/temple/entrance/desert) +"br" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) +"bs" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bt" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bu" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple/entrance/desert) +"bv" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bw" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/prep_room/desert) +"bx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"by" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"bz" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bB" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"bC" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/prep_room/desert) +"bD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"bF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south) +"bG" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bK" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bL" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bM" = ( +/obj/structure/machinery/door_control/yautja{ + id = "southwestdesertmoonexit"; + pixel_y = 21; + name = "Desert Campsite West Shutters"; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bO" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bP" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"bU" = ( +/obj/structure/machinery/door_control/yautja{ + id = "southwestdesertmoonexit"; + pixel_y = 1; + name = "Desert Campsite West Shutters"; + pixel_x = -21; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"bV" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"bW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"bX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"bY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/prep_room/desert) +"bZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/prep_room/desert) +"ca" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves) +"cb" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert) +"cc" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"cd" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert) +"ce" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/west) +"cf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cg" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"ch" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"ci" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"cj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"ck" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cl" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cn" = ( +/obj/structure/machinery/door/poddoor/yautja{ + dir = 4; + id = "westdesertmoonexit" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"co" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"cp" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"cq" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"cr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cs" = ( +/obj/structure/machinery/door_control/yautja{ + id = "westdesertmoonexit"; + pixel_y = 1; + name = "Desert Campsite West Shutters"; + pixel_x = 22; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"ct" = ( +/obj/structure/machinery/door_control/yautja{ + id = "westdesertmoonexit"; + pixel_y = 1; + name = "Desert Campsite West Shutters"; + pixel_x = -21; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"cu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/prep_room/desert) +"cv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/prep_room/desert) +"cw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cx" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/prep_room/desert) +"cz" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cA" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cB" = ( +/obj/effect/decal/remains/human{ + pixel_x = 20; + pixel_y = -6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cE" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cF" = ( +/obj/structure/machinery/door_control/yautja{ + id = "northwestdesertmoonexit"; + pixel_y = 9; + name = "Desert Campsite Northwest Shutters"; + pixel_x = -21; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"cG" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert) +"cH" = ( +/obj/structure/machinery/door_control/yautja{ + id = "northwestdesertmoonexit"; + pixel_y = -18; + name = "Desert Campsite Northwest Shutters"; + pixel_x = 1; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cI" = ( +/obj/structure/machinery/door/poddoor/yautja{ + dir = 4; + id = "northwestdesertmoonexit" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"cJ" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cK" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cL" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cM" = ( +/obj/structure/machinery/door_control/yautja{ + id = "northdesertmoonexit"; + pixel_y = 23; + name = "Desert Campsite North Shutters"; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"cN" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"cO" = ( +/obj/structure/machinery/door/poddoor/yautja{ + id = "northdesertmoonexit" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"cP" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"cQ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"cR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cS" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cT" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"cU" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/east) +"cV" = ( +/obj/structure/machinery/door_control/yautja{ + id = "northdesertmoonexit"; + pixel_y = -20; + name = "Desert Campsite North Shutters"; + req_one_access_txt = "390" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"cW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cY" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"cZ" = ( +/turf/closed/wall/rock/orange, +/area/yautja_grounds/caves/south) +"da" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/east) +"db" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"de" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/east) +"df" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/east) +"dg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/east) +"di" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dk" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert) +"dl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/east) +"do" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/east) +"dp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dq" = ( +/obj/effect/decal/remains/human{ + pixel_y = 20 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dr" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"ds" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dt" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"du" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"dv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"dw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dx" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert) +"dy" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"dz" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"dA" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"dB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"dC" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"dE" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dF" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/west) +"dH" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"dI" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves) +"dJ" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/north_east) +"dK" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"dL" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dM" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dN" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dO" = ( +/turf/open/mars_cave/mars_cave_23, +/area/yautja_grounds/desert/west) +"dP" = ( +/turf/open/mars_cave/mars_cave_11, +/area/yautja_grounds/desert/west) +"dQ" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dR" = ( +/obj/structure/bed/bedroll, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves) +"dS" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/obj/item/reagent_container/food/snacks/meat/fish/crab, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves) +"dT" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/west) +"dU" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"dV" = ( +/obj/item/fishing_pole, +/obj/effect/decal/remains/human, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves) +"dW" = ( +/obj/item/trash/uscm_mre, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves) +"dX" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room/desert) +"dY" = ( +/obj/item/weapon/broken_bottle, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves) +"dZ" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/north_west) +"ea" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"eb" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"ec" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"ed" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/stairs/multiz/down{ + dir = 8; + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"ee" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"ef" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/north_east) +"eg" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eh" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"ei" = ( +/turf/open/mars_cave/mars_cave_23, +/area/yautja_grounds/desert/north_east) +"ej" = ( +/turf/open/mars_cave/mars_cave_11, +/area/yautja_grounds/desert/north_east) +"ek" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"el" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"em" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/stairs/multiz/down{ + dir = 8; + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"en" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"eo" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"ep" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"eq" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/north) +"er" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"es" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"et" = ( +/turf/open/mars_cave/mars_cave_10, +/area/yautja_grounds/desert/north_east) +"eu" = ( +/turf/open/mars_cave/mars_cave_7, +/area/yautja_grounds/desert/north_east) +"ev" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"ew" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"ex" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"ey" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"ez" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"eB" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eC" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"eD" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"eE" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eF" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eG" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"eH" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/gm/river/desert/shallow_edge, +/area/yautja_grounds/caves) +"eI" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"eJ" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eK" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eN" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eP" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"eS" = ( +/turf/open_space, +/area/yautja_grounds/temple) +"eT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"eU" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"eV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"eY" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"eZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"fa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"fb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"fc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"fd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"fe" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"ff" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"fg" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"fh" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"fi" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"fj" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"fk" = ( +/obj/effect/decal/remains/human, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"fl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"fm" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"fn" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north) +"fo" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"fp" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"fq" = ( +/obj/effect/decal/remains/human, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"fr" = ( +/turf/closed/wall/rock/orange, +/area/yautja_grounds/caves/south_west) +"fs" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves/south) +"ft" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves/south_east) +"fu" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_west) +"fv" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south) +"fw" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"fx" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south_west) +"fy" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south_west) +"fz" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"fA" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"fB" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"fC" = ( +/turf/closed/wall/rock/orange, +/area/yautja_grounds/caves/west) +"fD" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"fE" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves/central) +"fF" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/central) +"fG" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"fH" = ( +/obj/item/stack/sheet/animalhide/human, +/turf/open/mars_cave/mars_cave_13, +/area/yautja_grounds/caves/central) +"fI" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/central) +"fJ" = ( +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"fK" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/east) +"fL" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves/east) +"fM" = ( +/obj/effect/decal/remains/human, +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/central) +"fN" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/central) +"fO" = ( +/obj/structure/platform/stone/kutjevo/west{ + density = 0 + }, +/turf/open_space, +/area/yautja_grounds/caves) +"fP" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/central) +"fQ" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/east) +"fR" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"fS" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/central) +"fT" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"fU" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/central) +"fV" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/central) +"fW" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/central) +"fX" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/central) +"fY" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/central) +"fZ" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves/north_east) +"ga" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gb" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/north_east) +"gc" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_east) +"gd" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/yautja_grounds/caves) +"ge" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/north_east) +"gf" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/north_east) +"gg" = ( +/obj/structure/machinery/prop/yautja/bubbler, +/turf/open/shuttle/dropship/predship/tile/red3, +/area/yautja_grounds/prep_room/desert/interior) +"gh" = ( +/turf/closed/wall/rock/orange, +/area/yautja_grounds/caves/north_west) +"gi" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_west) +"gj" = ( +/turf/closed/wall/solaris/rock, +/area/yautja_grounds/caves/north) +"gk" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north) +"gl" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gm" = ( +/obj/item/roller/bedroll, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"gn" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/north_east) +"go" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/north_east) +"gp" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/north_east) +"gq" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_west) +"gr" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north) +"gs" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/north_west) +"gt" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"gu" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/north_west) +"gv" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/north_west) +"gw" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/north_west) +"gx" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/north_west) +"gy" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/north_west) +"gz" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_west) +"gA" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north) +"gB" = ( +/obj/effect/spider/stickyweb, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gC" = ( +/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/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"gD" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/south_west) +"gE" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gF" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gG" = ( +/obj/effect/decal/remains/human, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gH" = ( +/obj/structure/blocker/preserve_edge, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"gI" = ( +/obj/structure/prop/brazier/frame/full/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple/entrance/desert) +"gJ" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/north_west) +"gK" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/north_west) +"gL" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_x = -4 + }, +/obj/structure/prop/hunter/fake_platform/hunter/west{ + pixel_x = -4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"gM" = ( +/obj/structure/machinery/hunt_ground_escape, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/north_west) +"gN" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/east) +"gO" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"gP" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/south_west) +"gQ" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/south_west) +"gR" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"gS" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south_east) +"gT" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south_east) +"gU" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/south_east) +"gV" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/south_east) +"gW" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/south_east) +"gX" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"gY" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/south) +"gZ" = ( +/obj/structure/platform/stone/kutjevo, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/north_west) +"ha" = ( +/obj/item/weapon/broken_glass, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"hb" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/south) +"hc" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/south) +"hd" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/south_east) +"he" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/south_east) +"hf" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/south_east) +"hg" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/south_east) +"hh" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/south_west) +"hi" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/south_west) +"hj" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/south) +"hk" = ( +/obj/item/paper/fortune/premade, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"hl" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/central) +"hm" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/central) +"hn" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/central) +"ho" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/south_east) +"hp" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/south_east) +"hq" = ( +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/central) +"hr" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/central) +"hs" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/central) +"ht" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/east) +"hu" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/east) +"hv" = ( +/obj/structure/prop/broken_ladder, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"hw" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/east) +"hx" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/east) +"hy" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/east) +"hz" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/east) +"hA" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0; + pixel_y = -21 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"hB" = ( +/obj/structure/stairs/multiz/up{ + dir = 8; + layer = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_east) +"hC" = ( +/obj/structure/stairs/multiz/up{ + layer = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"hD" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0; + pixel_y = 25 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"hE" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/west) +"hF" = ( +/obj/structure/stairs/multiz/down{ + dir = 8; + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_east) +"hG" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/west) +"hH" = ( +/obj/structure/bed/alien/yautja, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert/interior) +"hI" = ( +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/east) +"hJ" = ( +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"hK" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/south_west) +"hL" = ( +/obj/structure/stairs/multiz/up{ + layer = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"hM" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/central) +"hN" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/west) +"hO" = ( +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"hP" = ( +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north) +"hQ" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/north_west) +"hR" = ( +/turf/open/mars_cave/mars_cave_7, +/area/yautja_grounds/caves/north_east) +"hS" = ( +/turf/open/mars_cave/mars_cave_7, +/area/yautja_grounds/caves/north) +"hT" = ( +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_west) +"hU" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/north_east) +"hV" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/north_east) +"hW" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_west) +"hX" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/north_east) +"hY" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"hZ" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south_west) +"ia" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/north) +"ib" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/north) +"ic" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/west) +"id" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/north) +"ie" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/north) +"if" = ( +/turf/open/mars_cave/mars_cave_19, +/area/yautja_grounds/caves/north) +"ig" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north) +"ih" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/north) +"ii" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/north_east) +"ij" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/north_east) +"ik" = ( +/turf/open/mars/mars_dirt_12, +/area/yautja_grounds/caves/north_west) +"il" = ( +/obj/structure/machinery/door/poddoor/yautja/hunting_grounds{ + dir = 4 + }, +/turf/open/mars, +/area/yautja_grounds/caves/north_west) +"im" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"in" = ( +/turf/open/mars, +/area/yautja_grounds/caves/north_west) +"io" = ( +/turf/open/mars/mars_dirt_11, +/area/yautja_grounds/caves/north_west) +"ip" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/weldingtool/yautja, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"iq" = ( +/turf/open/mars_cave/mars_cave_20, +/area/yautja_grounds/caves/north_west) +"ir" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"is" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"it" = ( +/obj/effect/decal/remains/human, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"iu" = ( +/turf/open/mars/mars_dirt_3, +/area/yautja_grounds/caves/north_west) +"iv" = ( +/obj/effect/spider/stickyweb, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"iw" = ( +/obj/structure/prop/hunter/fake_platform/hunter/east, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"ix" = ( +/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) +"iy" = ( +/obj/item/skull/boiler{ + pixel_x = 16; + pixel_y = 32; + anchored = 1 + }, +/obj/item/skull/crusher{ + pixel_x = -1; + pixel_y = 32; + anchored = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iz" = ( +/obj/structure/platform_decoration/metal/hunter, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iA" = ( +/obj/structure/prop/hunter/fake_platform/hunter, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iB" = ( +/obj/item/skull/queen{ + pixel_y = 31; + anchored = 1; + pixel_x = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"iC" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/east) +"iD" = ( +/obj/item/skull/king{ + pixel_x = 1; + pixel_y = 33; + anchored = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iE" = ( +/obj/structure/curtain/leather/alt_2, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iF" = ( +/obj/structure/platform_decoration/metal/hunter/west, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iG" = ( +/obj/structure/prop/hunter/fake_platform/hunter/north, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"iH" = ( +/obj/structure/platform_decoration/metal/hunter/east, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iI" = ( +/turf/open/shuttle/dropship/predship/tile/red3, +/area/yautja_grounds/temple) +"iJ" = ( +/obj/structure/prop/hunter/fake_platform/hunter/west, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iK" = ( +/obj/structure/prop/hunter/fake_platform/hunter, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"iL" = ( +/obj/structure/platform_decoration/metal/hunter/north, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"iM" = ( +/obj/structure/platform_decoration/metal/hunter/east, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"iN" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"iO" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/obj/structure/platform_decoration/metal/hunter/north, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"iP" = ( +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"iQ" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"iR" = ( +/obj/structure/platform_decoration/metal/hunter/west, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"iS" = ( +/obj/structure/prop/hunter/fake_platform/hunter/north, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"iT" = ( +/obj/structure/platform_decoration/metal/hunter/east, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"iU" = ( +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"iV" = ( +/obj/structure/platform_decoration/metal/hunter/north, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"iW" = ( +/obj/structure/prop/hunter/fake_platform/hunter/east, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"iX" = ( +/obj/structure/prop/hunter/fake_platform/hunter/west, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"iY" = ( +/obj/structure/platform_decoration/metal/hunter/west, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"iZ" = ( +/obj/structure/platform_decoration/metal/hunter/east, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"ja" = ( +/obj/structure/curtain/leather/alt, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"jb" = ( +/obj/structure/platform_decoration/metal/hunter, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"jc" = ( +/obj/structure/prop/hunter/fake_platform/hunter, +/obj/item/skull/corroder{ + pixel_x = 1; + pixel_y = 34; + anchored = 1 + }, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"jd" = ( +/obj/structure/platform_decoration/metal/hunter, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"je" = ( +/obj/structure/platform_decoration/metal/hunter/north, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"jf" = ( +/obj/item/skull/praetorian{ + pixel_y = 36; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jg" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/skull/defender{ + pixel_y = 35; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jh" = ( +/obj/structure/prop/hunter/fake_platform/hunter/north, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"ji" = ( +/obj/item/skull/ravager{ + pixel_x = 1; + pixel_y = 32; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jj" = ( +/obj/item/skull/warrior{ + pixel_y = 35; + anchored = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jk" = ( +/obj/item/weapon/yautja/knife{ + name = "sacred ceremonial dagger"; + pixel_y = 34; + anchored = 1 + }, +/obj/item/weapon/shield/riot/yautja/ancient{ + anchored = 1; + layer = 2.9; + pixel_x = 17; + pixel_y = 34 + }, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"jl" = ( +/obj/item/skull/warrior{ + pixel_y = 35; + anchored = 1 + }, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"jm" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jn" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/prop/hunter/fake_platform/hunter/north, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"jo" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/hunter/east, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"jp" = ( +/obj/structure/prop/hunter/fake_platform/hunter/west, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple/entrance/desert) +"jq" = ( +/obj/structure/platform_decoration/metal/hunter, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"jr" = ( +/obj/structure/prop/hunter/fake_platform/hunter, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple/entrance/desert) +"js" = ( +/obj/structure/platform_decoration/metal/hunter/north, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"jt" = ( +/obj/structure/platform_decoration/metal/hunter/west, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"ju" = ( +/obj/structure/prop/hunter/fake_platform/hunter/north, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple/entrance/desert) +"jv" = ( +/obj/structure/platform_decoration/metal/hunter/east, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"jw" = ( +/obj/structure/prop/hunter/fake_platform/hunter/east, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"jx" = ( +/obj/structure/prop/hunter/fake_platform/hunter/west, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"jy" = ( +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"jz" = ( +/obj/item/skull/crusher{ + pixel_x = -1; + pixel_y = 32; + anchored = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jA" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_y = -7; + pixel_x = -4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jB" = ( +/obj/structure/showcase/yautja{ + dir = 4 + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jC" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/temple) +"jD" = ( +/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/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"jE" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple) +"jF" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/temple) +"jG" = ( +/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/rofflewaffles{ + desc = "Miniature cakes made out of royal jelly, It is the epitome of xenomorph cooking, a single slice providing a months worth of ecstasy"; + name = "Royal Jelly cakes" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jH" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/temple) +"jI" = ( +/obj/structure/closet/coffin/predator, +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"jJ" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple) +"jK" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/temple) +"jL" = ( +/obj/structure/prop/brazier{ + pixel_y = 3 + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + layer = 3; + pixel_y = -1 + }, +/turf/open/floor/predship/hull, +/area/yautja_grounds/temple) +"jM" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + layer = 3; + pixel_y = -1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jN" = ( +/obj/structure/prop/hunter/fake_platform/hunter/north{ + pixel_y = 12 + }, +/obj/structure/platform_decoration/metal/hunter/west{ + pixel_y = 12 + }, +/obj/structure/platform_decoration/metal/hunter/east{ + pixel_y = 12 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jO" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_x = -4 + }, +/obj/structure/prop/hunter/fake_platform/hunter/west{ + pixel_x = -4 + }, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"jP" = ( +/obj/structure/prop/hunter/fake_platform/hunter/west{ + pixel_x = -4 + }, +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_x = -4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jQ" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_y = -7; + pixel_x = -4 + }, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple) +"jR" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_y = -7; + pixel_x = -4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jS" = ( +/obj/item/weapon/yautja/knife{ + color = "#ffd65c"; + name = "sacred ceremonial dagger"; + pixel_x = -1; + pixel_y = 32; + anchored = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jT" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_x = -4 + }, +/obj/structure/prop/hunter/fake_platform/hunter/west{ + pixel_x = -4 + }, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"jU" = ( +/obj/structure/bed/chair/comfy/yautja{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"jV" = ( +/obj/item/weapon/shield/riot/yautja/ancient{ + anchored = 1; + layer = 2.9 + }, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple) +"jW" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_y = -7; + pixel_x = -4 + }, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"jX" = ( +/obj/structure/prop/hunter/fake_platform/hunter/west{ + pixel_x = -4 + }, +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_x = -4 + }, +/turf/open/shuttle/dropship/predship/tile/red5, +/area/yautja_grounds/temple) +"jY" = ( +/obj/structure/prop/hunter/misc/prop_armor{ + pixel_x = -16; + pixel_y = 35 + }, +/obj/item/weapon/yautja/knife{ + name = "sacred ceremonial dagger"; + pixel_y = 34; + anchored = 1 + }, +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"jZ" = ( +/obj/structure/platform_decoration/metal/hunter/north{ + pixel_y = -7; + pixel_x = -4 + }, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple) +"ka" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + layer = 3; + pixel_y = -1 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"kb" = ( +/turf/closed/wall/rock/orange, +/area/yautja_grounds/caves/south_east) +"kc" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/south) +"kd" = ( +/obj/structure/bed/chair/comfy/yautja{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert/interior) +"ke" = ( +/turf/open/mars_cave/mars_cave_13, +/area/yautja_grounds/caves/south_west) +"kf" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south) +"kg" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/south) +"kh" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/south) +"ki" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0 + }, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/south_west) +"kj" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/south) +"kk" = ( +/turf/closed/wall/rock/orange, +/area/yautja_grounds/caves/central) +"kl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/caves/central) +"km" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/caves/central) +"kn" = ( +/turf/open/floor/sandstone/runed, +/area/yautja_grounds/caves/central) +"ko" = ( +/obj/structure/prop/brazier/frame/full/torch, +/turf/closed/wall/mineral/sandstone/runed, +/area/yautja_grounds/caves/central) +"kp" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/yautja_grounds/caves/central) +"kq" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/west) +"kr" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/yautja_grounds/caves/central) +"ks" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/central) +"kt" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/east) +"ku" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/east) +"kv" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/west) +"kw" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0 + }, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/central) +"kx" = ( +/obj/effect/decal/remains/xeno, +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/west) +"ky" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/north) +"kz" = ( +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/north) +"kA" = ( +/turf/open/mars_cave/mars_cave_15, +/area/yautja_grounds/caves/north) +"kB" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/south_west) +"kC" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0 + }, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/north_east) +"kD" = ( +/turf/open/mars_cave/mars_cave_13, +/area/yautja_grounds/caves/north_west) +"kE" = ( +/obj/effect/landmark/ert_spawns/distress/hunt_spawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"kF" = ( +/turf/open/mars_cave/mars_cave_13, +/area/yautja_grounds/caves/north) +"kG" = ( +/turf/open/mars_cave/mars_cave_17, +/area/yautja_grounds/caves/north_west) +"kH" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0 + }, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/caves/north_west) +"kI" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/glass/rag/polishing_rag, +/turf/open/shuttle/dropship/predship/tile/red3, +/area/yautja_grounds/prep_room/desert/interior) +"kJ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/north) +"kK" = ( +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/north) +"kL" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = 6 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"kM" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = 13 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -7 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/south) +"kN" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"kO" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = 15; + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"kP" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -5; + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = -14; + pixel_y = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"kQ" = ( +/obj/item/ore/gold, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"kR" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"kS" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"kT" = ( +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"kU" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"kV" = ( +/obj/structure/showcase/yautja/alt{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"kW" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south_west) +"kX" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = -14; + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south_west) +"kY" = ( +/obj/structure/stairs/multiz/up{ + dir = 1; + layer = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south_west) +"kZ" = ( +/obj/item/ore/glass, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"la" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"lb" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south_west) +"lc" = ( +/obj/item/ore{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"ld" = ( +/obj/item/ore{ + pixel_x = 9 + }, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"le" = ( +/obj/item/ore{ + pixel_x = -1 + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"lf" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"lg" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"lh" = ( +/obj/item/ore/glass, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"li" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"lj" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"lk" = ( +/obj/item/ore/gold, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"ll" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/south) +"lm" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"ln" = ( +/obj/item/ore/slag, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/south_east) +"lo" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/temple) +"lp" = ( +/obj/structure/stairs/multiz/down{ + dir = 1; + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/south_west) +"lq" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"lr" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/south) +"ls" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lt" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lu" = ( +/obj/item/ore/glass, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/central) +"lv" = ( +/obj/item/ore/glass, +/turf/open/mars_cave/mars_cave_13, +/area/yautja_grounds/caves/central) +"lw" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lx" = ( +/obj/structure/prop/hybrisa/misc/blood/blood3, +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/central) +"ly" = ( +/obj/structure/blocker/preserve_edge, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"lz" = ( +/obj/item/ore/slag, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/east) +"lA" = ( +/obj/structure/blocker/preserve_edge, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/north_west) +"lB" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/central) +"lC" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/east) +"lD" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lE" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lF" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/central) +"lG" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/west) +"lH" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/west) +"lI" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"lJ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/central) +"lK" = ( +/obj/item/ore/slag, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/east) +"lL" = ( +/obj/effect/decal/remains/human, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/central) +"lM" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = 14; + pixel_x = -13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"lN" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"lO" = ( +/obj/structure/showcase/yautja/alt{ + dir = 4 + }, +/turf/open/shuttle/dropship/predship, +/area/yautja_grounds/temple) +"lP" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"lQ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = -13 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/central) +"lR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -7; + pixel_x = -8 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/yautja_grounds/caves/central) +"lS" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lT" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lU" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -7; + pixel_x = -9 + }, +/turf/open/mars_cave/mars_cave_9, +/area/yautja_grounds/caves/central) +"lV" = ( +/obj/item/ore/glass, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/central) +"lW" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/central) +"lX" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -7 + }, +/turf/open/mars_cave/mars_cave_14, +/area/yautja_grounds/caves/central) +"lY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"lZ" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/west) +"ma" = ( +/obj/item/ore/slag, +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves/north_east) +"mb" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/north_west) +"mc" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_west) +"md" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_10_1" + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_west) +"me" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap{ + pixel_x = -11; + pixel_y = -6 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/north_east) +"mf" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/decal/remains/human{ + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_16, +/area/yautja_grounds/caves/north_west) +"mg" = ( +/obj/structure/prop/brazier/frame/full{ + pixel_y = 3 + }, +/turf/open/floor/predship/hull, +/area/yautja_grounds/temple/entrance/desert) +"mh" = ( +/obj/item/ammo_magazine/rifle/m41aMK1/heap{ + current_rounds = 0 + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_west) +"mi" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/north_east) +"mj" = ( +/obj/structure/prop/brazier/frame/full/campfire/smolder, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_west) +"mk" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/north) +"ml" = ( +/obj/effect/spider/stickyweb, +/obj/item/ore/gold, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"mm" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/obj/item/ore/gold, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"mn" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 15; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 15 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/north) +"mo" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north) +"mp" = ( +/obj/item/ore/coal, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"mq" = ( +/obj/item/ore/gold, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/north_east) +"mr" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_6, +/area/yautja_grounds/caves/central) +"ms" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_7, +/area/yautja_grounds/caves/central) +"mt" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves/north_west) +"mu" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"mv" = ( +/obj/structure/prop/brazier/frame/full/campfire/smolder, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 13; + pixel_y = 20 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"mw" = ( +/obj/structure/blocker/preserve_edge, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"mx" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"my" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open_space, +/area/yautja_grounds/desert/north_west) +"mz" = ( +/turf/open_space, +/area/yautja_grounds/desert/north_west) +"mA" = ( +/obj/structure/prop/wooden_cross{ + pixel_y = 7 + }, +/obj/item/clothing/head/helmet/marine/veteran/dutch{ + pixel_y = 10 + }, +/obj/item/weapon/gun/minigun{ + pixel_y = -14; + name = "\improper battle-scarred Ol' Painless"; + current_mag = null; + desc = "An enormous multi-barreled rotating gatling gun. This thing will no doubt pack a punch. This one is stained with green blood, it has seen some battles." + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"mB" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"mC" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert/north_west) +"mD" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_west) +"mE" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"mF" = ( +/obj/structure/prop/brazier/torch{ + alpha = 0; + pixel_y = 25 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"mG" = ( +/obj/structure/machinery/door_control/yautja{ + id = "cavedesertmoonexit"; + pixel_y = -18; + name = "Temple Cave Shutters"; + req_one_access_txt = "390" + }, +/turf/open/mars_cave/mars_cave_3, +/area/yautja_grounds/caves/south_east) +"mU" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/temple/entrance/desert) +"nk" = ( +/obj/structure/bed/chair/comfy/yautja{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"nD" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/desert) +"op" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/north_west) +"oJ" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/yautja_grounds/caves) +"pT" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"qr" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"qD" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"qF" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert) +"qJ" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/south) +"qK" = ( +/obj/effect/landmark/yautja_young_teleport, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert/interior) +"rz" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"rC" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"sd" = ( +/obj/structure/machinery/prop/yautja/bubbler, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"sF" = ( +/obj/structure/platform/stone/kutjevo, +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/north_east) +"sK" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/yautja_grounds/caves) +"sW" = ( +/obj/structure/bed/chair/comfy/yautja{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert/interior) +"tr" = ( +/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) +"tA" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"uA" = ( +/turf/open/shuttle/dropship/predship/tile/red, +/area/yautja_grounds/temple) +"va" = ( +/obj/structure/closet/crate{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"vm" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"vR" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/east) +"wh" = ( +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple/entrance/desert) +"wu" = ( +/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/prep_room/desert/interior) +"wB" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/prep_room/desert) +"wU" = ( +/turf/open_space, +/area/yautja_grounds/caves) +"xd" = ( +/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/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"xf" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/yautja_grounds/caves) +"xs" = ( +/obj/structure/showcase/yautja/alt{ + pixel_y = 18 + }, +/turf/open/shuttle/dropship/predship, +/area/yautja_grounds/temple) +"xV" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/north_east) +"xW" = ( +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/temple) +"yN" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"yW" = ( +/obj/structure/machinery/door/poddoor/yautja{ + id = "cavedesertmoonexit" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"yZ" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"zF" = ( +/obj/structure/prop/hunter/trophy_display/bottom_right, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"Ad" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/drinks/bottle/melonliquor{ + desc = "A bottle of liquid xenomorph plasma. Surprisingly it smells and tastes good."; + name = "Serpentine plasma juice"; + pixel_y = 9; + pixel_x = -8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert/interior) +"Ar" = ( +/turf/open/auto_turf/sand/layer2, +/area/yautja_grounds/temple) +"AT" = ( +/obj/item/skull/warrior{ + pixel_y = 35 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/device/flashlight/lantern/yautja, +/obj/item/device/flashlight/lantern/yautja, +/obj/item/device/flashlight/lantern/yautja, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"Bg" = ( +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert/north_west) +"Bu" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/glass/rag/polishing_rag, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"BI" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/west) +"Ce" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/yautja_grounds/caves) +"Cj" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple) +"Co" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Cw" = ( +/obj/structure/platform/stone/kutjevo{ + density = 0 + }, +/turf/open_space, +/area/yautja_grounds/caves) +"Dc" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/east) +"DP" = ( +/obj/structure/prop/hunter/trophy_display/bottom_left, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"Es" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north) +"EE" = ( +/obj/structure/bed/chair/comfy/yautja{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"EK" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"EM" = ( +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"Fr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/device/flashlight/lantern/yautja, +/obj/item/device/flashlight/lantern/yautja, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"GO" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/dark, +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert) +"Ho" = ( +/turf/open/floor/engine/cult, +/area/yautja_grounds/prep_room/desert/interior) +"HU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 4 + }, +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood, +/area/yautja_grounds/temple) +"HZ" = ( +/obj/structure/bed/chair/comfy/yautja, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Iu" = ( +/obj/structure/kitchenspike{ + icon_state = "spikebloody" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"IV" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple/entrance/desert) +"Jo" = ( +/obj/structure/machinery/door/poddoor/yautja{ + dir = 4; + id = "southwestdesertmoonexit" + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/prep_room/desert) +"JQ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/yautja_grounds/caves) +"JW" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"Kp" = ( +/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/desert) +"KO" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south) +"Li" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"Lt" = ( +/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/desert) +"LO" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"Me" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/yautja_grounds/caves) +"MT" = ( +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/temple) +"MX" = ( +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/stairs/multiz/down{ + layer = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/yautja_grounds/desert) +"Oa" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/storage/backpack/yautja, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"Os" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"OD" = ( +/obj/structure/platform/stone/kutjevo/north{ + density = 0 + }, +/turf/open_space, +/area/yautja_grounds/caves) +"OU" = ( +/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/desert/interior) +"Pn" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple/entrance/desert) +"Py" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"QR" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert) +"Rn" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/north_east) +"RD" = ( +/obj/structure/barricade/handrail/sandstone/b/dark{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"RU" = ( +/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/desert) +"Sn" = ( +/obj/structure/prop/hunter/fake_platform/hunter/east, +/turf/open/shuttle/dropship/predship/tile/red2, +/area/yautja_grounds/temple/entrance/desert) +"Sq" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/yautja_grounds/caves) +"Tb" = ( +/obj/structure/prop/brazier{ + pixel_y = 3 + }, +/turf/open/floor/predship/hull, +/area/yautja_grounds/temple) +"Um" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/cult/hunting_grounds, +/area/yautja_grounds/prep_room/desert) +"Up" = ( +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple) +"Uw" = ( +/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/desert) +"Ux" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/temple) +"Vr" = ( +/obj/structure/showcase/yautja{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"VK" = ( +/turf/open/gm/river/desert/deep, +/area/yautja_grounds/caves) +"Wc" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/glass/rag/polishing_rag, +/turf/open/shuttle/dropship/predship/tile/red3, +/area/yautja_grounds/prep_room/desert/interior) +"Wk" = ( +/turf/closed/wall/kutjevo/rock, +/area/yautja_grounds/desert/north) +"Wx" = ( +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"WA" = ( +/obj/structure/kitchenspike{ + icon_state = "spikebloodygreen" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/prep_room/desert/interior) +"WO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja_grounds/temple) +"Xr" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/mars_cave/mars_dirt_4, +/area/yautja_grounds/caves) +"XD" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/hunter/west, +/turf/open/floor/engine/cult, +/area/yautja_grounds/temple/entrance/desert) +"XY" = ( +/turf/open/auto_turf/sand/layer1, +/area/yautja_grounds/desert/south_west) + +(1,1,1) = {" +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +kq +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 +fC +fC +fC +fC +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +"} +(2,1,1) = {" +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +fC +kq +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 +fC +fC +fC +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +"} +(3,1,1) = {" +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +kq +fC +fC +fC +fC +fC +kq +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 +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +kB +kB +al +hi +gD +fr +fr +fr +fr +fr +"} +(4,1,1) = {" +gs +gs +gs +gs +gs +gs +gs +gs +gs +hQ +gK +gw +gs +gs +gs +gs +hQ +gs +gs +gs +gs +gs +gs +gs +gs +gs +fC +fC +fC +kq +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 +fC +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +kB +kB +kB +ao +al +fu +fu +gP +fr +fr +fr +fr +fr +"} +(5,1,1) = {" +gs +gs +gs +gs +gs +gs +gs +gs +hQ +hT +hT +hT +gK +gK +gK +gK +gi +gK +gK +gw +gs +gs +gs +gs +gs +gs +kq +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 +fC +fC +fC +fC +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +kB +kY +aq +fx +am +fu +fu +fu +gD +fr +fr +fr +fr +"} +(6,1,1) = {" +gs +gs +gs +gs +gs +gs +gs +hQ +hT +hT +hT +hT +hT +hT +hT +kD +kD +kD +gi +gi +gw +gt +gt +gs +gs +gs +fC +kq +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 +hG +fD +fD +fD +fD +fD +hN +fD +fD +lw +fC +fC +fC +fC +fC +fC +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +ki +kY +aq +ao +an +ke +ke +fu +gQ +fx +fr +fr +fr +"} +(7,1,1) = {" +gs +gs +gs +gs +gs +gs +hQ +gi +hT +hT +hT +hT +hT +kD +gy +gs +gs +gs +iq +kD +gy +gt +gt +gt +gs +gs +kq +fC +fC +fC +kq +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 +hG +fD +hN +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fC +fC +fC +fC +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +kB +kY +aq +fx +kB +kB +fr +gQ +hh +fx +fr +fr +fr +"} +(8,1,1) = {" +gs +gs +gs +gs +gs +gs +kG +gi +kD +kD +gi +gi +gx +gs +gs +gs +gs +gs +gs +gs +gs +gt +gt +gt +gs +gs +kq +kq +fC +fC +fC +fC +fC +hG +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +fD +fD +fD +lD +fC +fD +fD +fG +hN +fD +fD +fD +fD +fD +fD +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +kB +kB +kB +kB +kB +fr +fr +fx +hh +ao +hh +fr +fr +"} +(9,1,1) = {" +gs +gs +gs +gs +gs +gs +kG +gx +gs +gs +iq +gi +gi +gw +gs +gs +gs +gs +gs +gs +gs +hQ +gK +gw +hQ +gs +kq +fC +fC +fC +fC +fD +fD +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +hG +fD +fD +fR +fD +fD +fC +fC +hN +fD +fD +fD +fD +fD +fD +fD +fD +hN +aq +aq +aq +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +hh +ao +aq +fr +fr +"} +(10,1,1) = {" +gs +gs +gs +gs +gs +gs +kG +gx +gs +gs +gs +kG +gi +gi +gK +gK +gw +gu +hC +gs +gs +kG +gi +gi +gi +gw +hG +hN +fD +fD +fD +fD +fD +fD +fD +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +hG +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +lt +fD +fD +fD +aq +aq +aq +aq +aq +ao +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +aq +ao +fr +fr +"} +(11,1,1) = {" +gs +gs +gs +gs +gs +gs +kG +gx +gs +gs +gs +kG +gi +gi +gi +gi +gx +gv +hC +kH +gs +kG +gi +gi +gi +gy +hE +hN +hN +fD +fD +fD +fD +fC +lD +hN +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +hG +lD +fD +fD +hN +fD +lE +fD +fD +hN +fD +fD +hN +fD +fD +fD +fD +fD +fD +fD +fD +aq +aq +fr +fr +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +hZ +aq +aq +fr +fr +"} +(12,1,1) = {" +gs +gs +gs +gs +gs +gs +kG +gx +gs +gs +gs +kG +gi +gi +kD +kD +gy +gu +hC +gs +gs +kG +gi +kD +gy +gv +kx +hN +fD +hN +fD +fD +fC +fC +fC +fC +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +hN +fD +fD +aq +aq +fr +aq +aq +hZ +fr +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +aq +aq +aq +fr +fr +"} +(13,1,1) = {" +gs +gH +gH +gH +gs +gs +iq +gi +gw +gs +hQ +gi +gi +gy +gs +gs +gs +gs +gs +gs +gs +iq +gy +gh +gJ +gJ +hN +fD +hN +fD +fD +fD +fD +fC +fC +fC +fC +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +hG +fD +fD +hN +lG +fD +fD +fD +hN +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +ls +fD +fD +aq +aq +aq +aq +aq +fr +fr +fr +aq +aq +ao +aq +fr +fr +fr +fr +fr +fr +aq +aq +aq +fr +fr +"} +(14,1,1) = {" +gs +hD +gt +hA +gs +gs +gs +iq +gi +gK +gi +gi +gx +gs +gs +gs +gs +gs +gs +gs +gs +gv +gh +gh +gu +gt +fD +hN +fD +fD +fD +hN +fD +fD +fD +fC +fC +fD +fD +fD +hN +fD +fD +hG +fC +fC +fC +fC +fC +fC +fC +hG +fD +fD +fD +fD +hE +fD +fD +fD +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fx +aq +aq +aq +fr +fr +fr +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +aq +aq +fr +fr +fr +"} +(15,1,1) = {" +gs +gJ +gJ +gJ +gs +gs +gs +gs +kG +gi +gi +gi +gx +gs +gs +gs +gs +gs +gs +gs +gs +gt +gu +gt +gt +gu +fD +fC +fC +fC +fC +fC +fC +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +fC +fC +fC +fC +fC +fC +hG +fD +hN +fD +fD +fD +fD +fD +fD +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +fr +fr +fr +fr +aq +aq +fy +aq +fr +fr +fr +fr +fr +aq +aq +aq +fr +fr +"} +(16,1,1) = {" +gs +gv +gv +gv +gs +gs +gs +gs +kG +gi +gi +gi +gx +gs +gs +gs +gs +gs +gs +gs +gs +gu +gt +gu +gt +gt +fD +fC +fC +fC +fC +fC +fC +fC +fD +fD +fD +fD +hN +fD +fD +fD +fD +fD +hG +fC +fC +fC +fC +hG +fD +fD +fD +fD +fD +fD +fD +fD +hN +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +ao +aq +fr +fr +fr +fr +fr +aq +aq +aq +kW +fr +fr +fr +fr +aq +aq +hK +fr +fr +"} +(17,1,1) = {" +gs +hQ +gK +gw +gs +gs +gs +gs +iq +gi +gi +gi +gi +gw +gs +gs +gs +gs +gs +gs +gs +gt +gu +kE +gt +gu +fD +fC +fC +fC +fC +fC +fC +fC +hG +fD +fD +fD +fD +lS +fC +fC +fC +hE +fD +hG +fC +fC +hG +fD +fD +fC +fD +fD +kv +fD +fD +fD +fD +fD +lD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +fr +fr +fr +fr +fr +fr +aq +aq +ao +fr +fr +fr +fr +aq +aq +aq +fr +fr +"} +(18,1,1) = {" +gs +kG +gi +gx +gs +gs +gs +gs +gs +iq +gi +gi +gi +gx +gs +gs +gs +gs +gs +gs +gs +gt +gt +gt +gu +gt +hE +fC +fC +fC +fC +fC +fC +fC +fC +hG +fD +fD +fD +fC +fC +fC +fC +hG +fD +fD +fD +fD +fD +fD +fC +fC +fC +fD +fD +fD +fD +fD +fC +fC +fC +fC +fC +kq +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +lb +kX +fr +fr +fr +fr +aq +aq +aq +fr +fr +"} +(19,1,1) = {" +gs +iq +gi +hT +gw +gs +gs +gs +gs +gs +iq +gi +gi +gi +gw +gs +gs +gs +gs +gs +gs +gJ +gv +gt +gh +gt +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +fC +fC +fC +fC +fC +fD +fD +fD +fD +hN +fD +fD +lw +fD +fD +fD +hN +fD +fC +fC +fC +kq +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +aq +ao +aq +aq +fr +fr +"} +(20,1,1) = {" +gs +gs +iq +hT +gy +gv +gs +gs +gs +gs +gs +gi +gz +gi +hT +gw +gs +gs +gs +gs +gs +gs +gJ +gt +gh +gt +fD +lD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +fC +fC +fC +fC +fC +fD +hN +fD +fD +fD +fD +fD +fD +hN +hN +hN +fD +fC +fC +fC +fC +kq +kq +fC +kq +fC +fC +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +ao +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +aq +aq +aq +fr +fr +fr +"} +(21,1,1) = {" +gs +gs +gs +gy +gJ +gv +gu +gs +gs +gs +hQ +hT +hT +hT +hT +hT +gw +gs +gs +gs +gs +gs +gJ +gt +gt +gt +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fC +fD +hN +fC +fC +fC +fC +fC +fD +fD +fD +fD +fD +ls +fC +fC +hE +hE +hE +fC +fC +fC +kq +kq +kq +kq +kq +fC +fC +fC +kq +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +aq +aq +fx +fr +fr +"} +(22,1,1) = {" +gs +gs +gs +gs +gt +gt +gt +gs +gs +hQ +hT +hT +hT +hT +hT +hT +gx +gs +gs +gs +gs +gs +gs +gt +gt +gt +hN +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +lD +fC +fC +fC +fC +fD +fD +fD +fD +fD +fC +fC +fC +hG +lH +hG +fC +fC +kq +kq +kq +kq +kq +fC +fC +fC +kq +fC +fC +fC +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +ao +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fr +fx +aq +aq +fr +fr +fr +"} +(23,1,1) = {" +gs +gs +gs +gs +ik +ik +ik +gs +gs +kG +hT +kD +kD +kD +kD +hT +gx +gs +gs +gs +gs +gs +gs +mb +gt +gt +fD +fD +hE +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +fD +fD +fD +fD +fD +fD +fD +fD +hN +fD +fC +fC +fC +fC +fC +fC +fC +kq +kq +kq +kq +kq +kq +kq +kq +kq +kq +kq +kq +kq +fC +fC +fC +fC +fC +fr +fr +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +fr +fx +hh +aq +aq +fr +fr +fr +"} +(24,1,1) = {" +gs +gs +gs +gs +il +il +il +gs +gs +kG +gx +gs +gs +gs +gs +kG +hT +gw +gs +gs +gs +gs +gs +gs +gt +gt +lZ +fD +fD +fC +fC +fC +fC +fC +fC +fC +fC +fD +fD +fD +hN +fD +fD +fD +fD +fD +fD +fD +kk +kk +kk +kk +kk +kk +kk +kk +fS +fS +fS +fS +hn +fW +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +fr +fr +aq +fr +fr +aq +aq +fx +fr +fr +fr +fr +fr +fr +fr +fr +hh +aq +aq +fr +fr +fr +fr +"} +(25,1,1) = {" +gs +gs +gs +gM +in +in +in +gs +gs +kG +gx +gs +gs +gs +gs +kG +hT +gx +gs +gs +gs +gs +gs +gs +gu +gt +fD +fD +lY +fC +fC +fC +fC +fC +fC +fC +fC +fD +hN +fD +fD +fD +fD +fD +fC +fD +kk +kk +kk +kk +kk +fS +kk +kk +kk +kk +fS +fS +fS +hn +fF +hq +fW +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +fr +fr +aq +fr +hZ +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +fr +hh +ao +aq +fr +fr +fr +fr +"} +(26,1,1) = {" +gs +gs +gs +iu +io +io +io +gs +gs +kG +gi +gw +gs +gs +gs +kG +hT +gx +gs +gs +gs +gs +gs +gs +gt +gt +fD +hN +fD +fD +fD +hN +fC +fC +fD +fD +fD +fD +fD +fD +fD +fC +hG +fC +kk +kk +kk +kk +kk +kk +kk +kk +kk +fS +kk +fS +fS +fS +fS +hl +fF +fP +hq +fW +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +fr +fr +aq +aq +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +fr +fr +hh +aq +aq +fr +fr +fr +fr +"} +(27,1,1) = {" +gs +gs +gs +gt +gt +gt +gt +gs +gs +kG +gi +gx +gs +gs +gs +kG +hT +hT +gy +gs +gs +gs +gs +gs +gt +gu +hN +fD +hN +fD +fD +fD +fD +fD +fD +fD +fD +fD +lT +fC +fC +fC +fC +fC +kk +kk +kk +fS +kk +kk +kk +kk +kk +kk +kk +fS +fS +fS +hn +fF +fF +fF +hq +fX +fS +fS +fS +fS +fS +kk +fS +kk +kk +kk +fr +fr +aq +aq +ao +aq +aq +ao +aq +fr +fr +fr +fr +fr +fr +fr +fr +aq +aq +fr +fr +fr +fr +"} +(28,1,1) = {" +gs +gs +gs +gt +gt +gt +gt +gs +gs +kG +gi +gi +gw +gs +gs +kG +hT +gx +gs +gs +gs +gs +gs +gs +gs +gt +fD +fC +fC +fD +fD +fD +fD +hG +fD +fD +fC +hG +fC +fC +fC +fC +fC +fC +fS +kk +kk +kk +fS +kk +kk +fS +fS +fS +fS +fS +hn +fY +fF +fF +fN +fF +as +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +fr +fr +aq +aq +aq +fr +aq +aq +aq +aq +fx +fr +fr +fr +fr +fr +aq +aq +aq +fr +fr +fr +fr +"} +(29,1,1) = {" +gs +gs +gt +gt +gs +mt +gt +gs +gs +iq +gi +gq +gx +gs +gs +kG +hT +gx +gs +gs +gs +gs +gs +gs +gs +gt +fD +fD +fC +hN +hG +hN +hE +hN +hE +kk +kk +kk +kk +kk +kk +kk +kk +mr +kk +fS +kk +fS +kk +kk +kk +fS +fS +fS +fS +fS +hl +fF +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +fr +fr +aq +aq +fr +aq +aq +aq +aq +aq +aq +aq +aq +aq +fr +aq +aq +aq +aq +fr +fr +fr +fr +"} +(30,1,1) = {" +gs +gs +gt +gs +gs +gs +gt +gs +gs +gs +gi +gi +md +gK +mf +mc +hW +gx +gs +gs +gs +gs +gs +gs +gs +gs +fD +fD +fD +hE +fD +hE +hG +hE +hG +kk +kk +kk +kk +kk +kk +kk +hn +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hl +fF +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +fr +fr +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ao +aq +aq +aq +aq +aq +fr +fr +fr +fr +fr +"} +(31,1,1) = {" +gs +gs +gt +gt +gs +gt +gu +gs +gs +gs +iq +gi +hT +hT +mh +md +hT +gy +gs +gs +gs +gs +gs +gs +gs +gs +fU +fV +fU +fV +kk +kk +hn +fY +fW +kk +kk +hs +kk +kk +hn +fY +fF +hq +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +hq +fF +fF +fF +hq +av +fX +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +fr +fr +aq +ao +aq +fx +fr +fr +aq +aq +aq +aq +fy +aq +aq +aq +ao +aq +fr +fr +fr +fr +fr +"} +(32,1,1) = {" +gs +gs +gt +gt +gu +gt +gt +gs +gs +gs +gs +iq +hT +mj +hT +kD +gy +gs +gs +gs +gs +gs +gs +gs +gs +gs +fV +hs +fV +kk +kk +kk +hl +fF +kn +fW +fV +fT +fU +hn +fF +fF +fF +hq +as +mr +fS +fS +fS +fS +fS +fS +fS +fS +hn +fF +av +av +fF +fF +fX +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +cZ +gR +gR +kf +cZ +cZ +cZ +cZ +kf +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +"} +(33,1,1) = {" +gs +gs +gs +gJ +gt +gv +gJ +gs +gs +gs +gs +gs +iq +kD +gy +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +fS +hs +fV +kk +kk +kk +hl +kl +lu +as +fV +fU +fU +hM +fF +fP +fF +av +fX +fS +fS +fS +fS +fS +fS +fS +fU +hn +fF +fX +fS +fS +hl +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +cZ +cZ +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +"} +(34,1,1) = {" +gs +gs +gs +gs +gv +gu +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +fS +hn +fW +kk +kk +hn +lV +fF +kl +fX +fV +fT +fU +hl +fF +av +fX +fS +fS +fS +fS +fS +fS +fS +fS +fV +lI +hl +as +fS +fS +fS +hl +as +mr +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +kf +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +gR +gR +gR +gR +cZ +gR +gR +gR +kL +cZ +cZ +cZ +cZ +"} +(35,1,1) = {" +gs +gs +gs +gs +hQ +gK +gw +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +fS +hl +kl +fY +fY +hq +kn +fF +as +fS +fS +hs +fS +hm +fX +fS +fS +fS +fS +fS +hn +fY +fW +lM +hs +hs +fT +hl +as +fS +fS +hn +fF +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +gR +gR +gR +cZ +cZ +cZ +gR +gR +kM +cZ +cZ +cZ +cZ +"} +(36,1,1) = {" +ky +ky +ky +ky +ky +ia +hP +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +hl +lV +kn +kl +kn +lV +kl +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +fF +fF +fF +fY +fY +fY +fY +fF +fF +fY +fY +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +gR +kc +gR +cZ +cZ +cZ +cZ +cZ +gR +kc +gR +gR +cZ +cZ +gR +gR +gR +kN +cZ +cZ +cZ +cZ +"} +(37,1,1) = {" +ky +ky +ky +ky +ky +ia +hP +kA +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +hm +kn +kr +kl +kr +kn +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +fY +fF +fF +fF +av +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +gR +gR +gR +gR +cZ +cZ +cZ +gR +gR +gR +gR +cZ +cZ +cZ +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +"} +(38,1,1) = {" +ky +ky +ky +ky +if +hP +kF +kK +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +fS +hl +kr +kp +kr +kl +as +fS +fS +fS +fS +fS +fS +fS +fS +hn +fF +fF +fF +fF +fX +fS +hm +fF +fP +fF +fF +av +av +av +fF +fF +as +fV +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +cZ +kR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +gR +kc +gR +cZ +cZ +cZ +cZ +cZ +cZ +"} +(39,1,1) = {" +ky +ky +ky +if +hP +kA +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +fS +hl +kl +hq +kn +hq +as +fS +fS +fS +hn +fY +fY +fY +fY +fF +fF +fF +fF +as +fS +fS +fS +hl +fF +fF +as +fS +fS +fS +hm +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +cZ +kc +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(40,1,1) = {" +ky +ky +ky +ib +hP +hP +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +av +av +fF +fF +fY +fY +fY +hq +hq +fF +fF +fF +fF +fF +fF +fF +as +fS +fS +hn +fF +fF +fF +as +fS +fS +fS +fS +hm +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +kk +fS +kk +kk +kk +cZ +gR +gR +gR +lr +gR +gR +kc +gR +kf +cZ +cZ +cZ +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(41,1,1) = {" +ky +ky +ky +ky +ia +gk +gk +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +hn +fF +as +fV +lW +hl +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fY +fY +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +hm +fY +fW +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +gR +gR +gR +gR +gR +fz +gR +kf +cZ +cZ +cZ +cZ +kf +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(42,1,1) = {" +ky +ky +ky +ky +ia +gk +gk +gk +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +hn +fF +fF +as +fV +fV +hl +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +hl +as +lB +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +kf +kg +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(43,1,1) = {" +ky +ky +ky +ky +ia +hS +gk +gk +gk +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +hl +fF +fF +fF +fY +fY +fF +fF +fF +fF +fF +hq +hq +av +av +av +av +av +av +av +av +av +av +av +av +fF +fF +as +fS +fS +fS +fS +fS +fS +hl +as +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +cZ +kf +kc +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(44,1,1) = {" +ky +ky +ky +ky +ia +gk +kF +kF +gk +hP +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +hl +fF +fF +fF +fF +fF +fF +fF +fF +fF +fF +hq +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +fF +as +fS +fS +fS +fS +fS +hn +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +cZ +cZ +cZ +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(45,1,1) = {" +ky +ky +ky +if +gk +kA +ky +ky +ib +hP +hP +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +hl +fF +fF +fN +fF +fF +fF +fF +fF +fF +hq +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +fF +fW +fS +fS +fS +fS +fF +av +av +fW +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +cZ +cZ +gR +gR +lq +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(46,1,1) = {" +ky +ky +ky +ia +gk +kA +ky +ky +ky +ib +gk +kA +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +hm +fF +fF +fF +fF +fF +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +fF +fY +fW +fS +fS +as +fS +fS +hl +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +kk +cZ +cZ +cZ +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(47,1,1) = {" +ky +ky +ky +ia +gk +kA +ky +ky +ky +ky +ia +gk +kJ +kJ +kJ +kz +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +fS +hl +fF +fF +fF +av +av +fF +fF +fF +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +hq +hq +fY +fY +as +fS +fS +hl +fW +fS +fS +fS +fS +fS +fS +fS +kk +kk +kk +cZ +cZ +cZ +kf +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(48,1,1) = {" +ky +ky +ky +ib +gk +kA +ky +ky +ky +ky +ia +hS +gk +gk +gk +gk +kJ +kz +ky +ky +ky +ky +ky +ky +ky +ky +fS +hm +fF +fF +fX +fS +fS +hl +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +hq +hq +hq +fF +fY +fY +fF +as +fS +fS +fS +fS +fS +fS +kk +kk +kk +kk +cZ +cZ +cZ +cZ +gR +gR +gR +kc +kR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(49,1,1) = {" +ky +ky +ky +ky +ia +gk +kz +ky +ky +ky +ia +gk +gA +gk +gk +gk +gk +gk +kz +ky +ky +ky +ky +ky +ky +ky +fS +mr +hl +as +fS +fS +fS +hl +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +hq +hq +fF +av +fF +fF +fF +fW +fS +fS +fS +fS +kk +fS +kk +kk +kk +cZ +cZ +cZ +cZ +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(50,1,1) = {" +ky +ky +ky +ky +ib +kF +gk +kz +ky +ky +ia +gr +gk +gk +kF +kF +hS +gk +kA +ky +ky +ky +ky +ky +ky +ky +fS +fS +hl +as +fS +fS +hn +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +hl +hq +fX +fS +hm +fF +fF +as +fS +fS +fS +kk +fS +kk +kk +kk +kk +cZ +cZ +cZ +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(51,1,1) = {" +ky +ky +ky +ky +ky +ky +ia +gk +kJ +kJ +gk +gk +gk +kK +ky +ky +ib +gk +kA +ky +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +fY +fY +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +lN +hl +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +hl +as +fS +fS +fS +hm +fF +fF +fW +fS +fS +fS +fS +fS +kk +kk +kk +cZ +cZ +cZ +gR +kc +gR +lm +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(52,1,1) = {" +ky +ky +ky +ky +ky +ky +ib +gk +gk +gk +hS +gk +kA +ky +ky +ky +ky +ib +kA +ky +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +fF +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +lP +hl +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +hl +hq +fW +fS +fS +fS +hl +fF +fF +fW +fS +fS +fS +kk +kk +fV +fU +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(53,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ib +kF +kF +gk +gk +kA +ky +ky +ky +ky +ky +ia +kz +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +fF +fF +fF +fF +fF +fF +fY +fY +fW +fU +fT +fS +fS +fS +fS +lQ +hl +av +av +fF +fW +fS +fS +fS +fS +fS +fS +hm +hq +hq +fW +fS +fS +hl +fF +fF +fF +kl +fY +kn +kl +fW +hs +hs +gR +gR +gR +gR +gR +gR +gR +gR +gR +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(54,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ib +gk +kA +ky +ky +ky +ky +ky +ia +kA +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +fF +av +av +fF +fF +fF +fF +fF +as +fU +fT +hL +kw +fS +fS +fS +as +fS +fS +hm +lL +fF +fW +fS +fS +fS +fS +fS +hl +fF +fF +fY +fY +fF +fF +fF +fF +lu +kn +lu +km +as +fV +fU +gR +gR +cZ +gR +gR +gR +kc +gR +gR +gR +gR +gR +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(55,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +kA +ky +ky +ky +ky +ky +ia +kA +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +as +fS +fS +hl +fF +fF +fF +fF +as +fV +fT +hL +fS +fS +fS +fS +as +fS +fS +fS +hl +fF +as +fS +fS +fS +fS +fS +hm +fF +fF +fF +fF +fF +fF +av +fX +kr +kr +ko +kn +as +hs +hs +gR +cZ +cZ +cZ +gR +gR +fA +gR +kc +gR +gR +gR +gR +kR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(56,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +kA +ky +ky +ky +ky +ky +ia +kA +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +as +fS +fS +hl +fF +fF +fF +fF +as +fV +fT +hL +fS +fS +fS +fS +hl +fW +fS +fS +hl +fF +fF +fW +fS +fS +fS +fS +fS +hl +fF +fF +fF +fF +as +fS +fS +fS +fS +kp +kl +as +fV +fU +cZ +cZ +cZ +gR +gR +gR +gR +gR +gR +gR +gR +gR +kc +kg +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(57,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +kz +ky +ky +ky +ky +ia +kA +ky +ky +ky +ky +ky +ky +fS +fS +hm +fF +as +fS +fS +hl +fF +fF +fF +fF +as +fU +fT +hL +kw +fS +fS +fS +hm +av +fY +fY +fF +fF +fF +fF +fW +fS +fS +fS +fS +hm +av +av +av +fF +as +fS +fS +fS +kr +ko +kn +as +hs +hs +gR +cZ +gR +gR +gR +gR +gR +kR +cZ +cZ +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(58,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +gk +kJ +kJ +kJ +kJ +gk +kA +ky +ky +ky +ky +ky +ky +fS +fS +fS +hl +as +fS +fS +hl +fF +fF +av +av +fX +fU +fT +fS +fS +fS +fS +fS +hs +fU +hm +fF +fF +fF +av +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +fY +fY +kl +lu +kn +kl +as +fV +fU +gR +gR +gR +gR +kc +gR +gR +cZ +cZ +cZ +gR +gR +kg +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(59,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ie +ia +gk +hS +gk +gk +gk +hS +gk +kA +ky +ky +ky +ky +ky +ky +fS +fS +fS +hl +fF +fY +fY +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fV +fV +fV +hm +av +fX +lJ +hl +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +av +kn +lv +kl +fX +hs +hs +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +gR +gR +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(60,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ig +id +ia +gk +gk +gk +gk +gk +gk +gk +kA +ky +ky +ky +ky +ky +ky +fS +fS +hn +fF +fF +fF +fF +fF +av +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +fY +fY +fY +fY +fW +hn +fF +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +mr +fS +fS +fS +fS +fS +fS +fS +kj +kj +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(61,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ih +ie +ia +gk +kF +kF +gk +gk +gk +hS +kA +ky +ky +ky +ky +ky +ky +fS +fS +hl +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +fY +fF +fN +fF +av +av +av +fF +fF +fF +fF +fF +fY +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kj +kj +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(62,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +mn +id +ia +kA +ky +ky +ib +gk +gk +gk +kA +ky +ky +ky +ky +ky +ky +fS +hn +hq +hq +hq +hq +hq +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +hn +fF +fF +fF +fF +as +fS +fS +fS +hm +av +fF +fF +fF +av +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kj +gR +gR +kc +gR +gR +gR +gR +gR +kc +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(63,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ih +ie +ia +kA +ky +ky +ky +ia +gk +gk +kA +ky +ky +ky +ky +ky +ky +fS +hl +hq +av +hq +hq +hq +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +hl +fF +fF +fF +fF +fX +fS +fS +fS +fS +fS +hm +fF +as +lF +hl +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kf +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(64,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +mo +id +ia +kA +ky +ky +ky +ia +gk +hS +hS +kz +ky +ky +ky +ky +ky +hn +fF +fX +fS +hm +hq +hq +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +hl +fF +fF +fF +fX +fS +fS +fS +fS +fS +fS +fS +hm +fF +fY +fF +fF +fF +fY +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kg +gR +gR +gR +kf +cZ +cZ +kf +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(65,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ie +ib +gk +kz +ky +if +gk +gk +hS +hS +kA +ky +ky +ky +ky +ky +hm +as +fS +fS +fS +hl +hq +as +fS +fS +fS +fS +fS +fS +fS +fS +hn +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +fF +fF +fF +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +kc +gR +gR +gR +cZ +cZ +cZ +cZ +kR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(66,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ib +gk +gk +gk +gk +gk +gk +gk +kA +ky +ky +ky +ky +ky +fS +hl +fW +fS +hn +hq +hq +hq +fW +fS +fS +fS +fS +fS +fS +hn +fF +fF +fP +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +fF +fF +av +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +kc +gR +gR +gR +cZ +cZ +cZ +cZ +gR +gR +lj +gR +gR +kR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(67,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +gk +gk +kF +kF +gk +kA +ky +ky +ky +ky +ky +fS +hl +fF +fY +hq +hq +av +fF +as +fS +fS +fS +fS +fS +fS +hm +av +fF +fF +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hl +as +fS +hm +fF +fF +fW +fS +fS +fS +fS +fS +fS +fS +fS +kg +gR +kc +gR +cZ +cZ +cZ +cZ +gR +gR +gR +gR +kc +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(68,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +gk +kA +ky +ky +ib +gk +kz +ky +ky +ky +ky +fS +hl +fF +fF +fF +lX +fS +hl +fF +fW +fS +fS +fS +fS +fS +fS +fS +hl +fF +av +av +fF +fY +fW +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +as +fS +fS +hl +hq +hq +fW +fS +fS +fS +fS +fS +fS +fS +kf +gR +gR +gR +kf +cZ +cZ +cZ +gR +gR +gR +gR +gR +gR +gR +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(69,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +hS +gk +kA +ky +ky +ky +ia +kA +ky +ky +ky +ky +fS +hm +fF +fF +as +fS +hn +fF +fF +fF +fW +fS +fS +fS +fS +fS +fS +hl +as +fS +fS +hm +fF +fF +fY +fY +fW +fS +fS +fS +fS +fS +fS +fS +hl +fY +fY +hq +hq +hq +as +fS +fS +fS +fS +fS +fS +fS +kj +gR +gR +gR +gR +cZ +cZ +kf +gR +kc +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +"} +(70,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +gk +kA +ky +ky +ky +ia +kA +ky +ky +ky +ky +fS +fS +hm +fF +fF +fY +fF +fF +fF +fF +fF +fY +fW +fS +fS +fS +fS +hl +as +fS +fS +fS +hm +fF +fF +fF +fF +fW +fS +fS +fS +fS +fS +fS +hm +hq +hq +hr +hq +hq +as +fS +fS +fS +fS +fS +fS +fS +kj +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +cZ +cZ +gR +gR +kO +cZ +cZ +cZ +cZ +cZ +cZ +"} +(71,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +gA +gk +kz +ky +ky +ia +kA +ky +ky +ky +ky +fS +fS +fS +hm +fF +fF +fF +av +av +fF +fF +fF +fF +fW +fS +fS +fS +hl +fX +fS +fS +fS +fS +hl +fF +fF +fF +fF +fY +fW +fS +fS +fS +fS +fS +hm +hq +hq +hq +av +hq +fW +fS +fS +fS +fS +fS +fS +kj +gR +kc +gR +gR +gR +gR +gR +fz +gR +gR +cZ +cZ +cZ +gR +kc +kP +cZ +cZ +cZ +cZ +cZ +cZ +"} +(72,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +mk +ia +gk +gk +gk +gk +kJ +kJ +gk +kA +ky +ky +ky +ky +fS +fS +fS +fS +hl +fF +as +fS +fS +hm +fF +fF +fF +fF +fY +fY +fY +as +fS +fS +fS +fS +fS +hl +fF +fF +fF +fF +fF +as +fS +fS +fS +fS +fS +fS +hl +hq +fX +fS +hm +as +fS +fS +fS +fS +fS +fS +kj +gR +gR +lm +gR +gR +kc +gR +gR +gR +gR +cZ +cZ +kR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +"} +(73,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ib +gk +gk +gk +gk +gk +gk +gk +gk +kz +ky +ky +ky +fS +fS +fS +fS +hl +fF +as +fS +fS +fS +hm +fF +fF +fF +fF +fF +fF +fF +fW +fS +hn +fY +fY +fF +fF +fF +av +av +fF +as +fS +fS +fS +fS +fS +fS +hm +as +fS +fS +fS +hl +fW +fS +fS +fS +fS +fS +kj +kR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +gR +kf +cZ +cZ +cZ +cZ +cZ +cZ +"} +(74,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ib +gk +gk +gk +gk +gk +gk +gk +gk +kz +ky +ky +fS +fS +fS +fS +hm +fF +fF +fW +fS +fS +fS +hm +fF +fF +av +av +av +av +av +fY +fF +fF +fF +fF +fF +fX +fS +fS +hl +fF +fW +fS +fS +fS +fS +fS +fS +hl +fW +fS +fS +hm +fF +fW +fS +fS +fS +fS +kj +gR +gR +gR +gR +kf +cZ +cZ +cZ +kf +gR +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(75,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +gk +kF +kF +gk +gk +gk +gk +kA +ky +ky +fS +fS +fS +fS +fS +hl +fF +fF +fW +fS +fS +fS +hl +fX +hs +lR +fS +fS +fS +hm +fF +fF +fF +fF +as +fS +fS +fS +hl +fF +as +fS +fS +fS +fS +fS +fS +hl +as +mr +fS +fS +hl +fX +fS +fS +fS +fS +kj +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +gR +gR +kc +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(76,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ib +kA +ky +ky +ib +gk +hS +gk +kA +ky +ky +fS +fS +fS +fS +fS +hl +fF +fF +fF +lU +fS +hn +as +fU +fS +fS +fS +fS +fS +fS +hm +av +av +fF +as +fS +fS +hn +fF +av +fF +fW +fS +fS +fS +fS +fS +hm +as +fS +fS +hn +as +fS +fS +fS +fS +fS +kj +kc +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +gR +gR +gR +gR +gR +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(77,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +ky +ky +ky +ia +gk +gk +kA +ky +ky +fS +fS +fS +fS +fS +hl +fF +fF +fF +fF +fY +fF +as +ms +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +fY +fY +fF +as +fS +hm +fF +fW +fS +fS +fS +fS +fS +hl +fW +fS +hl +as +fS +fS +fS +fS +fS +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(78,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +kz +ky +ky +ib +gk +gk +kA +ky +ky +fS +fS +fS +fS +fS +hm +fF +fF +fF +fF +fF +fF +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +fF +fF +fW +fS +hl +as +fS +fS +fS +fS +fS +hl +fF +ks +fF +fX +fS +fS +fS +fS +fS +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +gR +gR +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(79,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +kA +ky +ky +ky +ia +gk +kA +ky +ky +fS +fS +fS +fS +fS +fS +hm +fF +fF +fF +fF +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +av +fY +fF +fF +fW +fS +fS +fS +fS +fM +av +fH +lx +fS +fS +fS +fS +fS +fS +kf +gR +gR +kc +gR +kR +cZ +cZ +cZ +gR +gR +kc +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(80,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ib +kA +ky +ky +ky +ia +gk +kA +ky +ky +fS +fS +fS +fS +fS +fS +fS +hl +fF +fF +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +hm +av +fF +fF +fW +fS +fS +fS +fS +fS +fI +fS +fS +fS +fS +fS +fS +fS +kj +kR +gR +gR +gR +gR +kf +kg +kg +gR +gR +gR +gR +gR +kR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(81,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +kz +ky +if +gk +gk +gk +kz +ky +fS +fS +fS +fS +fS +fS +fS +hl +fF +as +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fE +fS +fS +fE +fS +fE +fS +fS +fS +fS +fS +fS +hm +fF +kl +kn +kr +kr +kr +fS +fS +fS +fS +fS +fS +fE +fS +fE +kj +kj +gR +gR +gR +gR +kc +kc +kg +gR +gR +cZ +gR +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(82,1,1) = {" +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ky +ia +hS +kJ +gk +hP +kF +kF +hP +kz +fS +fS +fS +fS +fS +fS +fS +hl +fF +as +fS +fS +fS +fS +fE +fS +fS +fE +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fS +fE +fS +fS +hm +lu +fF +kn +kp +kr +fS +fS +fS +fS +fE +fS +fS +fS +fS +kj +kj +kj +kg +kc +kg +kg +kg +kg +kc +kg +cZ +cZ +gR +gR +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(83,1,1) = {" +gj +ky +gj +gj +gj +ky +gj +ky +gj +gj +gj +gj +gj +ky +gj +ky +ky +ia +gk +gk +gk +kA +ky +ky +ib +kA +fS +fS +fS +fS +fS +fS +fS +hm +av +fX +fS +fS +fS +fS +fS +fS +fS +fS +fS +fE +fE +fS +fE +fE +fE +fS +fE +fE +fS +fE +fE +fE +fS +kr +kn +kl +lu +kl +kr +fS +fS +fE +fS +fS +fS +fE +fS +fE +kj +fs +kj +kg +kf +kg +kf +kg +kf +kg +kf +kg +kg +kc +kg +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(84,1,1) = {" +gj +gj +ky +gj +ky +gj +ky +gj +ky +gj +gj +gj +gj +gj +ky +ky +ky +ia +gk +gr +gk +kA +ky +ky +ky +ia +fS +fE +fS +fS +fE +fS +fS +fS +mr +fS +fS +fS +fE +fS +fE +fE +fE +fE +fE +fE +fE +fE +fE +fE +fE +fE +fE +fE +fE +fS +fE +fS +fS +kr +kp +fF +kn +as +fS +fS +fE +fS +fS +fE +fE +fE +fE +fE +fs +kj +kj +hj +hb +kh +cZ +cZ +ll +kf +kf +kg +kf +kg +kc +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(85,1,1) = {" +gj +gj +gj +ky +gj +ky +ky +gj +gj +gj +ky +gj +ky +ky +gj +ky +ky +ia +gk +gk +gk +kA +ky +ky +ky +ia +fS +fS +fS +fS +fS +fS +fE +fS +fS +ku +fL +ku +ku +ku +fL +fL +fL +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fE +fE +fE +fE +fS +kr +kr +kr +lu +kl +kn +fS +fS +fE +fE +fE +fE +fE +fE +fE +fs +fs +kj +gY +fv +hc +cZ +cZ +cZ +hj +hb +hb +kh +kf +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(86,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +ga +ga +ga +hO +gf +gb +gb +hU +fZ +gb +fZ +gb +fL +ku +ku +fL +ku +ku +ku +ku +fL +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fE +fE +fE +fE +fS +fE +fS +kl +kn +fF +kl +fE +fE +fE +fE +fE +fE +fE +fE +fs +fs +fs +fv +fv +fv +kh +cZ +hj +fv +fv +fv +hc +cZ +cZ +cZ +cZ +cZ +cZ +fs +cZ +fs +cZ +"} +(87,1,1) = {" +fZ +fZ +fZ +fZ +fZ +is +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +ga +fZ +ga +ga +hO +go +go +hO +fZ +fZ +gb +gb +fL +fL +ku +ku +ku +fL +ku +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fL +fK +fK +fK +fK +fL +fK +fK +fK +fL +fL +fL +fL +ku +fL +fK +fK +fK +fK +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +hd +fw +fw +fw +fw +he +kb +kb +ft +kb +kb +ft +ft +ft +ft +ft +"} +(88,1,1) = {" +fZ +fZ +fZ +fZ +is +mp +gB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +fZ +fZ +fZ +ga +ga +ga +ga +ga +fZ +gb +fZ +fZ +fL +fL +ku +ku +fL +fL +fL +fL +fL +fK +fK +hI +hI +hI +fK +fK +fL +fL +fL +fK +fK +fL +fL +fL +fK +fK +fK +fK +fL +fL +fL +fL +fK +fK +fK +fK +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +fw +he +kb +ft +kb +ft +ft +kb +ft +ft +kb +ft +"} +(89,1,1) = {" +fZ +fZ +fZ +fZ +is +iv +ga +gB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +ga +ga +fZ +fZ +fZ +ga +ga +ga +ga +ga +fZ +fZ +fZ +fL +fK +fL +fL +fK +fK +fL +fL +fL +fK +hI +hI +fL +hI +gN +fK +fK +fL +fK +fK +fK +lz +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fL +fw +fw +fw +ft +ft +fw +fw +fw +fw +fw +fw +fw +ft +ft +ft +fw +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +kb +kb +"} +(90,1,1) = {" +fZ +fZ +fZ +fZ +fZ +iv +gB +ga +gB +gB +ga +ma +ij +gn +gn +gp +ga +ga +fZ +fZ +fZ +fZ +ga +ma +hR +ga +ga +fZ +fZ +fZ +fK +fK +fK +fK +fK +fK +fK +fK +fK +hI +hI +fL +fL +hI +fK +fK +fK +fK +fK +fK +fK +fK +fK +fL +fK +fK +fK +fL +fK +fK +hw +ht +fK +fK +fL +fL +ft +fw +fw +fw +fw +fw +fw +fw +ft +ft +fw +fw +ft +ft +ft +fw +fw +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(91,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gB +ga +ga +ga +ga +ij +hX +ge +hU +ga +ga +ga +fZ +fZ +fZ +ga +ga +ga +ga +ga +ga +fZ +fZ +fK +fK +lz +fK +fK +fK +fK +fK +fK +hI +fL +fL +fL +hI +fK +fK +fK +fK +fK +fL +fK +fK +fK +fK +fK +fK +fK +fK +fK +hz +hx +lC +kt +fK +fK +fL +ft +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +fw +ft +ft +ln +fw +fw +ft +fw +fw +fw +fw +fw +MT +MT +MT +MT +MT +MT +MT +ft +"} +(92,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +ga +gB +fZ +ga +ij +gc +gn +hU +ga +ga +ga +fZ +fZ +ga +ga +ga +ga +ga +ga +ga +ga +ga +fK +fK +fK +fK +fL +fL +fK +fK +fK +hI +fL +fL +lK +hI +fK +fK +fK +fK +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fK +hy +hu +fK +fK +fK +fK +fw +fw +fw +ln +fw +fw +ft +ft +ft +ft +ft +fw +fw +fw +fw +fw +ft +ft +ft +fJ +fJ +fJ +fJ +Cj +qr +qr +qr +qr +qr +MT +ft +"} +(93,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gB +gB +fZ +fZ +fZ +ij +hX +gn +hU +ma +ga +ga +ga +ga +ga +ga +ga +ga +gl +gO +ga +ga +ga +fK +fL +fK +fK +fL +fL +fL +fK +fK +hI +hI +hI +hI +fK +fK +fK +fK +fK +fK +fL +fK +fK +fK +fL +fL +fL +fL +fL +fL +fL +fK +fK +fK +fK +fK +fK +fw +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +fJ +fJ +fw +fw +fw +ft +ft +ft +fJ +fJ +fJ +fJ +yW +qr +qr +qr +qr +qr +Cj +ft +"} +(94,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +gF +ga +ga +ga +fZ +ga +ij +hX +ge +hV +ga +ga +ga +ga +ga +ga +fZ +fZ +ga +ga +ga +ga +ga +fZ +fL +fL +fK +fK +fK +fL +fK +fK +fK +fK +fK +fK +fK +fK +fL +fK +fK +fK +fK +fK +fK +fK +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fK +fK +fK +fK +fw +ft +ft +fw +fw +fw +ft +ft +ft +ft +ft +ft +fJ +fw +fw +fw +fw +ft +ft +fJ +fJ +fJ +mG +Cj +aj +qr +qr +qr +qr +MT +ft +"} +(95,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +gB +ga +ga +ga +ga +ga +ga +fZ +fZ +fZ +fZ +ga +ga +ga +ga +fZ +fZ +fZ +ga +ga +ga +ga +fZ +fZ +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fL +fK +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fK +fK +fw +ft +ft +fw +fw +ft +ft +ft +ft +ft +ft +ft +fJ +fw +fw +fw +fw +fw +fw +fJ +fJ +fJ +fJ +MT +MT +MT +MT +qr +qr +MT +ft +"} +(96,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +gB +ga +ga +gB +fZ +fZ +fZ +fZ +fZ +ga +ga +ga +ga +fZ +fZ +fZ +ga +ma +ga +ga +fZ +fZ +fL +fK +fK +fK +fK +fK +fK +fK +fK +fK +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +fJ +fw +ft +ft +fw +fw +fw +fw +fw +fJ +ft +ft +ft +ft +MT +aa +aa +MT +ft +"} +(97,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +gB +ga +gl +ga +gB +fZ +fZ +fZ +fZ +fZ +fZ +ga +ga +ga +ga +ga +ga +hO +hO +hO +hO +hO +hO +hO +hI +hI +fK +fK +fK +fK +lz +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +fw +fw +fw +fw +ft +ft +ft +fJ +fJ +fJ +fJ +fw +fw +ft +fJ +fJ +fw +fw +fw +fw +ft +ft +ft +ft +ft +MT +MT +MT +MT +ft +"} +(98,1,1) = {" +fZ +fZ +fZ +fZ +gG +gE +gB +ga +ga +gB +gF +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +ga +fZ +fZ +fZ +hO +hO +hO +hO +hO +hO +hO +hI +hI +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +fw +fw +fw +fw +fw +fw +fw +ft +fJ +fJ +fw +fw +fJ +fJ +fJ +fJ +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(99,1,1) = {" +fZ +fZ +fZ +fZ +ga +gB +gB +gB +ga +gB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hI +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +ft +fw +fw +fw +fw +fw +fw +ft +ft +fJ +fw +fw +fJ +fJ +fJ +fJ +ft +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(100,1,1) = {" +fZ +fZ +fZ +iv +ga +ga +ga +gB +fZ +gF +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +ft +fw +fw +ln +fw +fw +fw +fw +fJ +fJ +ft +ft +ft +ft +fJ +fJ +ft +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(101,1,1) = {" +fZ +fZ +is +ir +ga +gF +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +ft +fw +fw +ft +ft +ft +fw +fw +fJ +ft +ft +ft +ft +ft +ft +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(102,1,1) = {" +fZ +fZ +fZ +iv +hO +ga +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +fw +fw +fw +ft +ft +ft +fw +fw +ft +ft +ft +ft +ft +ft +ft +fw +fw +fw +lc +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(103,1,1) = {" +fZ +fZ +fZ +it +ir +gB +fZ +fZ +fZ +fZ +mm +ml +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +fw +fw +fw +fw +ft +ft +ft +fw +fw +ft +ft +ft +ft +ft +ft +ft +lk +fw +lf +fw +kZ +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(104,1,1) = {" +fZ +fZ +fZ +fZ +hO +fZ +fZ +fZ +fZ +fZ +fZ +is +hO +iv +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gb +gb +kC +gb +gb +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fw +fw +fw +fw +fw +ft +ft +ft +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +kS +fw +ld +fw +kS +ft +ft +ft +ft +ft +ft +ft +ft +"} +(105,1,1) = {" +fZ +fZ +fZ +mq +is +fZ +fZ +fZ +fZ +fZ +fZ +hO +iv +hO +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gb +hB +hB +hB +gb +fZ +fZ +fL +fL +fL +fL +fL +hI +hI +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fK +lz +fK +fK +fL +fL +fL +fL +fL +fL +lz +fK +fK +fw +fw +gW +hf +fw +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +lg +fw +fw +kT +kQ +ft +ft +ft +ft +ft +ft +ft +"} +(106,1,1) = {" +fZ +fZ +mm +ir +it +fZ +fZ +fZ +fZ +fZ +fZ +iv +hY +iv +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gb +gc +gc +gc +gb +fZ +fZ +fL +fL +fL +fL +hI +hI +hI +fK +fK +fK +fK +fK +fK +fL +fL +fL +fL +fL +fL +fL +hI +hI +hI +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fw +he +gV +gT +ho +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +fJ +fJ +fJ +kU +ft +ft +ft +ft +ft +ft +ft +ft +"} +(107,1,1) = {" +fZ +fZ +fZ +mm +fZ +fZ +fZ +fZ +fZ +fZ +fZ +iv +iv +hO +iv +fZ +fZ +fZ +fZ +ga +ga +fZ +fZ +gb +ge +gn +ge +gb +fZ +fZ +fL +fL +fL +hI +hI +fK +fK +fK +lz +fK +fK +fK +fK +fK +fK +fL +fL +fL +fL +fK +hI +hI +hI +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fL +ft +he +gS +gU +ho +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +fJ +le +fJ +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(108,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +mm +hO +hO +iv +ij +me +fZ +fZ +ga +ga +ga +ga +fZ +fZ +gp +go +gf +fZ +fZ +fZ +fL +fL +fK +hI +fL +fK +fK +fK +fK +fK +fK +fK +lz +fK +fK +fL +fL +fL +fL +hI +hI +hI +hI +hI +fK +fK +fK +fK +fK +fK +fK +fK +fK +fK +fL +fL +ft +fw +hg +hp +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +lh +fJ +la +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(109,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hO +ij +hX +gn +gp +ma +ga +ga +ma +ga +ga +ga +ga +ga +ga +ga +ga +fK +fK +fK +fL +fL +fK +fK +fK +fL +fL +fL +fK +fK +fK +fK +fK +fK +fL +fL +hI +hI +lK +hI +hI +fL +fL +fL +lz +fK +fK +fQ +fK +fK +fK +fL +fL +fw +fw +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +li +ha +fJ +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(110,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +is +ii +ge +gn +hU +ga +fZ +fZ +ga +ga +ga +ga +ga +ga +ga +ga +fZ +fK +fK +fK +fK +fK +fK +fK +fL +fL +fL +fL +fK +fK +lz +fK +fK +fK +hI +hI +hI +hI +hI +hI +hI +fL +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +hk +gm +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(111,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +mi +hX +gn +hV +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +fK +lz +fK +fK +fK +fK +fK +fL +fL +fL +fL +fL +fK +fK +fK +fK +fK +hI +hI +hI +hI +hI +hI +hI +fL +fL +fL +fL +fK +fK +fK +fK +fK +fK +fK +fK +fw +fw +fw +fw +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +hv +gX +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(112,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} +(113,1,1) = {" +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +ft +"} + +(1,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(2,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(3,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(4,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +wU +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(5,1,2) = {" +op +op +op +mw +ly +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +lp +OD +wU +wU +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(6,1,2) = {" +op +op +op +ly +lA +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aR +aF +aF +lp +OD +wU +wU +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(7,1,2) = {" +op +op +op +ly +ly +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +XY +XY +lp +OD +wU +wU +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(8,1,2) = {" +op +op +mA +im +ec +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +op +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +XY +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(9,1,2) = {" +op +op +mF +dZ +mu +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +ec +dZ +op +op +op +op +op +op +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +XY +XY +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(10,1,2) = {" +op +mD +im +im +mv +op +op +op +op +op +op +op +op +op +op +op +wU +wU +Cw +Bg +ec +im +dZ +dZ +op +im +op +op +op +ic +ic +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +aJ +XY +XY +XY +XY +XY +aB +aB +aB +aB +aB +aE +aB +aB +aB +aB +aB +"} +(11,1,2) = {" +op +mx +mB +mE +op +op +op +op +op +op +op +op +op +op +op +op +wU +wU +Cw +hJ +im +im +im +im +im +im +op +op +op +ce +ic +ic +ic +ic +ce +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 +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +aG +aG +aG +aG +XY +XY +XY +XY +XY +aF +aB +aH +XY +aF +aB +aB +aB +aB +aB +"} +(12,1,2) = {" +op +mE +mC +mx +op +op +op +op +op +op +op +op +op +op +op +op +wU +wU +Cw +hJ +im +im +im +im +im +im +dZ +op +dZ +ce +ic +ic +ic +ic +ce +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +aG +aB +aB +aB +XY +aP +XY +XY +XY +aF +aF +XY +XY +aG +aD +ax +aw +aw +aB +"} +(13,1,2) = {" +op +my +my +my +op +op +op +op +op +op +op +op +op +op +op +op +op +op +gZ +vm +ec +im +im +im +im +im +dZ +dZ +dZ +ic +ic +ic +ic +ic +ce +ce +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +bd +XY +XY +aG +aB +aB +XY +XY +XY +aF +aB +XY +XY +XY +aG +aF +aD +ay +aw +aw +aB +"} +(14,1,2) = {" +op +mz +mz +mz +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +dZ +im +im +im +ec +ec +im +im +ic +ic +ic +ic +ic +ic +ce +ce +ci +ci +ci +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +XY +XY +XY +XY +aB +aB +XY +XY +aF +aB +aB +XY +XY +aG +aG +aG +aD +aA +aw +aw +aB +"} +(15,1,2) = {" +op +mz +mz +mz +op +op +op +op +op +op +op +op +op +op +dZ +op +op +im +op +op +op +op +im +im +ec +ec +ec +im +im +BI +ic +ic +BI +ci +ic +ic +ce +ce +ce +ci +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +XY +aQ +XY +XY +aB +XY +XY +XY +aB +aI +aF +aF +XY +aF +aG +aD +aC +aw +aw +aB +"} +(16,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +dZ +dZ +im +im +im +op +op +op +im +ec +ec +op +op +op +op +BI +BI +BI +BI +ci +ic +ic +ic +ic +ce +ce +ce +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aF +XY +XY +XY +XY +aB +XY +XY +XY +XY +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(17,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +im +im +im +im +im +im +im +im +im +ec +op +op +op +op +op +BI +BI +BI +ci +ci +ic +ic +ic +ic +ic +ic +ce +ce +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(18,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +ec +ec +im +im +im +im +eC +im +im +im +ec +ec +op +op +op +op +op +BI +ci +ci +ci +dE +ic +ic +ic +ic +di +ic +ic +ic +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +XY +XY +XY +XY +XY +XY +XY +aF +XY +aQ +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(19,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +ec +im +dZ +dZ +im +im +im +im +im +im +ec +op +op +op +op +op +im +ic +ci +ci +ic +ic +ic +ic +ic +ic +ic +ic +ic +ci +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +XY +XY +XY +aB +XY +XY +aF +aF +XY +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(20,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +ec +ec +im +dZ +op +op +im +im +im +im +im +ec +ec +op +op +op +op +im +ic +ic +ic +ic +ic +ic +dt +ic +ic +ic +ic +ic +ci +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +co +ch +ch +BI +BI +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +XY +XY +XY +aB +aB +aB +XY +aU +aS +XY +aB +aB +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(21,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +im +im +im +op +op +op +im +im +im +im +im +ec +ec +ec +op +op +op +op +ic +ic +ic +BI +BI +BI +du +dp +ce +ic +ic +ic +ci +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +BI +co +ci +ic +ic +ic +BI +qJ +qJ +qJ +KO +KO +KO +qJ +qJ +qJ +XY +aB +aB +aB +XY +XY +XY +XY +aB +aW +aF +aV +aT +XY +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(22,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +im +im +im +op +op +im +im +im +im +im +im +im +ec +ec +ec +op +op +im +ic +ic +BI +BI +BI +BI +dv +dq +ic +ic +ic +ic +ic +ci +ci +BI +BI +BI +BI +BI +BI +BI +BI +BI +co +ci +ic +ic +ic +ic +ic +qJ +qJ +qJ +KO +KO +qJ +qJ +qJ +qJ +XY +XY +aB +aB +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(23,1,2) = {" +op +op +op +op +op +op +op +op +op +op +ec +im +im +im +im +im +eG +op +ec +ec +im +im +im +im +ec +ec +im +im +im +ic +ic +BI +BI +dz +dz +dv +ic +ic +ic +ic +ic +ic +ci +ci +ci +BI +BI +BI +BI +BI +BI +ci +ci +ci +ic +ic +ic +ic +ic +ic +aN +qJ +aN +KO +qJ +qJ +qJ +KO +KO +XY +XY +XY +aB +XY +aB +XY +XY +XY +XY +XY +aG +aG +XY +XY +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(24,1,2) = {" +op +op +op +op +op +op +op +op +op +op +ec +im +im +im +im +im +op +op +ec +op +op +op +op +op +im +im +im +im +im +ic +ic +BI +BI +dz +dz +dw +dr +ic +BI +BI +ic +ic +ci +ci +ci +cN +BI +BI +BI +ci +ci +ci +ic +ic +ic +ic +ic +ic +ic +ic +KO +aN +KO +KO +KO +KO +KO +KO +KO +XY +XY +XY +XY +XY +aB +XY +aB +XY +XY +aG +aB +aB +aG +XY +XY +aF +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(25,1,2) = {" +op +op +op +op +op +op +op +op +op +ec +ec +im +im +im +im +ec +ec +ec +ec +op +op +op +op +op +op +im +im +im +im +ic +ci +BI +BI +dz +dA +dw +ds +ic +BI +BI +ic +ic +ic +ci +ci +ci +ci +ci +ci +ci +ci +ic +ic +ic +ic +BI +BI +BI +ic +ic +KO +KO +KO +KO +KO +KO +KO +KO +KO +XY +XY +XY +XY +XY +XY +XY +aB +XY +XY +aG +aB +aB +aG +XY +aB +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(26,1,2) = {" +op +op +op +op +op +op +op +op +op +ec +im +im +im +im +ec +ec +op +op +op +op +op +op +op +op +op +im +im +im +im +ic +ci +ci +BI +dz +dz +dw +ic +ic +ic +ic +ic +ic +ic +ic +cQ +ci +ci +ci +ci +ci +ic +ic +ic +ic +ic +ic +BI +BI +BI +ic +KO +KO +KO +KO +KO +KO +bE +aO +bA +aB +aB +aF +XY +XY +XY +XY +XY +XY +XY +aB +aB +aB +aG +XY +XY +XY +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(27,1,2) = {" +op +op +op +op +op +op +op +op +ec +ec +im +im +im +im +ec +ec +op +op +op +op +op +op +op +op +op +op +im +im +im +ic +ic +ci +dG +dB +dB +cR +dt +ic +ic +ic +ce +ic +ic +ic +ic +ci +ci +ci +ic +ic +ic +ic +ic +ic +ic +ce +BI +BI +BI +ic +KO +cc +KO +KO +KO +KO +aL +aM +qJ +aB +aB +aF +XY +XY +XY +XY +XY +XY +XY +aB +aB +aB +aG +XY +XY +XY +aF +aF +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(28,1,2) = {" +op +op +op +op +op +op +op +ec +ec +dZ +dZ +dZ +im +ec +ec +op +op +op +op +op +op +op +op +op +op +op +dZ +dZ +im +ic +ic +dL +dt +ic +dt +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +cK +ic +ic +BI +ic +ic +cE +cz +ic +ce +ce +BI +BI +ic +KO +KO +KO +KO +KO +aK +bF +qJ +qJ +aB +aB +aF +XY +XY +XY +aB +aB +XY +XY +aB +aB +aB +aG +aB +XY +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(29,1,2) = {" +op +op +op +op +op +op +op +im +im +dZ +op +op +im +ec +ec +op +op +op +op +op +op +op +op +op +op +op +op +dZ +im +ic +dO +dM +ic +ic +ic +ic +ic +BI +BI +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +BI +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +KO +aK +aK +aK +aK +aK +qJ +qJ +qJ +aB +aB +aF +XY +br +aB +aB +aB +XY +XY +XY +aB +aB +aG +XY +XY +XY +aB +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(30,1,2) = {" +op +op +op +op +op +op +op +im +im +op +op +op +im +eZ +eR +op +op +op +op +op +op +op +op +op +op +op +op +dZ +dZ +ic +dP +dM +ce +ce +ce +ic +ic +ic +BI +ic +ic +BI +BI +BI +ic +ic +ic +ic +ic +BI +BI +ic +ic +ic +ic +ic +ic +ic +ic +ic +KO +aK +aK +aK +aK +aK +qJ +qJ +qJ +aB +bx +aF +XY +aB +aB +aB +aG +XY +XY +XY +aB +aB +aG +XY +XY +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(31,1,2) = {" +op +op +op +op +op +op +op +fo +im +op +op +fh +im +fa +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +dZ +dT +dQ +dN +ce +dF +ce +ic +ic +ic +ic +ic +ic +ic +BI +BI +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +cf +ic +KO +aK +aK +aK +qJ +qJ +qJ +qJ +qJ +aV +by +XY +XY +aB +aB +aG +aG +XY +XY +XY +aB +aB +aB +aB +XY +XY +aJ +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +"} +(32,1,2) = {" +op +op +op +op +op +op +fp +im +im +im +im +im +ec +fa +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +im +ce +ic +ic +ce +ic +ce +ic +ic +ic +ic +ic +ic +ic +cW +BI +ic +ce +ce +ic +ic +ic +ic +ic +ic +ic +BI +ci +ic +ic +ce +ic +KO +aK +aK +qJ +qJ +qJ +qJ +qJ +qJ +aF +XY +XY +XY +aG +aG +aG +XY +XY +XY +XY +aB +aB +aB +aB +XY +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(33,1,2) = {" +op +op +op +op +op +op +ec +ec +ec +im +im +im +ec +fa +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +im +ic +ic +ic +ce +ce +ce +ic +ic +ic +ic +ic +ic +ic +cX +cR +ic +ce +ic +ic +BI +ic +ic +ic +ic +BI +BI +ci +ic +ic +ce +ic +KO +aK +aK +qJ +qJ +qJ +qJ +qJ +qJ +aF +XY +XY +XY +XY +XY +XY +XY +XY +XY +aF +aF +aB +aB +aF +aF +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(34,1,2) = {" +op +op +op +op +op +op +fq +op +op +op +op +im +ec +fa +op +op +op +op +op +op +op +op +op +op +op +op +op +ec +im +ic +ic +ic +ic +ic +ic +ic +ic +ic +BI +ic +ic +ic +ic +ic +ic +ic +ic +ic +BI +BI +ic +ic +BI +BI +BI +cp +ic +ic +cg +ic +KO +aK +aK +qJ +qJ +qJ +qJ +qJ +qJ +aF +XY +XY +XY +aB +XY +XY +XY +XY +XY +aF +aF +aF +aB +aB +aF +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(35,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +im +ec +fa +op +op +op +op +op +op +op +op +op +op +op +op +ec +ec +im +ic +ic +ic +ic +ci +ci +ci +ci +ic +ic +ic +ic +cY +ic +ic +cK +ic +ic +BI +BI +BI +BI +ic +BI +BI +BI +ci +ci +ic +ic +ic +KO +KO +aK +qJ +qJ +qJ +qJ +qJ +qJ +aF +XY +aB +aB +aB +bl +aB +aS +XY +aX +XY +XY +aF +aF +aB +aF +XY +XY +XY +aB +aB +aB +aB +aB +aB +aB +aB +aB +"} +(36,1,2) = {" +op +op +op +op +op +op +op +op +op +op +im +im +ec +fb +op +op +op +op +op +op +op +op +op +op +op +dZ +dZ +im +im +ic +ic +ic +ci +ci +BI +BI +ci +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ci +ci +BI +BI +ic +BI +BI +BI +BI +ci +ci +ic +ic +KO +KO +aK +qJ +qJ +qJ +qJ +qJ +qJ +aK +KO +KO +qJ +qJ +qJ +qJ +be +KO +KO +KO +KO +KO +aK +aK +aK +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(37,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +ec +ec +op +op +op +op +op +op +op +op +op +op +dZ +dZ +im +im +im +ic +ic +BI +BI +BI +BI +BI +ci +ci +ic +ic +ic +ic +ic +ic +ic +ic +ic +ic +ci +ci +ci +ci +BI +BI +BI +BI +BI +ci +ic +ic +KO +KO +aK +qJ +qJ +qJ +qJ +qJ +qJ +aK +KO +KO +KO +qJ +qJ +qJ +be +KO +KO +KO +KO +KO +KO +KO +aK +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(38,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +ec +ec +op +op +op +op +op +op +op +op +op +op +dZ +im +im +im +im +ic +ic +ic +BI +BI +BI +BI +BI +ci +ic +ic +ce +ic +ic +ic +ic +ic +ic +ic +ic +ic +ci +ci +BI +BI +BI +cq +ci +ci +ic +ic +KO +KO +aK +aK +qJ +qJ +qJ +qJ +aK +aK +KO +KO +KO +KO +qJ +qJ +qJ +KO +KO +KO +KO +KO +aK +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(39,1,2) = {" +op +op +op +op +op +op +op +op +op +op +op +op +ec +ec +op +op +op +op +op +op +op +op +op +dZ +dZ +op +im +im +im +dU +ic +ic +ic +BI +BI +BI +BI +ci +ic +ic +ic +ic +BI +BI +ic +ic +ic +ic +ic +ic +ci +ci +ci +BI +BI +ci +ci +ic +ic +ic +KO +KO +KO +aK +qJ +qJ +qJ +aK +aK +KO +KO +KO +KO +KO +KO +qJ +qJ +KO +KO +KO +KO +KO +KO +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(40,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +eq +Es +Es +eo +eo +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +Es +qF +qF +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +qF +QR +QR +QR +QR +QR +QR +QR +qF +qF +ic +ic +ci +ci +BI +BI +BI +ci +ic +ic +ce +aN +KO +KO +aK +aK +aK +aK +aK +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(41,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +eq +eq +Es +Es +eo +fc +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +en +qF +qF +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +qF +QR +QR +QR +QR +QR +QR +QR +QR +qF +qF +qF +QR +QR +cd +cd +cd +cd +cd +QR +cb +cb +KO +KO +KO +KO +bR +bA +KO +KO +KO +KO +KO +bv +KO +KO +bm +bh +ba +ba +aY +KO +KO +KO +qJ +qJ +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(42,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eq +eq +Es +Es +Es +eo +fd +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +Es +QR +QR +QR +qF +qF +QR +cd +cd +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +qF +qF +QR +QR +QR +QR +QR +QR +QR +QR +cb +QR +KO +KO +KO +KO +bS +be +bm +KO +KO +KO +KO +KO +KO +bh +ba +bi +bf +bb +aZ +aN +aN +KO +qJ +qJ +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(43,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Es +Es +eo +fd +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +Es +Es +QR +QR +qF +qF +cd +cd +cd +cd +cd +cd +cd +QR +QR +QR +cd +cd +cd +QR +QR +QR +QR +QR +cL +QR +QR +QR +QR +QR +QR +cb +QR +QR +QR +QR +QR +QR +qJ +qJ +KO +KO +bS +be +KO +KO +KO +KO +KO +KO +KO +bs +bn +bj +bg +bc +qJ +qJ +aN +KO +qJ +qJ +aN +aK +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(44,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +Es +Es +Es +Es +Es +fd +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +Es +Es +QR +qF +qF +cd +cd +qF +qF +cd +cd +qF +cd +cd +QR +cd +qF +qF +cd +cd +QR +QR +QR +qF +QR +QR +QR +QR +cb +QR +QR +cb +cb +cb +QR +QR +QR +qF +qF +qJ +aN +KO +bT +bK +KO +KO +qJ +KO +KO +KO +KO +bs +bo +qJ +qJ +qJ +qJ +qJ +KO +KO +qJ +qJ +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(45,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Es +Es +Es +Wk +Es +Es +fe +eT +eo +Wk +Wk +Wk +Wk +Es +Es +Es +Es +QR +qF +cd +cd +qF +qF +qF +cd +qF +qF +qF +dx +qF +qF +qF +qF +qF +cd +QR +cS +qF +qF +qF +QR +QR +QR +cb +QR +QR +QR +QR +cb +QR +QR +QR +qF +qF +aN +aN +KO +KO +KO +KO +qJ +qJ +KO +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +KO +KO +qJ +qJ +aK +KO +aK +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(46,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Wk +Wk +Es +Es +Es +eo +eo +eo +eo +eo +eo +eo +Es +Es +eo +cd +cd +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +QR +QR +QR +cb +QR +qF +qF +QR +QR +QR +QR +QR +QR +QR +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +KO +KO +qJ +qJ +qJ +KO +aK +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(47,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Es +Es +fi +Es +Es +Es +eo +eo +eo +eo +eo +eo +Es +Es +eo +cd +cd +cd +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +QR +QR +QR +qF +qF +qF +qF +QR +cl +QR +QR +QR +QR +KO +KO +KO +KO +KO +KO +KO +KO +aN +aN +KO +KO +bt +qJ +qJ +qJ +qJ +qJ +qJ +KO +KO +qJ +qJ +aK +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(48,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Es +Es +Es +eq +Es +Es +Es +Es +Es +eo +eo +eo +Es +Es +Wk +ep +cd +cd +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +QR +QR +QR +qF +QR +qF +qF +QR +QR +QR +QR +QR +QR +KO +KO +KO +KO +bL +KO +KO +KO +KO +aN +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +KO +KO +qJ +qJ +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(49,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +Es +Es +fj +Es +Es +Wk +Wk +Wk +Es +Es +Es +Es +Es +Wk +Wk +cd +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cA +QR +QR +QR +qF +qF +QR +QR +QR +QR +QR +QR +KO +KO +KO +KO +KO +KO +KO +KO +aN +aN +aN +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +KO +KO +qJ +qJ +KO +aK +aK +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(50,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +eq +Es +Es +Es +eq +Wk +Wk +Wk +Wk +Es +Es +Es +Es +Es +Es +cd +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +QR +QR +QR +qF +qF +qF +QR +QR +QR +QR +QR +QR +KO +aK +aK +aK +KO +bG +KO +KO +KO +KO +aN +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +KO +KO +KO +qJ +aN +KO +aK +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(51,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Es +Es +Es +Es +eq +eq +Wk +Wk +Wk +Es +Es +Es +Es +Es +Es +cd +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +QR +QR +qF +QR +QR +QR +QR +QR +QR +QR +QR +aK +aK +qJ +aK +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +aN +KO +KO +KO +KO +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(52,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eo +eo +eo +Es +Es +Es +Es +Es +Es +Es +Wk +Wk +eD +Es +Es +Es +Es +Es +Es +QR +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +qF +qF +qF +qF +cd +QR +QR +QR +QR +QR +QR +cb +cb +QR +QR +cd +aK +qJ +qJ +aK +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +qJ +qJ +qJ +qJ +aN +aN +KO +KO +qJ +KO +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(53,1,2) = {" +Wk +Wk +Wk +Wk +eo +eo +eo +eo +eo +eo +eo +Es +Es +Es +Es +Es +Es +Es +Es +Es +Wk +Wk +ex +Es +QR +QR +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +wU +wU +wU +wU +qF +qF +cd +cd +qF +qF +cd +cd +cd +QR +QR +QR +cA +QR +QR +QR +QR +QR +cd +cd +aK +qJ +qJ +KO +KO +KO +KO +bz +aK +qJ +KO +KO +KO +KO +KO +KO +KO +aN +aN +KO +KO +KO +KO +KO +aN +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(54,1,2) = {" +Wk +Wk +Wk +Wk +eo +eo +eo +Wk +Wk +eo +eo +Es +Es +Es +Es +Es +Es +Es +Es +Es +Wk +eA +ey +Es +QR +QR +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +wU +wU +wU +wU +Cw +MX +cd +cd +cd +cd +cd +cd +QR +QR +QR +QR +cB +cw +cr +cm +cj +QR +cd +cd +qJ +qJ +qJ +KO +KO +KO +KO +aK +qJ +qJ +KO +KO +KO +KO +aK +aK +aK +KO +KO +KO +KO +qJ +qJ +aN +aN +aL +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(55,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Es +eo +Wk +Wk +Wk +eo +eo +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +QR +QR +QR +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +wU +wU +wU +wU +Cw +jy +cd +cd +cd +cd +cJ +QR +QR +QR +QR +QR +cw +cx +qF +qF +ck +cd +cd +cd +qJ +qJ +aN +aN +KO +KO +KO +aK +qJ +bz +KO +KO +KO +aK +bk +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +aO +aO +aM +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +qJ +"} +(56,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Es +eo +eo +Wk +Wk +Wk +eo +Es +eq +eo +eo +eo +Es +Es +Es +eq +eq +Es +Es +qF +QR +QR +cJ +qF +qF +qF +qF +qF +qF +qF +qF +qF +wU +wU +wU +wU +Cw +jy +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +cC +qF +qF +qF +ck +cd +cd +qF +qF +qJ +aN +KO +KO +KO +KO +KO +qJ +KO +KO +KO +KO +aK +aK +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(57,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Es +Es +eo +Wk +Wk +Wk +eo +Es +Es +Wk +Wk +eo +eo +eo +Es +eq +eq +Es +Es +qF +QR +QR +QR +ea +qF +qF +qF +qF +qF +qF +qF +qF +wU +wU +wU +wU +Cw +nD +cb +QR +qF +QR +QR +QR +QR +QR +QR +QR +cD +qF +qF +qF +ck +cd +cd +qF +qF +qJ +qJ +KO +KO +KO +KO +KO +KO +KO +KO +KO +aK +aK +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(58,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eo +eo +eo +fn +Wk +fk +eo +Es +Es +Wk +Wk +Wk +Wk +eo +Es +eq +eq +Es +Wk +qF +QR +QR +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +wU +wU +wU +wU +qF +qF +cb +qF +qF +qF +cd +cG +QR +QR +cA +QR +qF +qF +qF +qF +ck +cd +cd +qF +qF +qJ +qJ +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(59,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eo +eo +eo +eo +eo +eo +Es +eq +Es +Es +Wk +Wk +eo +eo +Es +Es +Es +Es +Es +QR +QR +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +cd +QR +QR +QR +qF +qF +qF +qF +ck +cd +cd +qF +qF +qJ +qJ +KO +KO +KO +KO +KO +KO +KO +KO +KO +aK +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(60,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Es +Es +Es +Es +Es +Es +Es +Wk +Es +Wk +Es +Es +Es +Es +Es +Es +QR +QR +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +qF +cd +QR +QR +QR +qF +qF +qF +qF +qF +cd +cd +qF +qF +qJ +qJ +aK +aK +KO +KO +aN +aN +aN +KO +KO +qJ +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(61,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Es +fl +ex +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +QR +QR +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +QR +QR +QR +QR +qF +qF +qF +qF +QR +cd +qF +qF +qJ +qJ +qJ +aK +KO +qJ +qJ +qJ +aN +KO +KO +qJ +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(62,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Es +eA +ey +Es +Es +ff +Es +Es +Es +Es +Es +Es +Es +eo +eo +eo +cd +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +cd +QR +QR +cb +cb +qF +qF +QR +QR +QR +QR +qF +qJ +qJ +qJ +aK +KO +qJ +qJ +qJ +KO +KO +KO +qJ +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(63,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eq +Es +Es +Es +Es +Es +Es +eq +Es +Es +Es +Es +Es +Es +eo +eo +eo +Wk +Wk +cd +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +cd +QR +QR +cb +QR +QR +QR +QR +QR +QR +qF +qF +qJ +qJ +aK +KO +qJ +qJ +qJ +KO +KO +KO +qJ +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(64,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Es +Es +en +eq +eq +Es +Es +eq +eq +Es +Es +eq +eq +Wk +Wk +Wk +Wk +Wk +Wk +cd +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +cd +QR +QR +cb +cb +cb +cb +QR +QR +QR +QR +QR +QR +KO +KO +KO +KO +qJ +qJ +aK +KO +KO +qJ +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(65,1,2) = {" +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Es +fm +eq +Es +Es +Es +Es +Es +eq +Wk +Wk +Wk +Wk +Wk +Wk +Wk +cd +QR +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +cd +cd +QR +QR +QR +cb +QR +QR +QR +QR +QR +cb +cb +qF +qJ +KO +KO +KO +KO +aK +aK +KO +qJ +qJ +lo +lo +lo +lo +lo +lo +lo +lo +lo +MT +MT +MT +MT +MT +MT +MT +MT +MT +lo +lo +lo +lo +lo +"} +(66,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +Es +eq +Es +Es +Es +Es +Es +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +cd +QR +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +cd +qF +qF +qF +qF +qF +qF +qF +qF +cd +cd +cd +cd +cd +cd +QR +QR +QR +QR +cb +QR +QR +QR +QR +QR +cb +qF +qF +qJ +KO +KO +KO +KO +KO +KO +qJ +qJ +qJ +lo +lo +lo +lo +lo +lo +MT +MT +MT +MT +Vr +jI +jB +jI +jB +jI +jB +MT +MT +MT +MT +lo +lo +"} +(67,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +Es +Es +Es +Es +Es +Es +Es +Wk +Wk +Wk +Wk +Es +Es +eo +eo +cd +QR +cd +cd +qF +qF +qF +qF +qF +qF +qF +qF +cd +qF +qF +qF +qF +qF +qF +qF +qF +qF +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +cb +cb +qF +qF +qJ +KO +KO +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +MT +Tb +MT +jL +jK +jK +jJ +jJ +jJ +jJ +jC +Tb +MT +Tb +MT +MT +lo +"} +(68,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Es +Es +Es +Es +Wk +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +QR +QR +QR +QR +QR +qF +qF +qF +qF +qF +qF +qF +cd +dk +qF +qF +qF +qF +qF +cT +QR +QR +QR +QR +QR +QR +qF +qF +QR +QR +QR +cs +QR +QR +QR +QR +qF +qF +qF +qF +qJ +KO +wB +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +jR +jP +yZ +Up +xW +Ar +Ar +Ux +Ux +Ar +Ux +Up +jA +gL +Up +MT +lo +"} +(69,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Es +fi +Es +Wk +Wk +Es +Es +Es +Es +Es +Es +Es +Es +eq +cb +QR +QR +QR +QR +QR +cb +qF +qF +qF +qF +cd +cd +cd +cd +cd +QR +QR +QR +QR +qF +qF +QR +QR +QR +QR +qF +qF +wB +wB +dX +dX +cn +dX +dX +wB +wB +wB +wB +wB +dX +bM +wB +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +jj +Up +yZ +Up +Ux +Ar +Ux +Ux +Ux +Ux +Ux +Up +yZ +Up +Up +MT +lo +"} +(70,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +Wk +Wk +eq +Es +Wk +Wk +Wk +Es +Es +Es +Es +Wk +Wk +Es +Es +cb +QR +QR +QR +QR +QR +cb +cb +cb +cd +cd +cd +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +cb +qF +qF +wB +wB +wB +dX +fB +dX +wB +wB +wB +wB +dX +dX +dX +Jo +dX +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +jV +jS +Up +Cj +jM +Ux +Ux +Ux +xW +Ux +Ux +jE +Up +Cj +Up +Up +MT +lo +"} +(71,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +Wk +Wk +Wk +eq +Es +Wk +Es +Es +eq +Es +Es +Wk +Wk +Wk +Es +cb +cb +QR +qF +qF +cd +cd +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +cb +cb +cb +cb +QR +QR +QR +cb +cb +qF +qF +wB +wB +bw +ct +fB +wB +wB +wB +wB +wB +dX +dX +bU +fB +dX +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +jj +Up +MT +jM +xW +Ar +xW +xW +Ux +Ar +jF +Up +MT +iy +Up +MT +lo +"} +(72,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Wk +Wk +Wk +Es +Es +Es +eI +eq +eq +Es +Es +Wk +Wk +Es +cb +QR +QR +qF +qF +qF +cd +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +cb +QR +QR +QR +QR +QR +cb +qF +qF +wB +bw +bw +fB +fB +wB +wB +wB +wB +wB +dX +fB +fB +fB +dX +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +Up +Up +MT +jL +xW +xW +xW +xW +Ux +Ar +jH +Tb +MT +jz +Up +MT +lo +"} +(73,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +eo +Es +Es +Wk +Wk +Es +Es +Es +Es +Es +eq +eq +eq +Wk +Wk +Wk +QR +QR +QR +QR +qF +qF +QR +QR +QR +cb +QR +dy +QR +QR +cb +cb +QR +QR +QR +QR +QR +QR +QR +QR +QR +cb +qF +qF +bw +bw +fB +fB +fB +dX +dX +dX +dX +dX +fB +fB +fB +fB +fB +wB +wB +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +Up +Up +MT +MT +rz +rz +rz +rz +rz +rz +rz +MT +MT +Up +Up +MT +lo +"} +(74,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +Wk +Wk +Es +Es +Es +Es +Es +Es +Es +eq +Es +Wk +Wk +cd +QR +QR +QR +QR +QR +QR +cb +cb +QR +QR +QR +QR +cb +cb +QR +wB +wB +cd +cd +cd +QR +QR +QR +QR +QR +qF +qF +bw +fB +fB +fB +dX +Um +gC +xd +jD +Um +dX +fB +fB +fB +fB +bw +bw +wB +wB +wB +wB +wB +lo +lo +lo +lo +lo +MT +Up +Up +MT +Py +Up +qr +Up +Up +Up +qr +Up +Py +MT +Up +Up +MT +lo +"} +(75,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +Es +Wk +Es +Es +eo +eo +eo +eo +Es +eq +Es +Es +eo +cd +cd +cd +cd +QR +QR +cJ +QR +QR +QR +QR +QR +QR +cb +QR +QR +wB +wB +wB +cd +cd +cd +cd +cd +QR +QR +qF +qF +fB +fB +dX +dX +dX +AT +Ho +Ho +Ho +JW +dX +dX +fB +fB +fB +bB +bw +bw +bw +wB +wB +wB +lo +lo +lo +lo +lo +Cj +Up +Up +MT +jg +Up +Cj +qr +Up +qr +Cj +Up +WO +MT +Up +Up +Cj +lo +"} +(76,1,2) = {" +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +eo +Es +Es +Es +Es +Es +eo +eo +Wk +Wk +eo +Es +eq +Es +Es +eo +cd +cd +cd +cd +cd +cd +QR +QR +QR +QR +cd +QR +QR +cb +QR +QR +wB +wB +wB +wB +wB +wB +wB +cd +QR +qF +qF +wB +fB +fB +dX +af +DP +Ho +hH +hH +hH +Ho +JW +dX +fB +fB +fB +fB +fB +bw +bw +wB +wB +wB +lo +lo +lo +lo +lo +MT +Up +Up +MT +Py +qr +qr +Up +qr +Up +qr +qr +Py +MT +Up +Up +MT +lo +"} +(77,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +Rn +Rn +Rn +Rn +Rn +dH +eU +xV +xV +xV +dH +Rn +Rn +Rn +Rn +dH +dH +xV +xV +xV +xV +xV +cd +QR +QR +cd +QR +Dc +Dc +Dc +Dc +Dc +cU +cU +wB +wB +wB +wB +wB +wB +cH +dX +wB +wB +fB +fB +dX +ag +ae +qK +Bu +sd +Bu +Ho +JW +GO +fB +fB +bC +bC +fB +fB +bw +bw +wB +wB +lo +lo +lo +lo +lo +MT +jj +Up +MT +jg +Up +Up +qr +Up +qr +Up +Up +WO +MT +iy +Up +MT +lo +"} +(78,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +Rn +Rn +Rn +Rn +Rn +dH +dH +xV +xV +dH +dH +Rn +Rn +Rn +Rn +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +vR +vR +Dc +Dc +Dc +Dc +Dc +Dc +cU +wB +wB +wB +wB +wB +dX +cI +dX +dX +fB +fB +fB +dX +ah +zF +Ho +hH +hH +hH +Ho +JW +dX +fB +fB +bC +fB +fB +fB +bw +bw +wB +wB +lo +lo +lo +lo +lo +jV +jS +Up +MT +Py +kV +qr +qr +Up +qr +qr +kV +Py +MT +jz +Up +MT +lo +"} +(79,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +dH +Rn +Rn +Rn +Rn +xV +xV +xV +xV +Rn +Rn +Rn +Rn +Rn +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +vR +vR +Dc +Dc +Dc +dj +Dc +Dc +cU +wB +wB +wB +wB +wB +dX +fB +cF +fB +fB +fB +fB +dX +dX +dX +ad +Ho +Ho +Ho +JW +dX +dX +fB +bC +bC +fB +fB +fB +fB +bw +wB +wB +lo +lo +lo +lo +lo +MT +jj +Up +MT +MT +MT +MT +iE +iE +iE +MT +MT +MT +MT +Up +Up +MT +lo +"} +(80,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +Rn +Rn +xV +xV +xV +xV +xV +Rn +Rn +Rn +Rn +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +vR +vR +Dc +Dc +Dc +Dc +Dc +Dc +cU +cU +wB +wB +wB +wB +bC +fB +fB +bw +bw +fB +fB +fB +fB +dX +Um +JW +JW +JW +Um +dX +fB +fB +bC +fB +fB +fB +bw +bw +bw +wB +wB +lo +lo +lo +lo +lo +MT +iw +iF +iE +uA +iI +uA +iP +iI +iP +uA +iI +uA +iE +iz +iw +MT +lo +"} +(81,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +Rn +Rn +xV +xV +xV +xV +xV +Rn +dJ +dJ +xV +xV +xV +xV +xV +xV +xV +xV +xV +ca +sF +Xr +Xr +iC +vR +Dc +Dc +Dc +vR +Dc +Dc +Dc +cU +wB +wB +wB +wB +bC +bC +bw +bw +wB +wB +bC +bC +fB +fB +dX +dX +GO +dX +dX +fB +fB +fB +fB +fB +fB +fB +bw +bw +wB +wB +wB +lo +lo +lo +lo +lo +MT +Tb +jh +iE +iI +uA +uA +iI +iU +iI +uA +uA +iI +iE +iA +Tb +MT +lo +"} +(82,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +dH +Rn +Rn +Rn +Rn +fg +xV +xV +xV +Rn +dJ +xV +xV +xV +xV +xV +xV +xV +ca +ca +ca +ca +ar +dI +ap +vR +dC +Dc +Dc +vR +vR +Dc +Dc +cU +cU +wB +wB +wB +wB +wB +bC +bw +wB +wB +wB +wB +bC +bC +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +dX +dX +GO +dX +dX +wB +wB +wB +lo +lo +lo +lo +lo +MT +Cj +MT +MT +MT +MT +MT +uA +qr +uA +MT +MT +MT +MT +MT +Cj +MT +lo +"} +(83,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +Rn +Rn +Rn +Rn +Rn +Rn +xV +xV +eJ +Rn +dJ +xV +xV +xV +xV +xV +xV +xV +ca +Me +oJ +JQ +JQ +au +dI +vR +dc +Dc +Dc +vR +vR +Dc +Dc +cU +wB +wB +wB +wB +wB +wB +bC +bw +wB +wB +wB +wB +wB +bC +fB +fB +fB +fB +fB +fB +fB +fB +fB +dX +dX +JW +JW +JW +dX +dX +wB +wB +lo +lo +lo +lo +lo +lo +lo +lo +lo +MT +MT +MT +iQ +Cj +iQ +MT +MT +MT +lo +lo +lo +lo +lo +"} +(84,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +Rn +Rn +Rn +Rn +dK +dK +Rn +Rn +Rn +Rn +xV +xV +xV +xV +ca +ca +ca +ca +az +eH +JQ +JQ +at +ca +vR +dd +Dc +Dc +Dc +Dc +Dc +Dc +cU +wB +wB +wB +wB +wB +wB +fB +bw +wB +wB +wB +wB +wB +bC +bB +fB +fB +fB +fB +fB +fB +fB +dX +Um +Wx +JW +JW +JW +JW +Um +dX +bp +lo +lo +lo +lo +lo +lo +lo +lo +lo +MT +MT +MT +uA +qr +uA +MT +MT +lo +lo +lo +lo +lo +lo +"} +(85,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +Rn +dH +dH +Rn +dK +eV +eO +eK +eE +Rn +xV +xV +xV +xV +ca +Me +sK +sK +Ce +eH +JQ +JQ +ca +ca +vR +dd +Dc +Dc +Dc +Dc +Dc +Dc +cU +cU +wB +wB +wB +wB +wB +fB +bw +wB +wB +wB +bw +wB +cu +fB +fB +bC +bC +fB +fB +fB +fB +dX +Wc +ac +JW +ip +JW +JW +JW +dX +bp +bp +mU +lo +lo +lo +lo +lo +lo +lo +MT +MT +MT +iP +uA +iP +MT +MT +lo +lo +lo +lo +lo +lo +"} +(86,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +Rn +Rn +eW +eP +eL +eF +Rn +xV +xV +xV +xV +ca +ca +VK +VK +VK +eH +dV +dR +ca +xV +vR +dD +Dc +Dc +Dc +Dc +Dc +Dc +Dc +cU +wB +wB +wB +wB +wB +fB +bw +bw +bw +bw +bw +cy +cv +fB +fB +fB +bC +fB +fB +fB +fB +dX +gg +ac +LO +Fr +Oa +JW +JW +GO +bp +Pn +mU +lo +lo +lo +lo +lo +lo +lo +MT +MT +MT +jb +iW +iR +MT +MT +lo +lo +lo +lo +lo +lo +"} +(87,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +Rn +eW +eP +eL +Rn +Rn +xV +xV +xV +xV +ca +ca +VK +VK +VK +eH +dW +dS +ca +xV +vR +da +Dc +Dc +dj +Dc +Dc +Dc +Dc +cU +wB +wB +dX +dX +fB +fB +fB +bw +bw +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +dX +kI +ac +JW +JW +JW +JW +JW +dX +Pn +Pn +mU +lo +lo +lo +lo +lo +lo +lo +MT +MT +MT +jc +Tb +iS +MT +MT +lo +lo +lo +lo +lo +lo +"} +(88,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +eY +eW +eP +eL +dK +Rn +xV +xV +xV +xV +ca +ca +VK +VK +VK +eH +dY +ca +ca +xV +da +da +Dc +Dc +Dc +Dc +Dc +vR +Dc +cU +wB +wB +dX +fB +fB +fB +fB +wB +wB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +bC +dX +Um +JW +JW +JW +JW +JW +Um +dX +Pn +Pn +mU +lo +lo +lo +lo +lo +lo +lo +lo +lo +MT +iV +iX +iT +MT +MT +lo +lo +lo +lo +lo +lo +"} +(89,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +eY +eX +eQ +eM +dK +Rn +xV +xV +xV +xV +ca +ca +VK +VK +xf +gd +ca +ca +xV +xV +da +Dc +Dc +dj +dj +Dc +vR +vR +Dc +cU +cU +wB +dX +fB +fB +fB +fB +fB +fB +fB +fB +bC +bC +fB +fB +fB +fB +fB +fB +fB +fB +bp +dX +dX +va +va +va +dX +dX +Pn +Pn +bq +mU +lo +lo +lo +lo +lo +lo +lo +lo +lo +MT +iP +uA +iP +MT +MT +lo +lo +lo +lo +lo +lo +"} +(90,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +eY +dK +eN +Rn +Rn +dJ +xV +xV +xV +ca +VK +VK +VK +Sq +ca +ca +xV +xV +xV +da +Dc +Dc +Dc +Dc +vR +vR +da +Dc +Dc +Dc +Dc +cO +fB +fB +fB +fB +fB +fB +fB +fB +dX +dX +dX +dX +dX +fB +fB +fB +fB +fB +Pn +Pn +dX +dX +dX +dX +dX +Pn +Pn +bq +bq +mU +MT +MT +MT +MT +MT +MT +MT +MT +lo +MT +iP +iU +iP +MT +MT +lo +lo +lo +lo +lo +lo +"} +(91,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +Rn +Rn +Rn +Rn +dJ +xV +xV +xV +ca +ca +ca +ca +ca +ca +xV +xV +xV +dJ +da +Dc +Dc +Dc +Dc +vR +vR +da +Dc +Dc +cV +dX +dX +cM +fB +fB +bC +bC +wB +wB +dX +Um +WA +wu +Iu +Um +dX +fB +fB +fB +fB +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +bq +mU +mU +MT +MT +Tb +MT +lO +MT +Tb +MT +MT +MT +uA +iP +MT +MT +MT +MT +MT +MT +MT +MT +lo +"} +(92,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +Rn +Rn +Rn +dJ +dJ +xV +xV +xV +xV +xV +xV +xV +xV +Rn +Rn +Rn +Rn +Dc +vR +vR +Dc +Dc +vR +df +da +Dc +Dc +Dc +Dc +cO +fB +fB +bC +bC +wB +wB +dX +ai +JW +Ho +Ho +Ho +JW +dX +dX +fB +fB +fB +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +bq +mU +mU +MT +jZ +jX +jW +jT +jQ +jO +iP +uA +MT +iP +uA +MT +MT +eS +eS +eS +eS +eS +MT +lo +"} +(93,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +dH +Rn +Rn +Rn +Rn +xV +xV +Rn +Rn +Rn +Rn +Rn +Rn +Rn +Rn +Rn +Dc +Dc +vR +Dc +Dc +vR +da +Dc +Dc +Dc +wB +wB +dX +fB +bC +bC +wB +wB +wB +af +DP +Ho +kd +kd +kd +Ho +JW +dX +fB +fB +fB +bV +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +mU +mU +MT +Cj +iU +iU +jU +jU +jU +iU +iU +Cj +iP +iU +MT +MT +eS +eS +eS +eS +eS +MT +lo +"} +(94,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +Rn +Rn +Rn +Rn +Rn +Rn +Rn +Rn +Rn +dK +Rn +Rn +Rn +dK +Dc +Dc +vR +Dc +Dc +Dc +Dc +Dc +Dc +Dc +wB +dX +dX +fB +bC +wB +wB +wB +wB +ag +ae +Ho +OU +Ad +OU +Ho +JW +GO +fB +fB +fB +Pn +bp +bp +Pn +Pn +Pn +Pn +Pn +Pn +bp +mU +mU +MT +MT +jk +HZ +tr +ix +tr +EE +uA +iQ +uA +iP +MT +MT +eS +eS +eS +eS +eS +MT +lo +"} +(95,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +dH +Rn +Rn +Rn +er +eh +ee +Rn +Rn +Rn +Rn +Rn +Rn +Rn +Dc +Dc +Dc +db +Dc +db +Dc +Dc +Dc +Dc +wB +wB +fB +fB +wB +wB +wB +wB +wB +ah +zF +Ho +sW +sW +sW +Ho +JW +dX +fB +fB +fB +Pn +bp +Pn +Pn +Pn +Pn +Pn +Pn +Pn +bp +bp +mU +MT +MT +jY +HZ +ix +jG +ix +EE +uA +iQ +iP +uA +MT +MT +MT +MT +Cj +eS +eS +Cj +lo +"} +(96,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +eB +Rn +er +es +xV +rC +Rn +Rn +Rn +Rn +xV +xV +xV +Dc +Dc +db +Dc +Dc +Dc +Dc +db +Dc +Dc +wB +wB +fB +wB +wB +wB +wB +wB +wB +dX +ai +JW +Ho +Ho +Ho +JW +dX +dX +fB +fB +fB +bp +bp +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +mU +MT +Cj +iU +iU +nk +nk +nk +iU +iU +Cj +iP +iU +MT +lo +lo +lo +MT +eS +eS +MT +lo +"} +(97,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +Rn +Rn +qD +et +ei +ef +Rn +dK +Rn +Rn +xV +xV +xV +vR +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +wB +wB +cP +fB +wB +wB +wB +wB +wB +wB +dX +Um +JW +JW +JW +Um +dX +fB +fB +fB +bW +bN +bN +bH +Pn +Pn +Pn +Pn +Os +RU +RU +Lt +bu +MT +MT +iP +iP +uA +Cj +iP +iP +uA +MT +uA +iP +MT +lo +lo +lo +MT +ab +ab +MT +lo +"} +(98,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dJ +Rn +qD +eu +ej +rC +Rn +Rn +dJ +xV +xV +xV +xV +vR +vR +cU +Dc +dl +dg +dg +dc +cU +cU +wB +wB +bw +bw +fB +fB +wB +wB +wB +wB +wB +dX +dX +GO +dX +dX +fB +fB +fB +bC +bX +bP +bP +bI +ka +RD +RD +RD +EM +EM +EM +RD +EM +MT +MT +MT +MT +MT +MT +MT +MT +MT +MT +iP +uA +MT +lo +lo +lo +MT +iB +qr +MT +lo +"} +(99,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dJ +Rn +ez +ek +ek +eg +Rn +Rn +dJ +xV +xV +xV +xV +vR +vR +cU +cU +dm +vR +vR +dd +cU +vR +wB +wB +wB +bw +bw +bw +bC +wB +wB +wB +wB +wB +bw +bw +fB +fB +fB +fB +fB +bC +bY +bP +bP +bI +ka +EM +EM +EM +EM +EM +EM +tA +gI +MT +jl +iU +iP +iP +iU +uA +uA +iP +iP +iU +iU +MT +MT +MT +MT +MT +iD +Up +MT +lo +"} +(100,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dJ +dJ +Rn +Rn +el +Rn +Rn +Rn +dJ +xV +xV +xV +xV +vR +vR +vR +cU +dn +vR +vR +dd +cU +vR +wB +wB +wB +wB +wB +bw +bC +bC +bw +wB +wB +wB +bw +bw +bw +bw +bw +bw +fB +fB +bZ +bQ +bQ +bJ +ka +wh +jq +jw +jt +jq +Sn +XD +IV +jm +iP +uA +uA +uA +uA +uA +iU +iU +jd +iW +iY +iP +iN +iz +iw +iF +Up +Up +MT +lo +"} +(101,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dJ +Rn +Rn +Rn +dJ +Rn +Rn +dH +xV +xV +xV +xV +vR +vR +vR +vR +dn +vR +vR +dd +cU +vR +wB +wB +wB +wB +wB +wB +fB +bw +bw +bw +wB +wB +bw +bw +bw +wB +wB +bw +bw +fB +bC +Pn +Pn +Pn +ka +wh +jr +mg +ju +jr +mg +jn +IV +MT +MT +Cj +MT +MT +ji +Cj +MT +jf +MT +Tb +iG +iU +Cj +iK +Tb +iG +Cj +Up +MT +lo +"} +(102,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +dH +ev +Rn +dJ +dJ +dH +eb +xV +xV +xV +xV +vR +vR +vR +vR +do +dh +dh +de +cU +vR +wB +wB +wB +wB +wB +wB +wB +wB +bw +bw +bw +bw +bw +bw +wB +wB +wB +wB +bw +fB +fB +bp +Pn +Pn +ka +wh +js +jx +jv +js +jp +jo +IV +jm +iP +uA +uA +uA +uA +uA +iU +iU +je +iX +iZ +iP +iO +iL +iJ +iH +Up +Up +MT +lo +"} +(103,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +ew +dH +dH +dH +dH +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +cU +cU +cU +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +bw +bw +bw +bw +wB +wB +wB +wB +wB +bw +fB +fB +Pn +bp +Pn +ka +EM +EM +EM +EM +EM +EM +pT +gI +MT +jl +iU +iP +iP +iU +uA +uA +iP +iP +iU +iU +MT +MT +MT +MT +MT +MT +MT +MT +lo +"} +(104,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +em +hF +ed +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +bw +wB +wB +wB +wB +wB +wB +wB +wB +fB +fB +Pn +Pn +Pn +ka +Li +Li +Li +EM +EM +EM +Li +EM +MT +MT +MT +MT +MT +MT +MT +MT +MT +MT +iP +uA +MT +lo +lo +lo +lo +lo +lo +lo +lo +"} +(105,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +fO +fO +fO +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +bw +bq +Pn +Pn +Pn +Pn +Pn +Pn +bO +Kp +Kp +Uw +bu +MT +MT +lo +lo +lo +lo +lo +lo +lo +MT +uA +iP +MT +lo +lo +lo +lo +lo +lo +lo +lo +"} +(106,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +wU +wU +wU +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +bq +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +bq +bq +bu +MT +MT +lo +lo +MT +MT +MT +MT +lo +MT +iP +uA +MT +lo +lo +lo +lo +lo +lo +lo +lo +"} +(107,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +bq +bq +Pn +Pn +Pn +Pn +Pn +Pn +Pn +bq +mU +mU +MT +MT +lo +lo +MT +MT +MT +MT +MT +MT +ja +ja +MT +MT +MT +lo +lo +lo +lo +lo +lo +"} +(108,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +mU +bq +bq +bD +Pn +Pn +bq +bq +bq +bq +mU +mU +MT +MT +lo +lo +MT +Cj +Co +iU +yN +Up +iI +iI +iA +Tb +MT +MT +MT +lo +lo +lo +lo +"} +(109,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +mU +mU +bq +bq +bq +bq +bq +mU +mU +mU +mU +mU +lo +lo +lo +lo +MT +MT +xs +jN +HU +iU +iI +iI +iV +iJ +iM +WO +Cj +lo +lo +lo +lo +"} +(110,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +lo +lo +lo +lo +MT +Cj +Co +iU +EK +Up +iI +iI +Up +qr +qr +WO +Cj +lo +lo +lo +lo +"} +(111,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +lo +lo +lo +lo +lo +MT +MT +MT +MT +MT +Cj +Cj +MT +MT +MT +MT +MT +lo +lo +lo +lo +"} +(112,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} +(113,1,2) = {" +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +vR +vR +vR +vR +vR +vR +vR +vR +vR +vR +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +wB +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +mU +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +lo +"} diff --git a/maps/tyrargo_rift.json b/maps/tyrargo_rift.json new file mode 100644 index 000000000000..bed2937ed454 --- /dev/null +++ b/maps/tyrargo_rift.json @@ -0,0 +1,55 @@ +{ + "map_name": "Tyrargo Rift", + "map_path": "map_files/Tyrargo_Rift", + "map_file": "Tyrargo_Rift.dmm", + "webmap_url": "LV624", + + "survivor_types": [ + "/datum/equipment_preset/survivor/army/standard" + ], + "synth_survivor_types": [ + "/datum/equipment_preset/synth/survivor/army" + ], + "CO_survivor_types": [ + "/datum/equipment_preset/survivor/army/co" + ], + "map_item_type": "/obj/item/map/lazarus_landing_map", + "announce_text": "Break, break, break. This is the USS Victory on a UA military emergency broadcast frequency to the inbound ###SHIPNAME###. Be advised, there is an ongoing xenomorph outbreak across the planet, massive civilian and military casualties confirmed.\n\nBreak, your orders from Brigadier General Hathaway are to deploy to Tyrargo City and assist local US army forces in repelling a xenomorph assault to facilitate civilian evacuation. Landing coordinates are november, three, one, six, five - hotel, two, niner, zero.\n\nBe advised, last transmission from army elements stated they are defending a civilian evacuation centre in the city museum, move quickly to secure the area, out.", + "survivor_message": "You are a US Army trooper, 1st Battalion of the 1st Air Cavalry. What began as a training exercise on this planet turned into a nightmare, the unexpected arrival of a massive xenomorph hive has turned this world into a warzone. You and your battalion have been tasked to defend the city of Tyrargo Rift to give time for the tens of thousands of civilians to be evacuated to a safe zone. It's been two weeks since the siege of the city began. The last few thousand cvilians are held up at the museum evacuation site. You and your squad have been holding this trench line by yourselves for the last week, but your ammo is almost gone and the bugs are making the largest push soon. It's time to prepare for the final fight.", + "monkey_types": [ + "farwa", + "neaera", + "stok" + ], + "environment_traits": { "Fog": true }, + "traits": [ + { + "Ground": true, + "Up": 1 + }, + { + "Ground": true, + "Up": 1, + "Down": -1 + }, + { + "Ground": true, + "Down": -1 + } + + ], + "nightmare_path": "maps/Nightmare/maps/tyrargo_rift/", + "xvx_hives": { + "xeno_hive_alpha": 0, + "xeno_hive_bravo": 0, + "xeno_hive_charlie": 70 + }, + "camouflage": "jungle", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} diff --git a/rust_g.dll b/rust_g.dll index 427d603a7283..2d4308d91b3d 100644 Binary files a/rust_g.dll and b/rust_g.dll differ diff --git a/sound/ambience/tyrargo_alert_1.ogg b/sound/ambience/tyrargo_alert_1.ogg new file mode 100644 index 000000000000..d7398cf6c419 Binary files /dev/null and b/sound/ambience/tyrargo_alert_1.ogg differ diff --git a/sound/ambience/tyrargo_alert_2.ogg b/sound/ambience/tyrargo_alert_2.ogg new file mode 100644 index 000000000000..3205251017ce Binary files /dev/null and b/sound/ambience/tyrargo_alert_2.ogg differ diff --git a/sound/ambience/tyrargo_alert_3.ogg b/sound/ambience/tyrargo_alert_3.ogg new file mode 100644 index 000000000000..65bf3339d17b Binary files /dev/null and b/sound/ambience/tyrargo_alert_3.ogg differ diff --git a/sound/ambience/tyrargo_alert_4.ogg b/sound/ambience/tyrargo_alert_4.ogg new file mode 100644 index 000000000000..7b81b5fcff98 Binary files /dev/null and b/sound/ambience/tyrargo_alert_4.ogg differ diff --git a/sound/ambience/tyrargo_alert_5.ogg b/sound/ambience/tyrargo_alert_5.ogg new file mode 100644 index 000000000000..249a7fee0f50 Binary files /dev/null and b/sound/ambience/tyrargo_alert_5.ogg differ diff --git a/sound/ambience/tyrargo_alert_6.ogg b/sound/ambience/tyrargo_alert_6.ogg new file mode 100644 index 000000000000..e2577c9818bd Binary files /dev/null and b/sound/ambience/tyrargo_alert_6.ogg differ diff --git a/sound/ambience/tyrargo_city_ambience.ogg b/sound/ambience/tyrargo_city_ambience.ogg new file mode 100644 index 000000000000..c6df80b45de2 Binary files /dev/null and b/sound/ambience/tyrargo_city_ambience.ogg differ diff --git a/sound/ambience/tyrargo_sewer_ambience.ogg b/sound/ambience/tyrargo_sewer_ambience.ogg new file mode 100644 index 000000000000..1e6c9a33fbf1 Binary files /dev/null and b/sound/ambience/tyrargo_sewer_ambience.ogg differ diff --git a/sound/ambience/tyrargo_underground_1.ogg b/sound/ambience/tyrargo_underground_1.ogg new file mode 100644 index 000000000000..03cb0ba20c37 Binary files /dev/null and b/sound/ambience/tyrargo_underground_1.ogg differ diff --git a/sound/ambience/tyrargo_underground_2.ogg b/sound/ambience/tyrargo_underground_2.ogg new file mode 100644 index 000000000000..c7e836ede88d Binary files /dev/null and b/sound/ambience/tyrargo_underground_2.ogg differ diff --git a/sound/ambience/tyrargo_underground_3.ogg b/sound/ambience/tyrargo_underground_3.ogg new file mode 100644 index 000000000000..00884a2e4915 Binary files /dev/null and b/sound/ambience/tyrargo_underground_3.ogg differ diff --git a/sound/ambience/tyrargo_underground_4.ogg b/sound/ambience/tyrargo_underground_4.ogg new file mode 100644 index 000000000000..cdd6395843c0 Binary files /dev/null and b/sound/ambience/tyrargo_underground_4.ogg differ diff --git a/strings/metatips.txt b/strings/metatips.txt index 00bb827de69f..41fa1f56dd13 100644 --- a/strings/metatips.txt +++ b/strings/metatips.txt @@ -21,3 +21,4 @@ Control of intelligence is important: be it for retrieving it as marine, or deny If the lobby music is too loud or bothering you, you can disable it in Preferences tab at top right. Maps can and will be unpredictably modified by the Nightmare system - stay frosty while roaming around! You can go to GitHub to view code of the game and propose modifications of your own. +Resisting can interrupt many different wind-up actions such as de-oving. diff --git a/tgui/packages/tgui/constants.ts b/tgui/packages/tgui/constants.ts index 8576bda4fa5c..5abcf8abd4a6 100644 --- a/tgui/packages/tgui/constants.ts +++ b/tgui/packages/tgui/constants.ts @@ -257,6 +257,11 @@ export const RADIO_CHANNELS = [ freq: 1473, color: '#9b0612', }, + { + name: 'Army', + freq: 1476, + color: '#318779', + }, { name: 'Sentry', freq: 1480, diff --git a/tgui/packages/tgui/interfaces/Orbit/index.tsx b/tgui/packages/tgui/interfaces/Orbit/index.tsx index 40112ca948cf..0f96a77439ab 100644 --- a/tgui/packages/tgui/interfaces/Orbit/index.tsx +++ b/tgui/packages/tgui/interfaces/Orbit/index.tsx @@ -281,6 +281,7 @@ const marineSplitter = (members: Array) => { const SOFSquad: Array = []; const other: Array = []; const provost: Array = []; + const ArmySquad: Array = []; members.forEach((x) => { if (x.mutiny_status?.includes('Mutineer')) { @@ -311,6 +312,8 @@ const marineSplitter = (members: Array) => { SOFSquad.push(x); } else if (x.job?.includes('Provost')) { provost.push(x); + } else if (x.job?.includes('Army')) { + ArmySquad.push(x); } else { other.push(x); } @@ -331,6 +334,7 @@ const marineSplitter = (members: Array) => { buildSquadObservable('SOF', 'red', SOFSquad), buildSquadObservable('Other', 'grey', other), buildSquadObservable('Provost', 'red', provost), + buildSquadObservable('Army', 'green', ArmySquad), ]; return squads; };