diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index c813d5a4eda8..c150e1f70de9 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_CAPE_RIVER "Cape River Mining Colony" #define MAP_CHINOOK "Chinook 91 GSO" //admin level #define MAP_ROSTOCK "SSV Rostock" //UPP Warship diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index e9cc84335518..dc83f43491ac 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -135,3 +135,6 @@ #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',) + +// Cape River +#define AMBIENCE_CULT 'sound/soundscape/eerie1.ogg' diff --git a/code/game/area/CapeRiverColony.dm b/code/game/area/CapeRiverColony.dm new file mode 100644 index 000000000000..04f7da1b8e50 --- /dev/null +++ b/code/game/area/CapeRiverColony.dm @@ -0,0 +1,423 @@ +//CAPE RIVER COLONY AREAS-----------------------------// + +/area/caperiver + name = "Cape River Mining Colony" + icon_state = "unknown" + can_build_special = TRUE + powernet_name = "ground" + temperature = 308.7 //kelvin, 35c, 95f + minimap_color = MINIMAP_MARS_DIRT + +//parent types + +/area/caperiver/indoors + name = "Cape River - Indoors" + ceiling = CEILING_METAL + ambience_exterior = AMBIENCE_BIGRED +// ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +/area/caperiver/outdoors + name = "Cape River - Outdoors" + ceiling = CEILING_NONE + ambience_exterior = AMBIENCE_BIGRED +// ambience_exterior = AMBIENCE_CITY +// soundscape_interval = 25 + +/area/caperiver/oob + name = "Out Of Bounds" + icon_state = "cliff_blocked" + ceiling = CEILING_MAX + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + minimap_color = MINIMAP_AREA_OOB + requires_power = FALSE + ambience_exterior = AMBIENCE_BIGRED + ceiling_muffle = FALSE + +//// -- Outdoors -- \\\\ + +// - Cave - \\ + +/area/caperiver/indoors/caves + name = "Caves" + icon_state = "cave" + ambience_exterior = AMBIENCE_HYBRISA_CAVES + soundscape_playlist = SCAPE_PL_LV759_DEEPCAVES + ceiling = CEILING_UNDERGROUND_BLOCK_CAS + ceiling_muffle = FALSE + minimap_color = MINIMAP_AREA_MINING + unoviable_timer = FALSE + always_unpowered = TRUE + +/area/caperiver/indoors/caves/central + name = "Caves - Central" + +/area/caperiver/indoors/caves/sw + name = "Caves - South West" + icon_state = "caves_sw" + +/area/caperiver/indoors/caves/se + name = "Caves - South East" + icon_state = "bunker01_caves" + ambience_exterior = AMBIENCE_CULT + soundscape_interval = 40 + base_muffle = MUFFLE_HIGH + +/area/caperiver/indoors/caves/s + name = "Caves - South" + icon_state = "bunker01_caves_outpost" + +/area/caperiver/indoors/caves/nw + name = "Caves - North West" + icon_state = "caves_north" + +/area/caperiver/indoors/caves/n + name = "Caves - North" + icon_state = "caves_north" + +/area/caperiver/indoors/caves/ne + name = "Caves - North East" + icon_state = "caves_lambda" + ambience_exterior = AMBIENCE_CULT + soundscape_interval = 40 + base_muffle = MUFFLE_MEDIUM + +/area/caperiver/indoors/caves/e + name = "Caves - East" + icon_state = "caves_east" + +/area/caperiver/indoors/caves/w + name = "Caves - West" + icon_state = "caves_virology" + +// - Road - \\ + +/area/caperiver/outdoors/road + name = "Colony Roads" + minimap_color = MINIMAP_SNOW + icon_state = "shuttle" + +/area/caperiver/outdoors/road/south + name = "Colony Roads - South" + linked_lz = list(DROPSHIP_LZ1, DROPSHIP_LZ2) + +/area/caperiver/outdoors/road/central/antiweed + linked_lz = DROPSHIP_LZ2 + +/area/caperiver/outdoors/road/central + +/area/caperiver/outdoors/road/west + name = "Colony Roads - West" + +/area/caperiver/outdoors/road/west/antiweed + linked_lz = DROPSHIP_LZ1 + +/area/caperiver/outdoors/road/north + name = "Colony Roads - North" + +// - Scrublands - \\ + +/area/caperiver/outdoors/scrublands + name = "Scrublands" + icon_state = "valley" + +/area/caperiver/outdoors/scrublands/south + name = "Scrublands - South" + icon_state = "valley_south" + +/area/caperiver/outdoors/scrublands/south/antiweed + linked_lz = DROPSHIP_LZ1 + +/area/caperiver/outdoors/scrublands/south_east + name = "Scrublands - South East" + icon_state = "valley_south" + linked_lz = DROPSHIP_LZ2 + +/area/caperiver/outdoors/scrublands/west + name = "Scrublands - West" + icon_state = "valley_west" + +/area/caperiver/outdoors/scrublands/west/antiweed + linked_lz = DROPSHIP_LZ1 + +/area/caperiver/outdoors/scrublands/central + name = "Scrublands - Central" + icon_state = "valley" + +/area/caperiver/outdoors/scrublands/north + name = "Scrublands - North" + icon_state = "valley_north" + unoviable_timer = FALSE + +/area/caperiver/outdoors/scrublands/north_west + name = "Scrublands - North West" + icon_state = "valley_north_west" + unoviable_timer = FALSE + +/area/caperiver/outdoors/scrublands/north_east + name = "Scrublands - North East" + icon_state = "valley_north_east" + unoviable_timer = FALSE + +/area/caperiver/outdoors/scrublands/lz_cave + name = "Scrublands - Landing Zone Cave" + icon_state = "valley_south_excv" + ceiling = CEILING_SANDSTONE_ALLOW_CAS + minimap_color = MINIMAP_AREA_CELL_MAX + linked_lz = DROPSHIP_LZ1 + +/area/caperiver/outdoors/scrublands/nw_cave + name = "Scrublands - North West Cave" + icon_state = "valley_south_excv" + ceiling = CEILING_SANDSTONE_ALLOW_CAS + minimap_color = MINIMAP_AREA_CELL_MAX + +// - Mining Base Exterior - \\ + +/area/caperiver/outdoors/mining_base_exterior + name = "Mining Base Exterior" + icon_state = "mining" + +/area/caperiver/outdoors/mining_base_exterior/south + name = "Mining Base - South Of Chasm - Exterior" + icon_state = "south" + +/area/caperiver/outdoors/mining_base_exterior/north + name = "Mining Base - North Of Chasm - Exterior" + icon_state = "north" + unoviable_timer = FALSE + +// - Con-Am Base Exterior - \\ + +/area/caperiver/outdoors/con_am_exterior + name = "Con-Amalagated Base Exterior" + icon_state = "mining" + +/area/caperiver/outdoors/con_am_exterior/south + name = "Con-Amalagated Base - South Of Chasm - Exterior" + icon_state = "south" + +/area/caperiver/outdoors/con_am_exterior/south/antiweed + linked_lz = DROPSHIP_LZ2 + +/area/caperiver/outdoors/con_am_exterior/north + name = "Con-Amalagated Base - North Of Chasm - Exterior" + icon_state = "north" + unoviable_timer = FALSE + +// - Misc - \\ + +/area/caperiver/outdoors/bushlands + name = "Bushlands" + icon_state = "south" + linked_lz = list(DROPSHIP_LZ1, DROPSHIP_LZ2) + +/area/caperiver/outdoors/chasm + name = "Chasm" + icon_state = "shuttle" + always_unpowered = TRUE + minimap_color = MINIMAP_WATER + +//// -- Indoors -- \\\\ + +// - Cape River Base Interior - \\ + +/area/caperiver/indoors/miningbase + name = "Cape River - Mining Base" + icon_state = "mining" + minimap_color = MINIMAP_AREA_COLONY_SPACE_PORT + +/area/caperiver/indoors/miningbase/engi + name = "Cape River - Engineering" + icon_state = "engine" + minimap_color = MINIMAP_AREA_ENGI + +/area/caperiver/indoors/miningbase/dorm + name = "Cape River - Dormitory" + icon_state = "maint_dormitory" + +/area/caperiver/indoors/miningbase/checkpoint + name = "Cape River - Entry Checkpoint" + icon_state = "security" +// minimap_color = MINIMAP_AREA_SEC_CAVE + +/area/caperiver/indoors/miningbase/security + name = "Cape River - Security" + icon_state = "security" + minimap_color = MINIMAP_AREA_SEC + unoviable_timer = FALSE + +/area/caperiver/indoors/miningbase/hydro + name = "Cape River - Hydroponics" + icon_state = "hydro" +// minimap_color = MINIMAP_AREA_JUNGLE + +/area/caperiver/indoors/miningbase/rec + name = "Cape River - Recreation" + icon_state = "bar" + +/area/caperiver/indoors/miningbase/admin + name = "Cape River - Administration" + icon_state = "bunker01_command" + minimap_color = MINIMAP_AREA_COMMAND + unoviable_timer = FALSE + +/area/caperiver/indoors/miningbase/medical + name = "Cape River - Medical Bay" + icon_state = "medbay" + unoviable_timer = FALSE + +// - Con-Am 'Corestone Base' Interior - \\ + +/area/caperiver/indoors/conambase + name = "Con-Am 'Corestone Base'" + icon_state = "head_quarters" + minimap_color = MINIMAP_AREA_RESEARCH + +/area/caperiver/indoors/conambase/delivery + name = "Con-Am 'Corestone Base' - Delivery" + icon_state = "maint_cargo" + +/area/caperiver/indoors/conambase/medical + name = "Con-Am 'Corestone Base' - Medical" + icon_state = "Holodeck" + +/area/caperiver/indoors/conambase/bunker + name = "Con-Am 'Corestone Base' - Bunker" + icon_state = "bunker01_main" + minimap_color = MINIMAP_AREA_CAVES_DEEP + +/area/caperiver/indoors/conambase/recreational + name = "Con-Am 'Corestone Base' - Recreational" + icon_state = "maint_bar" + +/area/caperiver/indoors/conambase/engi + name = "Con-Am 'Corestone Base' - Engineering" + icon_state = "engine_waste" + +/area/caperiver/indoors/conambase/support + name = "Con-Am 'Corestone Base' - Support Services" + icon_state = "prototype_engine" + +/area/caperiver/indoors/conambase/command + name = "Con-Am 'Corestone Base' - Command Sector" + icon_state = "bridge" + minimap_color = MINIMAP_AREA_COMMAND + unoviable_timer = FALSE + +/area/caperiver/indoors/conambase/research_w + name = "Con-Am 'Corestone Base' - Research/West" + icon_state = "research" + unoviable_timer = FALSE + +/area/caperiver/indoors/conambase/research_e + name = "Con-Am 'Corestone Base' - Research/East" + icon_state = "research_dock" + unoviable_timer = FALSE + +/area/caperiver/indoors/conambase/unknown + name = "c^n-Am S 'Co)es#ne B@se' A - V Un&ble To Dis@ern E S^ruct&re Func&%*# E. U.S -- &#AAA#.." + icon_state = "research_dock" + minimap_color = MINIMAP_DRAWING_YELLOW + ambience_exterior = AMBIENCE_CULT + soundscape_interval = 40 + ceiling_muffle = FALSE + ceiling = CEILING_UNDERGROUND_METAL_BLOCK_CAS + requires_power = FALSE + +// - Misc - \\ + +/area/caperiver/indoors/processing + name = "Mineral Processing" + icon_state = "head_quarters" + minimap_color = MINIMAP_AREA_ENGI + +/area/caperiver/indoors/clf_dropship + name = "UD-9M 'Dogbite'" + icon_state = "head_quarters" + requires_power = FALSE + minimap_color = MINIMAP_AREA_COLONY + +//// -- Telecomms -- \\\\ + +/area/caperiver/telecomms + name = "Cape River - Communications Relay" + ceiling = CEILING_METAL + icon_state = "tutorial" + ambience_exterior = AMBIENCE_BIGRED + +/area/caperiver/telecomms/telecomm_1 + name = "Cape River - Mining Base - Communications Relay" + +/area/caperiver/telecomms/telecomm_2 + name = "Cape River - Scrublands - Exterior Communications Relay" + ceiling = CEILING_NONE + linked_lz = DROPSHIP_LZ1 + +/area/caperiver/telecomms/telecomm_3 + name = "Con-Am 'Corestone Base' - Primary Communications Relay" + linked_lz = DROPSHIP_LZ2 + +/area/caperiver/telecomms/telecomm_4 + name = "Con-Am 'Corestone Base' - Cave - Ancillery Communications Relay" + ceiling = CEILING_SANDSTONE_ALLOW_CAS + linked_lz = DROPSHIP_LZ2 + +//// -- Landing Zones -- \\\\ + +// - Landing Zone 1 - \\ + +/area/caperiver/outdoors/landing_zone_1 + name = "Cape River Mining Colony - Cargo Transfer - Landing Zone One" + icon_state = "away1" + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_CELL_HIGH + linked_lz = DROPSHIP_LZ1 + +/area/caperiver/outdoors/landing_zone_1/interior + name = "Cape River Mining Colony - Service Structures - Landing Zone One" + icon_state = "away" + ceiling = CEILING_METAL + is_landing_zone = TRUE + linked_lz = DROPSHIP_LZ1 + minimap_color = MINIMAP_AREA_CELL_MED + +/area/caperiver/outdoors/landing_zone_1/cave + name = "Cape River Mining Colony - East Cave Service Entrance - Landing Zone One" + icon_state = "away" + ceiling = CEILING_SANDSTONE_ALLOW_CAS + is_landing_zone = TRUE + linked_lz = DROPSHIP_LZ1 + minimap_color = MINIMAP_AREA_CELL_MAX + +// Landing Zone 2 + +/area/caperiver/outdoors/landing_zone_2 + name = "Cape River - Unknown Encampment - Landing Zone Two" + icon_state = "away2" + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_CELL_HIGH + linked_lz = DROPSHIP_LZ2 + +/area/caperiver/outdoors/landing_zone_2/river + name = "Cape River - Unknown Encampment - River - Landing Zone Two" + is_landing_zone = TRUE + linked_lz = DROPSHIP_LZ2 + always_unpowered = TRUE + minimap_color = MINIMAP_WATER + +/area/caperiver/outdoors/landing_zone_2/interior + name = "Cape River - Unknown Encampment - Interior Structure - Landing Zone Two" + icon_state = "away" + ceiling = CEILING_METAL + is_landing_zone = TRUE + linked_lz = DROPSHIP_LZ2 + minimap_color = MINIMAP_AREA_CELL_MED + +/area/caperiver/outdoors/landing_zone_2/cave + name = "Cape River - Unknown Encampment - Cave System - Landing Zone Two" + icon_state = "away3" + ceiling = CEILING_SANDSTONE_ALLOW_CAS + linked_lz = DROPSHIP_LZ2 + minimap_color = MINIMAP_AREA_CELL_MAX + diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 6866a3d5d192..d19436becbf3 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -288,6 +288,18 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname autoname = TRUE +/obj/structure/machinery/door/airlock/prison_hatch/brown + icon = 'icons/obj/structures/doors/brown_hatch_blue_stripe.dmi' + +/obj/structure/machinery/door/airlock/prison_hatch/brown/autoname + autoname = TRUE + +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt + icon = 'icons/obj/structures/doors/brown_hatch.dmi' + +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname + autoname = TRUE + //ALMAYER AIRLOCKS /obj/structure/machinery/door/airlock/almayer diff --git a/code/game/objects/effects/decals/floor_symbol.dm b/code/game/objects/effects/decals/floor_symbol.dm index e1c6e77d3409..f8a509e67caa 100644 --- a/code/game/objects/effects/decals/floor_symbol.dm +++ b/code/game/objects/effects/decals/floor_symbol.dm @@ -67,6 +67,44 @@ /obj/effect/decal/floor_symbol/wy_3x1/right icon_state = "wy_right" +//// Con-Am \\\\ + +/obj/effect/decal/floor_symbol/con_am + name = "\improper Con-Am Logo" + icon_state = "conam_directional" + +/obj/effect/decal/floor_symbol/con_am/left + icon_state = "conam_directional1" + +/obj/effect/decal/floor_symbol/con_am/right + icon_state = "conam_directional2" + +// Bigger Alt + +/obj/effect/decal/floor_symbol/con_am/alt + icon_state = "conam_big_dir" + +/obj/effect/decal/floor_symbol/con_am/alt/bottom_2 + icon_state = "conam_big_dir1" + +/obj/effect/decal/floor_symbol/con_am/alt/bottom_3 + icon_state = "conam_big_dir2" + +/obj/effect/decal/floor_symbol/con_am/alt/bottom_4 + icon_state = "conam_big_dir3" + +/obj/effect/decal/floor_symbol/con_am/alt/top_1 + icon_state = "conam_big_dir4" + +/obj/effect/decal/floor_symbol/con_am/alt/top_2 + icon_state = "conam_big_dir5" + +/obj/effect/decal/floor_symbol/con_am/alt/top_3 + icon_state = "conam_big_dir6" + +/obj/effect/decal/floor_symbol/con_am/alt/top_4 + icon_state = "conam_big_dir7" + /obj/effect/decal/floor_symbol/uscm_3x3 name = "\improper USCM Logo" icon_state = "uscm_center" @@ -118,3 +156,46 @@ /obj/effect/decal/floor_symbol/uscm_3x3/westface/northwest dir = NORTHWEST + +/obj/effect/decal/conam + icon = 'icons/effects/conam_logo_big.dmi' + icon_state = "full_conam" + layer = TURF_LAYER + plane = FLOOR_PLANE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + +/obj/effect/decal/conam/big_logo + icon_state = "full_conam" + +/obj/effect/decal/conam/big_logo/damage + icon_state = "full_conam_damage" + +/obj/effect/decal/conam/big_logo/damage_1 + icon_state = "full_conam_damage_1" + +/obj/effect/decal/conam/half_logo + icon_state = "half_conam" + +/obj/effect/decal/conam/half_logo/damage + icon_state = "half_conam_damage" + +/obj/effect/decal/conam/half_logo/damage_1 + icon_state = "half_conam_damage_1" + +/obj/effect/decal/conam/long_logo_left + icon_state = "long_conam_left" + +/obj/effect/decal/conam/long_logo_left/damage + icon_state = "long_conam_left_damage" + +/obj/effect/decal/conam/long_logo_left/damage_1 + icon_state = "long_conam_left_damage_1" + +/obj/effect/decal/conam/long_logo_right + icon_state = "long_conam_right" + +/obj/effect/decal/conam/long_logo_right/damage + icon_state = "long_conam_right_damage" + +/obj/effect/decal/conam/long_logo_right/damage_1 + icon_state = "long_conam_right_damage_1" diff --git a/code/game/objects/effects/decals/posters.dm b/code/game/objects/effects/decals/posters.dm index b16b038f0f0d..8334ba3d0d15 100644 --- a/code/game/objects/effects/decals/posters.dm +++ b/code/game/objects/effects/decals/posters.dm @@ -250,3 +250,14 @@ /obj/structure/sign/poster/upp/Initialize() serial_number = pick(88,89,90,91,92,93,94,95,96,97,98,99,100) .=..() + +//////////////// +//Abyssal Poster// +//////////////// + +/obj/structure/sign/poster/conam + icon_state = "poster101" + +/obj/structure/sign/poster/conam/Initialize() + serial_number = 101 + .=..() diff --git a/code/game/objects/effects/decals/posters/poster_list.dm b/code/game/objects/effects/decals/posters/poster_list.dm index 76453747f88f..df2df09f65a4 100644 --- a/code/game/objects/effects/decals/posters/poster_list.dm +++ b/code/game/objects/effects/decals/posters/poster_list.dm @@ -511,3 +511,8 @@ Template icon_state="poster100" name = "We Forge A Path Into the Stars" desc = "The head of a man in a UPPAC EVA suit smiles looking not at you, but up to the right of the poster." + +/datum/poster/poster_101 + icon_state="poster101" + name = "Con-Amalagated poster" + desc = "A poster for the con-am corporation. It looks far more colorful than the drab looking station it is found on." diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index 36007737455d..30f5fd7204c0 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -321,6 +321,33 @@ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") story_text = "You are a doctor fighting for the Colonial Liberation Front. Taking advantage of the chaos after most security forces present in the city were diverted to the lab, your cell launched an assault on the offices nearby, knowing that a company big shot would be present. The raid was a success with minimal losses, but the expected security response never arrived. In fact, the whole city seems to have gone quiet..." +//Cape River CLF survivors// + +/obj/effect/landmark/survivor_spawner/clf/caperiver + intro_text = list("

You are a survivor of a crash landing!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") + story_text = "You are a soldier fighting for the Colonial Liberation Front. Your cell is part of a larger operation intended to conduct a large scale raid of this Corporate held colony. You were to land at a nearby hidden base in preperation for the assault, however some form of electromagnetic pulse knocked your ships engines offline mid flight. Most of your cell survived the hard landing, however your radios indicate the hidden base has gone dark. In fact, the colony seems to be too quiet..." + +/obj/effect/landmark/survivor_spawner/clf_lead/caperiver + intro_text = list("

You are a survivor of a crash landing!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") + story_text = "You are the leader of a squad fighting for the Colonial Liberation Front. . Your cell is part of a larger operation intended to conduct a large scale raid of this Corporate held colony. You were to land at a nearby hidden base in preperation for the assault, however some form of electromagnetic pulse knocked your ships engines offline mid flight. Most of your cell survived the hard landing, however your radios indicate the hidden base has gone dark. In fact, the colony seems to be too quiet..." + +/obj/effect/landmark/survivor_spawner/clf_engi/caperiver + intro_text = list("

You are a survivor of a crash landing!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") + story_text = "You are an engineer fighting for the Colonial Liberation Front. . Your cell is part of a larger operation intended to conduct a large scale raid of this Corporate held colony. You were to land at a nearby hidden base in preperation for the assault, however some form of electromagnetic pulse knocked your ships engines offline mid flight. Most of your cell survived the hard landing, however your radios indicate the hidden base has gone dark. In fact, the colony seems to be too quiet..." + +/obj/effect/landmark/survivor_spawner/clf_medic/caperiver + intro_text = list("

You are a survivor of a crash landing!

",\ + "You ARE aware of the xenomorph threat.",\ + "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") + story_text = "You are a doctor fighting for the Colonial Liberation Front. . Your cell is part of a larger operation intended to conduct a large scale raid of this Corporate held colony. You were to land at a nearby hidden base in preperation for the assault, however some form of electromagnetic pulse knocked your ships engines offline mid flight. Most of your cell survived the hard landing, however your radios indicate the hidden base has gone dark. In fact, the colony seems to be too quiet..." + + //Weyland-Yutani Survivors// /obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl diff --git a/code/game/objects/effects/spawners/faction_spawners.dm b/code/game/objects/effects/spawners/faction_spawners.dm index 2daf6392e5e7..8dc31b0a78d8 100644 --- a/code/game/objects/effects/spawners/faction_spawners.dm +++ b/code/game/objects/effects/spawners/faction_spawners.dm @@ -61,7 +61,8 @@ guns = list( /obj/item/weapon/gun/smg/bizon/upp = /obj/item/ammo_magazine/smg/bizon, /obj/item/weapon/gun/rifle/type71 = /obj/item/ammo_magazine/rifle/type71, - /obj/item/weapon/gun/rifle/type71/carbine = /obj/item/ammo_magazine/rifle/type71 + /obj/item/weapon/gun/rifle/type71/carbine = /obj/item/ammo_magazine/rifle/type71, + /obj/item/weapon/gun/rifle/ak4047 = /obj/item/ammo_magazine/rifle/ak4047 ) /obj/effect/spawner/random/gun/upp_primary/lowchance @@ -73,7 +74,7 @@ icon_state = "loot_rifle_50" /obj/effect/spawner/random/gun/upp_primary/highchance - spawn_nothing_percentage = 80 + spawn_nothing_percentage = 20 icon_state = "loot_rifle_80" /obj/effect/spawner/random/gun/upp_secondary diff --git a/code/game/objects/effects/spawners/random.dm b/code/game/objects/effects/spawners/random.dm index c7c3704d13be..c01f305900ea 100644 --- a/code/game/objects/effects/spawners/random.dm +++ b/code/game/objects/effects/spawners/random.dm @@ -518,7 +518,6 @@ guns = list( /obj/item/weapon/gun/rifle/mar40/lmg = /obj/item/ammo_magazine/rifle/mar40/lmg, /obj/item/weapon/gun/shotgun/merc = null, - /obj/item/weapon/gun/launcher/rocket/anti_tank/disposable = /obj/item/prop/folded_anti_tank_sadar, /obj/item/weapon/gun/rifle/m41a = /obj/item/ammo_magazine/rifle, /obj/item/weapon/gun/shotgun/combat = null, /obj/item/weapon/gun/pistol/vp78 = /obj/item/ammo_magazine/pistol/vp78, @@ -587,3 +586,36 @@ /obj/structure/ob_ammo/warhead/cluster ) return pick(spawnables) + +// Materials + +/obj/effect/spawner/random/mats + name = "random mats" + desc = "This is a random material spawner." + icon_state = "supply" + +/obj/effect/spawner/random/mats/item_to_spawn() + var/list/spawnables = list( + /obj/item/stack/sheet/plasteel/med_small_stack, + /obj/item/stack/sheet/plasteel/medium_stack, + /obj/item/stack/sheet/metal/small_stack, + /obj/item/stack/sheet/metal/med_small_stack, + /obj/item/stack/sheet/metal/medium_stack, + /obj/item/stack/sheet/metal/large_stack, + /obj/item/stack/sheet/wood/large_stack, + /obj/item/stack/sheet/cardboard/small_stack, + /obj/item/stack/sheet/cardboard/full_stack, + /obj/item/stack/sandbags/small_stack, + /obj/item/stack/sandbags/large_stack, + /obj/item/stack/sandbags_empty/full + ) + return pick(spawnables) + +/obj/effect/spawner/random/mats/lowchance + spawn_nothing_percentage = 80 + +/obj/effect/spawner/random/mats/midchance + spawn_nothing_percentage = 50 + +/obj/effect/spawner/random/mats/highchance + spawn_nothing_percentage = 20 diff --git a/code/game/objects/items/props/rocks.dm b/code/game/objects/items/props/rocks.dm index df734c223084..e0a5fd3b23d6 100644 --- a/code/game/objects/items/props/rocks.dm +++ b/code/game/objects/items/props/rocks.dm @@ -58,3 +58,6 @@ /obj/structure/prop/colorable_rock/colorable/alt icon_state = "ground_colorable_alt" + +/obj/structure/prop/colorable_rock/colorable/alt1 + icon_state = "ground_colorable_1" diff --git a/code/game/objects/prop.dm b/code/game/objects/prop.dm index d92dc92ccad2..5055e8bf7701 100644 --- a/code/game/objects/prop.dm +++ b/code/game/objects/prop.dm @@ -392,3 +392,80 @@ else bound_height = 96 bound_width = 192 + +/obj/structure/prop/invuln/dense/cliff_wall + name = "Cliff Wall" + desc = "Massive cliff wall, seems impassable." + icon = 'icons/obj/structures/props/natural/huge_canyon.dmi' + icon_state = "canyon_wall" + layer = OBJ_LAYER + +/obj/structure/prop/invuln/dense/cliff_wall/alt + icon_state = "canyon_wall_alt" + +/obj/structure/prop/invuln/dense/cliff_wall/short + icon_state = "canyon_wall_short" + +/obj/structure/prop/invuln/dense/cliff_wall/short_alt + icon_state = "canyon_wall_short_alt" + +/obj/structure/prop/invuln/dense/cliff_wall/left_long + icon_state = "canyon_wall_long_left" + +/obj/structure/prop/invuln/dense/cliff_wall/left_short + icon_state = "canyon_wall_short_left" + +/obj/structure/prop/invuln/dense/cliff_wall/right_long + icon_state = "canyon_wall_long_right" + +/obj/structure/prop/invuln/dense/cliff_wall/right_short + icon_state = "canyon_wall_short_right" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable + icon = 'icons/obj/structures/props/natural/huge_canyon_colorable.dmi' + icon_state = "canyon_wall" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/alt + icon_state = "canyon_wall_alt" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/short + icon_state = "canyon_wall_short" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/short_alt + icon_state = "canyon_wall_short_alt" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/left_long + icon_state = "canyon_wall_long_left" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/left_short + icon_state = "canyon_wall_short_left" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/right_long + icon_state = "canyon_wall_long_right" + +/obj/structure/prop/invuln/dense/cliff_wall/colorable/right_short + icon_state = "canyon_wall_short_right" + +// Fake railings + +/obj/structure/prop/fake/railing + name = "handrail" + desc = "A railing, for your hands. Woooow." + icon = 'icons/obj/structures/handrail.dmi' + icon_state = "handrail_strata" + unslashable = TRUE + unacidable = TRUE + explo_proof = FALSE + +/obj/structure/prop/fake/railing/update_icon() + overlays.Cut() + switch(dir) + if(SOUTH) + layer = ABOVE_MOB_LAYER + if(NORTH) + layer = initial(layer) - 0.01 + else + layer = initial(layer) + +/obj/structure/prop/fake/railing/strata + icon_state = "handrail_strata" diff --git a/code/game/objects/structures/blocker.dm b/code/game/objects/structures/blocker.dm index 8aafd66434e4..9cdc25c12178 100644 --- a/code/game/objects/structures/blocker.dm +++ b/code/game/objects/structures/blocker.dm @@ -172,3 +172,9 @@ desc = "It is a machine that pumps fuel around the ship." invisibility = 101 mouse_opacity = MOUSE_OPACITY_TRANSPARENT + +/obj/structure/blocker/forcefield/all + types = list(/mob/living/carbon/human, /mob/living/carbon/xenomorph, /obj/item/weapon, /mob/living/simple_animal/hostile/retaliate/giant_lizard) + icon_state = "purple_line" + + visible = TRUE diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 4a3817baf9b7..57be88bc8dab 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -806,3 +806,72 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. 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 + +/* + + Canyon Bushes + +*/ + +/obj/structure/flora/bush/canyon + name = "bush" + icon = 'icons/obj/structures/props/natural/vegetation/canyon_flora.dmi' + desc = "A small, leafy bush." + icon_state = "green_small_bush" + cut_level = PLANT_CUT_KNIFE + layer = ABOVE_XENO_LAYER + +/obj/structure/flora/bush/canyon/bush + icon_state = "green_small_bush" + +/obj/structure/flora/bush/canyon/bush/alt1 + icon_state = "orange_small_bush" + +/obj/structure/flora/bush/canyon/bush/alt2 + icon_state = "yellow_small_bush" + +/obj/structure/flora/bush/canyon/tree + name = "small tree" + desc = "A small, leafy tree." + icon_state = "green_small_tree" + +/obj/structure/flora/bush/canyon/tree/alt1 + icon_state = "orange_small_tree" + +/obj/structure/flora/bush/canyon/tree/alt2 + icon_state = "yellow_small_tree" + +/obj/structure/flora/bush/canyon/grass_green + name = "grass" + desc = "A small patch of grass." + icon_state = "green_grass_1" + +/obj/structure/flora/bush/canyon/grass_green/alt1 + icon_state = "green_grass_2" + +/obj/structure/flora/bush/canyon/grass_green/alt2 + icon_state = "green_grass_3" + +/obj/structure/flora/bush/canyon/grass_orange + name = "grass" + desc = "A small patch of grass." + icon_state = "orange_grass_1" + +/obj/structure/flora/bush/canyon/grass_orange/alt1 + icon_state = "orange_grass_2" + +/obj/structure/flora/bush/canyon/grass_orange/alt2 + icon_state = "orange_grass_3" + +/obj/structure/flora/bush/canyon/grass_yellow + name = "grass" + desc = "A small patch of grass." + icon_state = "yellow_grass_1" + +/obj/structure/flora/bush/canyon/grass_yellow/alt1 + icon_state = "yellow_grass_2" + +/obj/structure/flora/bush/canyon/grass_yellow/alt2 + icon_state = "yellow_grass_3" + + diff --git a/code/game/objects/structures/props.dm b/code/game/objects/structures/props.dm index dc741ed13114..084f505a00f7 100644 --- a/code/game/objects/structures/props.dm +++ b/code/game/objects/structures/props.dm @@ -236,6 +236,61 @@ /obj/structure/prop/dam/wide_boulder/boulder1 icon_state = "boulder1" +// Colorable big boulders - to do - replace all other boulders with color var edited versions of these across all maps. + +/obj/structure/prop/colorable_rock/boulder + icon = 'icons/obj/structures/props/natural/boulder_large.dmi' + icon_state = "boulder_large1" + +/obj/structure/prop/colorable_rock/boulder/large + name = "boulder" + desc = "A large rock. It's not cooking anything." + icon = 'icons/obj/structures/props/natural/colorable_boulder_large.dmi' + icon_state = "boulder_large1" + density = TRUE + bound_height = 64 + bound_width = 64 + +/obj/structure/prop/colorable_rock/boulder/large/boulder1 + icon_state = "boulder_large1" + +/obj/structure/prop/colorable_rock/boulder/large/boulder2 + icon_state = "boulder_large2" + +/obj/structure/prop/colorable_rock/boulder/large/boulder3 + icon_state = "boulder_large3" + +/obj/structure/prop/colorable_rock/boulder/wide_boulder + name = "boulder" + desc = "A large rock. It's not cooking anything." + icon = 'icons/obj/structures/props/natural/colorable_boulder_wide.dmi' + icon_state = "boulderwide" + density = TRUE + bound_height = 32 + bound_width = 64 + +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1 + icon_state = "boulderwide" + +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder2 + icon_state = "boulderwide2" + +/obj/structure/prop/colorable_rock/boulder/small + name = "boulder" + icon_state = "bouldersmall1" + desc = "A large rock. It's not cooking anything." + icon = 'icons/obj/structures/props/natural/colorable_boulder_small.dmi' + density = TRUE + +/obj/structure/prop/colorable_rock/boulder/small/boulder1 + icon_state = "bouldersmall1" + +/obj/structure/prop/colorable_rock/boulder/small/boulder2 + icon_state = "bouldersmall2" + +/obj/structure/prop/colorable_rock/boulder/small/boulder3 + icon_state = "bouldersmall3" + //Use these to replace non-functional machinery 'props' around maps from bay12 /obj/structure/prop/server_equipment diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index c611b5218458..78c593e01a02 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -768,3 +768,39 @@ icon_state = "calendar_ua" desc = "Classic office decoration and a place to stare at maniacally, has a vertically placed UA flag and some army symbolics." calendar_faction = FACTION_MARINE + +//===================// +// Con-Am Faction Symbol // +//=================// + +/obj/structure/sign/conam + name = "\improper Con-Am Poster" + desc = "A symbol of the Con-Am corporation. Oozes a proud confidence of Con-Am, despite its mounting real world troubles." + icon_state = "conam_symbol" + +/obj/structure/sign/conam/variant1 + icon_state = "conam_logo_1" + +/obj/structure/sign/conam/variant1/damage1 + icon_state = "conam_logo_1_damage" + +/obj/structure/sign/conam/variant1/damage2 + icon_state = "conam_logo_1_damage_1" + +/obj/structure/sign/conam/variant2 + icon_state = "conam_logo_2" + +/obj/structure/sign/conam/variant2/damage1 + icon_state = "conam_logo_2_damage" + +/obj/structure/sign/conam/variant2/damage2 + icon_state = "conam_logo_2_damage_1" + +/obj/structure/sign/conam/variant3 + icon_state = "conam_logo_3" + +/obj/structure/sign/conam/variant3/damage1 + icon_state = "conam_logo_3_damage" + +/obj/structure/sign/conam/variant3/damage2 + icon_state = "conam_logo_3_damage_1" diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index f3db85b52813..d9988545ca62 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -1327,3 +1327,121 @@ basestate = "prison_cellwindow" desc = "A glass window with a special rod matrix inside a wall frame." health = 100 + + +// Abyssal Windows \\ +// Standard + +/obj/structure/window/framed/abyssal/standard + name = "window" + icon = 'icons/turf/walls/abyssal_windows_blank.dmi' + icon_state = "prison_window0" + basestate = "prison_window" + desc = "A glass window inside a wall frame." + health = 15 + window_frame = /obj/structure/window_frame/abyssal/standard + +/obj/structure/window/framed/abyssal/standard/reinforced + name = "reinforced window" + icon_state = "prison_rwindow0" + basestate = "prison_rwindow" + desc = "A glass window. Light refracts incorrectly when looking through. It looks rather strong. Might take a few good hits to shatter it." + health = 100 + reinf = TRUE + window_frame = /obj/structure/window_frame/abyssal/standard/reinforced + +/obj/structure/window/framed/abyssal/standard/hull + name = "hull window" + icon_state = "prison_rwindow0" + basestate = "prison_rwindow" + desc = "A glass window with a special rod matrix inside a wall frame. This one has an automatic shutter system to prevent any atmospheric breach." + health = 200 + var/triggered = FALSE + +/obj/structure/window/framed/abyssal/standard/hull/Destroy(force) + if(force) + return ..() + spawn_shutters() + . = ..() + +/obj/structure/window/framed/abyssal/standard/hull/proc/spawn_shutters(from_dir = 0) + if(triggered) + return + + triggered = TRUE + for(var/direction in GLOB.cardinals) + if(direction == from_dir) + continue //doesn't check backwards + for(var/obj/structure/window/framed/abyssal/standard/hull/W in get_step(src,direction) ) + W.spawn_shutters(turn(direction,180)) + var/obj/structure/machinery/door/poddoor/shutters/almayer/pressure/pressure_door = new(get_turf(src)) + switch(junction) + if(4,5,8,9,12) + pressure_door.setDir(SOUTH) + else + pressure_door.setDir(EAST) + pressure_door.close() + +/obj/structure/window/framed/abyssal/standard/cell + name = "cell window" + icon_state = "prison_cellwindow0" + basestate = "prison_cellwindow" + desc = "A glass window with a special rod matrix inside a wall frame." + +// Blue + +/obj/structure/window/framed/abyssal/blue + name = "window" + icon = 'icons/turf/walls/abyssal_windows_blue.dmi' + icon_state = "prison_window0" + basestate = "prison_window" + desc = "A glass window inside a wall frame." + health = 15 + window_frame = /obj/structure/window_frame/abyssal/blue + +/obj/structure/window/framed/abyssal/blue/reinforced + name = "reinforced window" + icon_state = "prison_rwindow0" + basestate = "prison_rwindow" + desc = "A glass window. Light refracts incorrectly when looking through. It looks rather strong. Might take a few good hits to shatter it." + health = 100 + reinf = TRUE + window_frame = /obj/structure/window_frame/abyssal/blue/reinforced + +/obj/structure/window/framed/abyssal/blue/hull + name = "hull window" + icon_state = "prison_rwindow0" + basestate = "prison_rwindow" + desc = "A glass window with a special rod matrix inside a wall frame. This one has an automatic shutter system to prevent any atmospheric breach." + health = 200 + var/triggered = FALSE + +/obj/structure/window/framed/abyssal/blue/hull/Destroy(force) + if(force) + return ..() + spawn_shutters() + . = ..() + +/obj/structure/window/framed/abyssal/blue/hull/proc/spawn_shutters(from_dir = 0) + if(triggered) + return + + triggered = TRUE + for(var/direction in GLOB.cardinals) + if(direction == from_dir) + continue //doesn't check backwards + for(var/obj/structure/window/framed/abyssal/blue/hull/W in get_step(src,direction) ) + W.spawn_shutters(turn(direction,180)) + var/obj/structure/machinery/door/poddoor/shutters/almayer/pressure/pressure_door = new(get_turf(src)) + switch(junction) + if(4,5,8,9,12) + pressure_door.setDir(SOUTH) + else + pressure_door.setDir(EAST) + pressure_door.close() + +/obj/structure/window/framed/abyssal/blue/cell + name = "cell window" + icon_state = "prison_cellwindow0" + basestate = "prison_cellwindow" + desc = "A glass window with a special rod matrix inside a wall frame." diff --git a/code/game/objects/structures/window_frame.dm b/code/game/objects/structures/window_frame.dm index 136071d95c78..8af8b9388dd1 100644 --- a/code/game/objects/structures/window_frame.dm +++ b/code/game/objects/structures/window_frame.dm @@ -453,3 +453,24 @@ icon_state = "prison_rwindow0_frame" basestate = "prison_rwindow" reinforced = TRUE + +// Abyssal Frames +/obj/structure/window_frame/abyssal/standard + icon = 'icons/turf/walls/abyssal_window_frames_blank.dmi' + icon_state = "prison_rwindow0_frame" + basestate = "prison_rwindow" + +/obj/structure/window_frame/abyssal/standard/reinforced + icon_state = "prison_rwindow0_frame" + basestate = "prison_rwindow" + reinforced = TRUE + +/obj/structure/window_frame/abyssal/blue + icon = 'icons/turf/walls/abyssal_window_frame_blue.dmi' + icon_state = "prison_rwindow0_frame" + basestate = "prison_rwindow" + +/obj/structure/window_frame/abyssal/blue/reinforced + icon_state = "prison_rwindow0_frame" + basestate = "prison_rwindow" + reinforced = TRUE diff --git a/code/game/turfs/abyssal.dm b/code/game/turfs/abyssal.dm new file mode 100644 index 000000000000..22321e75db5e --- /dev/null +++ b/code/game/turfs/abyssal.dm @@ -0,0 +1,41 @@ +// ------ Abyssal walls ------ // + +// Standard + +/turf/closed/wall/abyssal/standard + name = "metal wall" + icon = 'icons/turf/walls/abyssall_walls_blank.dmi' + icon_state = "metal" + walltype = WALL_METAL + +/turf/closed/wall/abyssal/standard/reinforced + name = "reinforced metal wall" + icon_state = "rwall" + walltype = WALL_REINFORCED + +/turf/closed/wall/abyssal/standard/unmeltable + name = "heavy reinforced wall" + desc = "A huge chunk of ultra-reinforced metal used to separate rooms. Looks virtually indestructible." + icon_state = "hwall" + walltype = WALL_REINFORCED + turf_flags = TURF_HULL + +// Blue + +/turf/closed/wall/abyssal/blue + name = "metal wall" + icon = 'icons/turf/walls/abyssal_walls_blue.dmi' + icon_state = "metal" + walltype = WALL_METAL + +/turf/closed/wall/abyssal/blue/reinforced + name = "reinforced metal wall" + icon_state = "rwall" + walltype = WALL_REINFORCED + +/turf/closed/wall/abyssal/blue/unmeltable + name = "heavy reinforced wall" + desc = "A huge chunk of ultra-reinforced metal used to separate rooms. Looks virtually indestructible." + icon_state = "hwall" + walltype = WALL_REINFORCED + turf_flags = TURF_HULL diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index 5d4a4d8cf692..4f02d360c325 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -4115,6 +4115,27 @@ /turf/open/floor/green/north dir = NORTH +/turf/open/floor/green/east + dir = EAST + +/turf/open/floor/green/south + dir = SOUTH + +/turf/open/floor/green/west + dir = WEST + +/turf/open/floor/greencorner + icon_state = "greencorner" + +/turf/open/floor/greencorner/north + dir = NORTH + +/turf/open/floor/greencorner/east + dir = EAST + +/turf/open/floor/greencorner/west + dir = WEST + /turf/open/floor/loadingarea icon_state = "loadingarea" @@ -4694,6 +4715,15 @@ /turf/open/floor/darkgreen2/northwest dir = NORTHWEST +/turf/open/floor/darkgreen2/northeast + dir = NORTHEAST + +/turf/open/floor/darkgreen2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkgreen2/southeast + dir = SOUTHEAST + /turf/open/floor/darkpurple2/northwest dir = NORTHWEST @@ -4706,6 +4736,18 @@ /turf/open/floor/green/northwest dir = NORTHWEST +/turf/open/floor/green/northeast + dir = NORTHEAST + +/turf/open/floor/green/southeast + dir = SOUTHEAST + +/turf/open/floor/green/southwest + dir = SOUTHWEST + +/turf/open/floor/green/northwest + dir = NORTHWEST + /turf/open/floor/podhatch/northwest dir = NORTHWEST @@ -4805,6 +4847,18 @@ /turf/open/floor/darkbluecorners2 icon_state = "darkbluecorners2" +/turf/open/floor/darkbluecorners2/north + dir = NORTH + +/turf/open/floor/darkbluecorners2/east + dir = EAST + +/turf/open/floor/darkbluecorners2/south + dir = SOUTH + +/turf/open/floor/darkbluecorners2/west + dir = WEST + /turf/open/floor/darkish icon_state = "darkish" diff --git a/code/game/turfs/spacestation.dm b/code/game/turfs/spacestation.dm new file mode 100644 index 000000000000..a82dac05d9fd --- /dev/null +++ b/code/game/turfs/spacestation.dm @@ -0,0 +1,117 @@ +// ------ Spess tiles ------ // + +// Plating + +//turf/open/station +// name = "floor" +// icon = 'icons/turf/floors/antre_floors.dmi' +// icon_state = "floor" + + +/turf/open/floor/station + name = "floor" + icon = 'icons/turf/floors/station_tiles.dmi' + icon_state = "floor" + +/turf/open/floor/station/is_plasteel_floor() + return FALSE + +// + +/turf/open/floor/station/metal/floor + +/turf/open/floor/station/metal/floor/north + dir = NORTH + +/turf/open/floor/station/metal/floor/east + dir = EAST + +/turf/open/floor/station/metal/floor/west + dir = WEST + +/turf/open/floor/station/metal/floor/southeast + dir = SOUTHEAST + +/turf/open/floor/station/metal/floor/southwest + dir = SOUTHWEST + +/turf/open/floor/station/metal/floor/northeast + dir = NORTHEAST + +/turf/open/floor/station/metal/floor/northwest + dir = NORTHWEST + +/turf/open/floor/station/metal/floor/alt1 + icon_state = "floor_alt" + +/turf/open/floor/station/metal/floor/alt1/north + dir = NORTH + +/turf/open/floor/station/metal/floor/alt1/east + dir = EAST + +/turf/open/floor/station/metal/floor/alt1/west + dir = WEST + +/turf/open/floor/station/metal/floor/alt2 + icon_state = "floor_alt_2" + +/turf/open/floor/station/metal/floor/alt2/north + dir = NORTH + +/turf/open/floor/station/metal/floor/alt2/east + dir = EAST + +/turf/open/floor/station/metal/floor/alt2/west + dir = WEST + +/turf/open/floor/station/metal/floor/alt3 + icon_state = "floor_alt_3" + +/turf/open/floor/station/metal/floor/alt3/north + dir = NORTH + +/turf/open/floor/station/metal/floor/alt3/east + dir = EAST + +/turf/open/floor/station/metal/floor/alt3/west + dir = WEST + +/turf/open/floor/station/metal/floor_cyan + icon_state = "cyanfloor" + +/turf/open/floor/station/metal/floor_cyan/alt1 + icon_state = "cyanfloor_alt" + +/turf/open/floor/station/metal/floor_cyan/alt2 + icon_state = "cyanfloor_alt_2" + +/turf/open/floor/station/metal/floor_cyan/alt3 + icon_state = "cyanfloor_alt_3" + +/turf/open/floor/station/metal/floor_blue + icon_state = "bluefloor" + +/turf/open/floor/station/metal/floor_blue/alt1 + icon_state = "bluefloor_alt" + +/turf/open/floor/station/metal/floor_blue/alt2 + icon_state = "bluefloor_alt_2" + +/turf/open/floor/station/metal/floor_blue/alt3 + icon_state = "bluefloor_alt_3" + +/turf/open/floor/station/metal/floor_yellow + icon_state = "yellowfloor" + +/turf/open/floor/station/metal/floor_yellow/alt1 + icon_state = "yellowfloor_alt" + +/turf/open/floor/station/metal/floor_yellow/alt2 + icon_state = "yellowfloor_alt_2" + +/turf/open/floor/station/metal/floor_yellow/alt3 + icon_state = "yellowfloor_alt_3" + +/turf/open/floor/station/metal/alt_floor + icon_state = "ship_floor" diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index 7003626827da..2535b0fbcfd3 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -142,6 +142,13 @@ html_link = "images/9/94/New_Varadero.png" color = "red" +/obj/item/map/cape_river + name = "\improper Cape River map" + desc = "A labeled blueprint of the Con-Am mining outpost Cape River" + html_link = "images/4/46/Cape_River.png" + color = "red" + + GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /proc/setup_all_maps() @@ -159,7 +166,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_CAPE_RIVER = new /obj/item/map/cape_river() ) //used by marine equipment machines to spawn the correct map. diff --git a/code/modules/gear_presets/survivors/cape_river/preset_cape_river.dm b/code/modules/gear_presets/survivors/cape_river/preset_cape_river.dm new file mode 100644 index 000000000000..e087ebe755f5 --- /dev/null +++ b/code/modules/gear_presets/survivors/cape_river/preset_cape_river.dm @@ -0,0 +1,226 @@ +//////////////////// CIVILIAN /////////////////////// +//////////////////////////////////////////////////// + +// Civilian + +/datum/equipment_preset/survivor/caperiver/civilian + name = "Survivor - Cape River - Assistant" + assignment = "Assistant" + skills = /datum/skills/civilian/survivor + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC) + + survivor_variant = CIVILIAN_SURVIVOR + +/datum/equipment_preset/survivor/caperiver/civilian/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/grey(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/utility/gray(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/brown(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/twohanded/spear(new_human), WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) + add_survivor_rare_item(new_human) + add_survivor_weapon_civilian(new_human) + ..() + +// Engineer + +/datum/equipment_preset/survivor/caperiver/engineer + name = "Survivor - Cape River - Engineer" + assignment = "Con-Am Engineer" + skills = /datum/skills/civilian/survivor/engineer + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_ENGINEERING,ACCESS_CIVILIAN_LOGISTICS) + + survivor_variant = ENGINEERING_SURVIVOR + +/datum/equipment_preset/survivor/caperiver/engineer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/engineer(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/plasteel/med_small_stack(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/nailgun(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/magboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) + add_survivor_weapon_civilian(new_human) + ..() + +// Security Officer + +/datum/equipment_preset/survivor/caperiver/security_officer + name = "Survivor - Con-Am - Security Officer" + assignment = "Con-Am Security" + skills = /datum/skills/civilian/survivor/marshal + flags = EQUIPMENT_PRESET_START_OF_ROUND + job_title = JOB_CMB + role_comm_title = "SEC" + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ) + + survivor_variant = SECURITY_SURVIVOR + +/datum/equipment_preset/survivor/caperiver/security_officer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/cmb(new_human), WEAR_HEAD) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/swat(new_human), WEAR_HANDS) + add_survivor_weapon_security(new_human) + ..() + +// Scientist + +/datum/equipment_preset/survivor/caperiver/scientist + name = "Survivor - Cape River - Scientist" + assignment = "Cape River Scientist" + skills = /datum/skills/civilian/survivor/scientist + flags = EQUIPMENT_PRESET_START_OF_ROUND + idtype = /obj/item/card/id/silver/clearance_badge/scientist + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY) + + survivor_variant = SCIENTIST_SURVIVOR + +/datum/equipment_preset/survivor/caperiver/scientist/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/scientist(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/scientist(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/purple(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/tox(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/purple(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/unique/tier_three(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical/full(new_human), WEAR_R_STORE) + add_survivor_weapon_civilian(new_human) + add_random_survivor_research_gear(new_human) + ..() + +// Medical + +/datum/equipment_preset/survivor/caperiver/doctor + name = "Survivor - Cape River - Doctor" + assignment = "Cape River Station Doctor" + skills = /datum/skills/civilian/survivor/doctor + flags = EQUIPMENT_PRESET_START_OF_ROUND + idtype = /obj/item/card/id/silver/clearance_badge + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY, ACCESS_CIVILIAN_COMMAND) + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) + + survivor_variant = MEDICAL_SURVIVOR + +/datum/equipment_preset/survivor/caperiver/doctor/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/lightblue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/med(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/first_responder/full(new_human), WEAR_R_STORE) + add_random_survivor_medical_gear(new_human) + add_survivor_weapon_civilian(new_human) + ..() + +// Corporate + +/datum/equipment_preset/survivor/conam_cl + name = "Survivor - Cape River - Con-Am - Corporate Liaison" // A Corporate Liaison for Con-Amalagaged instead of Weyland-Yutani. + assignment = "Con-Am - Corporate Liaison" + skills = /datum/skills/civilian/survivor + flags = EQUIPMENT_PRESET_START_OF_ROUND + paygrades = list(PAY_SHORT_WYC2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_WYC3 = JOB_PLAYTIME_TIER_2, PAY_SHORT_WYC4 = JOB_PLAYTIME_TIER_3, PAY_SHORT_WYC5 = JOB_PLAYTIME_TIER_4) + job_title = JOB_HC_EXECUTIVE + faction = FACTION_SURVIVOR + idtype = /obj/item/card/id/silver/cl + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_COMMAND, + ACCESS_WY_COLONIAL, + ) + languages = list(LANGUAGE_ENGLISH) + survivor_variant = CORPORATE_SURVIVOR + +/datum/equipment_preset/survivor/conam_cl/load_rank(mob/living/carbon/human/new_human, client/mob_client) + if(paygrades.len == 1) + return paygrades[1] + var/playtime + if(!mob_client) + playtime = JOB_PLAYTIME_TIER_1 + else + playtime = get_job_playtime(mob_client, JOB_CORPORATE_LIAISON) + if((playtime >= JOB_PLAYTIME_TIER_1) && !mob_client.prefs.playtime_perks) + playtime = JOB_PLAYTIME_TIER_1 + var/final_paygrade + for(var/current_paygrade as anything in paygrades) + var/required_time = paygrades[current_paygrade] + if(required_time - playtime > 0) + break + final_paygrade = current_paygrade + if(!final_paygrade) + . = "???" + CRASH("[key_name(new_human)] spawned with no valid paygrade.") + + return final_paygrade + +/datum/equipment_preset/survivor/conam_cl/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/leather/fancy(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black_leather(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/tie/gold(new_human), WEAR_ACCESSORY) + add_survivor_weapon_civilian(new_human) + add_random_cl_survivor_loot(new_human) + ..() + +// Captain (CO Role) +/datum/equipment_preset/survivor/caperiver/captain + name = "Survivor - Cape River - Captain" + assignment = "Cape River Captain" + skills = /datum/skills/commander + idtype = /obj/item/card/id/gold + role_comm_title = "Captain" + flags = EQUIPMENT_PRESET_START_OF_ROUND + 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/survivor/caperiver/captain/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/suit_jacket/director(new_human), WEAR_BODY) + 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/clothing/shoes/marine/corporate/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/multicolor/fountain(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/disk/nuclear(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/stamp/captain(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/sec/alt(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black_leather(new_human), WEAR_HANDS) + ..() diff --git a/colonialmarines.dme b/colonialmarines.dme index d7a349990927..0549794eb0cb 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -822,6 +822,7 @@ #include "code\game\area\areas.dm" #include "code\game\area\areas_event.dm" #include "code\game\area\BigRed.dm" +#include "code\game\area\CapeRiverColony.dm" #include "code\game\area\ChigusaShipyard.dm" #include "code\game\area\chinook.dm" #include "code\game\area\Corsat.dm" @@ -1496,6 +1497,7 @@ #include "code\game\objects\structures\stool_bed_chair_nest\wheelchair.dm" #include "code\game\objects\structures\stool_bed_chair_nest\xeno_nest.dm" #include "code\game\sim_manager\datums\simulator.dm" +#include "code\game\turfs\abyssal.dm" #include "code\game\turfs\auto_turf.dm" #include "code\game\turfs\baseturf_skipover.dm" #include "code\game\turfs\closed.dm" @@ -1512,6 +1514,7 @@ #include "code\game\turfs\snow.dm" #include "code\game\turfs\soro.dm" #include "code\game\turfs\space.dm" +#include "code\game\turfs\spacestation.dm" #include "code\game\turfs\strata.dm" #include "code\game\turfs\transit.dm" #include "code\game\turfs\turf.dm" @@ -1939,6 +1942,7 @@ #include "code\modules\gear_presets\yautja.dm" #include "code\modules\gear_presets\survivors\misc.dm" #include "code\modules\gear_presets\survivors\survivors.dm" +#include "code\modules\gear_presets\survivors\cape_river\preset_cape_river.dm" #include "code\modules\gear_presets\survivors\corsat\preset_corsat.dm" #include "code\modules\gear_presets\survivors\fiorina_sciannex\preset_fiorina_sciannex.dm" #include "code\modules\gear_presets\survivors\fiorina_sciannex\riot_in_progress_insert_fiorina_nightmare.dm" diff --git a/icons/effects/conam_logo_big.dmi b/icons/effects/conam_logo_big.dmi new file mode 100644 index 000000000000..fe08410a0d26 Binary files /dev/null and b/icons/effects/conam_logo_big.dmi differ diff --git a/icons/obj/structures/doors/brown_hatch.dmi b/icons/obj/structures/doors/brown_hatch.dmi new file mode 100644 index 000000000000..f992eaf4d410 Binary files /dev/null and b/icons/obj/structures/doors/brown_hatch.dmi differ diff --git a/icons/obj/structures/doors/brown_hatch_blue_stripe.dmi b/icons/obj/structures/doors/brown_hatch_blue_stripe.dmi new file mode 100644 index 000000000000..7e4f9ea0c885 Binary files /dev/null and b/icons/obj/structures/doors/brown_hatch_blue_stripe.dmi differ diff --git a/icons/obj/structures/props/natural/colorable_boulder_large.dmi b/icons/obj/structures/props/natural/colorable_boulder_large.dmi new file mode 100644 index 000000000000..367f714e871d Binary files /dev/null and b/icons/obj/structures/props/natural/colorable_boulder_large.dmi differ diff --git a/icons/obj/structures/props/natural/colorable_boulder_small.dmi b/icons/obj/structures/props/natural/colorable_boulder_small.dmi new file mode 100644 index 000000000000..b896dc93b86a Binary files /dev/null and b/icons/obj/structures/props/natural/colorable_boulder_small.dmi differ diff --git a/icons/obj/structures/props/natural/colorable_boulder_wide.dmi b/icons/obj/structures/props/natural/colorable_boulder_wide.dmi new file mode 100644 index 000000000000..c87295fab89d Binary files /dev/null and b/icons/obj/structures/props/natural/colorable_boulder_wide.dmi differ diff --git a/icons/obj/structures/props/natural/huge_canyon.dmi b/icons/obj/structures/props/natural/huge_canyon.dmi new file mode 100644 index 000000000000..1cb8e6017b28 Binary files /dev/null and b/icons/obj/structures/props/natural/huge_canyon.dmi differ diff --git a/icons/obj/structures/props/natural/huge_canyon_colorable.dmi b/icons/obj/structures/props/natural/huge_canyon_colorable.dmi new file mode 100644 index 000000000000..1cca7b509d2b Binary files /dev/null and b/icons/obj/structures/props/natural/huge_canyon_colorable.dmi differ diff --git a/icons/obj/structures/props/natural/rocks.dmi b/icons/obj/structures/props/natural/rocks.dmi index 95dc2e1b7aac..e960514acddc 100644 Binary files a/icons/obj/structures/props/natural/rocks.dmi and b/icons/obj/structures/props/natural/rocks.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/canyon_flora.dmi b/icons/obj/structures/props/natural/vegetation/canyon_flora.dmi new file mode 100644 index 000000000000..42637d5a7cbc Binary files /dev/null and b/icons/obj/structures/props/natural/vegetation/canyon_flora.dmi differ diff --git a/icons/obj/structures/props/wall_decorations/decals.dmi b/icons/obj/structures/props/wall_decorations/decals.dmi index 730321485feb..93072705eab6 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/posters.dmi b/icons/obj/structures/props/wall_decorations/posters.dmi index b65b9b37dbae..b42c9d3f427b 100644 Binary files a/icons/obj/structures/props/wall_decorations/posters.dmi and b/icons/obj/structures/props/wall_decorations/posters.dmi differ diff --git a/icons/turf/faction_flags.dmi b/icons/turf/faction_flags.dmi index 9ddddfdae27f..815fb1926af7 100644 Binary files a/icons/turf/faction_flags.dmi and b/icons/turf/faction_flags.dmi differ diff --git a/icons/turf/floors/station_tiles.dmi b/icons/turf/floors/station_tiles.dmi new file mode 100644 index 000000000000..3b2bb865355f Binary files /dev/null and b/icons/turf/floors/station_tiles.dmi differ diff --git a/icons/turf/walls/abyssal_walls_blue.dmi b/icons/turf/walls/abyssal_walls_blue.dmi new file mode 100644 index 000000000000..5b0061243e4c Binary files /dev/null and b/icons/turf/walls/abyssal_walls_blue.dmi differ diff --git a/icons/turf/walls/abyssal_window_frame_blue.dmi b/icons/turf/walls/abyssal_window_frame_blue.dmi new file mode 100644 index 000000000000..28032a6cd1ea Binary files /dev/null and b/icons/turf/walls/abyssal_window_frame_blue.dmi differ diff --git a/icons/turf/walls/abyssal_window_frames_blank.dmi b/icons/turf/walls/abyssal_window_frames_blank.dmi new file mode 100644 index 000000000000..83bbcbe168a5 Binary files /dev/null and b/icons/turf/walls/abyssal_window_frames_blank.dmi differ diff --git a/icons/turf/walls/abyssal_windows_blank.dmi b/icons/turf/walls/abyssal_windows_blank.dmi new file mode 100644 index 000000000000..9da3d4d5347b Binary files /dev/null and b/icons/turf/walls/abyssal_windows_blank.dmi differ diff --git a/icons/turf/walls/abyssal_windows_blue.dmi b/icons/turf/walls/abyssal_windows_blue.dmi new file mode 100644 index 000000000000..c4b49a8ef326 Binary files /dev/null and b/icons/turf/walls/abyssal_windows_blue.dmi differ diff --git a/icons/turf/walls/abyssall_walls_blank.dmi b/icons/turf/walls/abyssall_walls_blank.dmi new file mode 100644 index 000000000000..f6ba6be1b895 Binary files /dev/null and b/icons/turf/walls/abyssall_walls_blank.dmi differ diff --git a/map_config/maps.txt b/map_config/maps.txt index 3e687eb12b94..4d5cb249279c 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -63,5 +63,8 @@ endmap map new_varadero endmap +map cape_river +endmap + map whiskey_outpost_v2 endmap diff --git a/maps/Nightmare/maps/caperiver/nightmare.json b/maps/Nightmare/maps/caperiver/nightmare.json new file mode 100644 index 000000000000..f8e4301190ef --- /dev/null +++ b/maps/Nightmare/maps/caperiver/nightmare.json @@ -0,0 +1,10 @@ +[ + { "type": "map_sprinkle", "path": "sprinkles/" }, + { + "type": "map_insert", + "landmark": "clfbridgecrash", + "chance": 1.0, + "path": "standalone/clfbridgecrash.dmm", + "when": { "lvevent": "clf" } + } +] diff --git a/maps/Nightmare/maps/caperiver/scenario.json b/maps/Nightmare/maps/caperiver/scenario.json new file mode 100644 index 000000000000..fee64676f05a --- /dev/null +++ b/maps/Nightmare/maps/caperiver/scenario.json @@ -0,0 +1,10 @@ +[ + { + "type": "pick", "name": "Cape River Global Event", + "choices": [ + { "weight": 9, "type": "def", "values": { "lvevent": "none" } }, + { "weight": 1, "type": "def", "values": { "lvevent": "clf" } } + ] + } + +] diff --git a/maps/cape_river.json b/maps/cape_river.json new file mode 100644 index 000000000000..2c3f92c49c3e --- /dev/null +++ b/maps/cape_river.json @@ -0,0 +1,41 @@ +{ + "map_name": "Cape River Mining Colony", + "map_path": "map_files/cape_river", + "map_file": "cape_river.dmm", + "survivor_types": [ + "/datum/equipment_preset/survivor/caperiver/civilian", + "/datum/equipment_preset/survivor/caperiver/engineer", + "/datum/equipment_preset/survivor/caperiver/security_officer", + "/datum/equipment_preset/survivor/caperiver/scientist", + "/datum/equipment_preset/survivor/caperiver/doctor", + "/datum/equipment_preset/survivor/conam_cl" + ], + "CO_survivor_types": [ + "/datum/equipment_preset/survivor/caperiver/captain" + ], + "CO_insert_survivor_types": [ + "/datum/equipment_preset/survivor/clf/coordinator" + ], + "map_item_type": "/obj/item/map/cape_river", + "announce_text": "An automated distress signal has been received from Cape River, a Con-Amalagated corporate operated mining colony. The ###SHIPNAME### has been dictated to conduct an investigation in force.", + "monkey_types": [ + "farwa", + "neaera" + ], + "environment_traits": { "Fog": true }, + "traits": [{ "Ground": true }], + "nightmare_path": "maps/Nightmare/maps/caperiver/", + "xvx_hives": { + "xeno_hive_alpha": 0, + "xeno_hive_bravo": 0, + "xeno_hive_charlie": 70 + }, + "camouflage": "desert", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} diff --git a/maps/map_files/cape_river/cape_river.dmm b/maps/map_files/cape_river/cape_river.dmm new file mode 100644 index 000000000000..85eeec3278f6 --- /dev/null +++ b/maps/map_files/cape_river/cape_river.dmm @@ -0,0 +1,102371 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"aab" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aac" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/caperiver/outdoors/landing_zone_1) +"aad" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/caperiver/outdoors/chasm) +"aae" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"aaf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aag" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aah" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/lz_cave) +"aai" = ( +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"aaj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"aak" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"aal" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aam" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"aan" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"aao" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"aap" = ( +/turf/open/floor/kutjevo/colors, +/area/caperiver/indoors/miningbase/dorm) +"aaq" = ( +/obj/structure/platform_decoration/stone/soro/north, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"aar" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aas" = ( +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"aat" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"aau" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"aav" = ( +/obj/structure/prop/dam/drill, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aaw" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aax" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south_east) +"aay" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/space) +"aaz" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"aaA" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock, +/area/caperiver/oob) +"aaB" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_2) +"aaC" = ( +/obj/structure/flora/bush/canyon/tree{ + pixel_x = 4; + pixel_y = 17 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aaD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 2; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aaE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"aaF" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aaG" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/landing_zone_2) +"aaH" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"aaI" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aaJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aaK" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aaL" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"aaM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/caperiver/indoors/conambase/engi) +"aaN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aaO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/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/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"aaP" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aaQ" = ( +/obj/item/stack/rods, +/obj/effect/landmark/xeno_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aaR" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"aaS" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"aaT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/outdoors/mining_base_exterior/south) +"aaU" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"aaV" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aaW" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aaX" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/se) +"aaY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aaZ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aba" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"abb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"abc" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_1) +"abd" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north_east) +"abe" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"abf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/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/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"abg" = ( +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"abh" = ( +/turf/open/floor/plating, +/area/caperiver/indoors/processing) +"abi" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/storage, +/obj/item/clothing/accessory/storage, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"abj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"abk" = ( +/obj/item/ammo_box/magazine/ak4047/empty, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"abl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"abm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"abn" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/bushlands) +"abo" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo/panelscorched, +/area/caperiver/outdoors/landing_zone_1/interior) +"abp" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/stone/soro/west, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"abq" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"abr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"abs" = ( +/obj/structure/largecrate/random/barrel/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"abt" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"abu" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"abv" = ( +/obj/structure/cargo_container/hybrisa/containersextended/medicalleft, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"abw" = ( +/obj/structure/flora/tree/joshua, +/mob/living/simple_animal/lizard, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west) +"abx" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"aby" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"abz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"abA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/sign/calendar/ua{ + pixel_y = 29; + pixel_x = -4; + layer = 2.9 + }, +/obj/structure/machinery/computer/objective, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"abB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/computer/arcade{ + layer = 4; + pixel_y = 19; + pixel_x = -5; + density = 0 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"abC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"abD" = ( +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"abE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -35; + pixel_y = -1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"abF" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"abG" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/defenses/handheld/tesla_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"abH" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -10; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = 19 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"abI" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"abJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north) +"abK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/darkish, +/area/caperiver/telecomms/telecomm_3) +"abL" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"abM" = ( +/obj/structure/platform/stone/soro, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"abN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -5; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"abO" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"abP" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -1; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"abQ" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"abR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"abS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"abT" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/south) +"abU" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1) +"abV" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"abW" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/stone/soro/east, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"abX" = ( +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"abY" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"abZ" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aca" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"acb" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -32; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"acc" = ( +/obj/structure/cable/white{ + icon_state = "5-10"; + level = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"acd" = ( +/obj/structure/closet/crate/weapon, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"ace" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"acf" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"acg" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/dorm) +"ach" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/west) +"aci" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"acj" = ( +/obj/item/shard, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"ack" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 30 + }, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"acl" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"acm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"acn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aco" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_y = -2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"acp" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"acq" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"acr" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"acs" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"act" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"acu" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/road/west/antiweed) +"acv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"acw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"acx" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_x = 18 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"acy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"acz" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"acA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"acB" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"acC" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"acD" = ( +/obj/structure/platform/stone/soro/west, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"acE" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"acF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellow2, +/area/caperiver/indoors/conambase/engi) +"acG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/telecomms/telecomm_1) +"acH" = ( +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"acI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"acJ" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"acK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"acL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_2/interior) +"acM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"acN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 6; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"acO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"acP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155; + pixel_x = 17; + pixel_y = -3 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"acQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"acR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/engi) +"acS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"acT" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"acU" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"acV" = ( +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"acW" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"acX" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"acY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"acZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Mining colony"; + desc = "Sign denoting the direction of a mining colony" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"ada" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"adb" = ( +/obj/item/ammo_box/magazine/shotgun/buckshot/empty, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"adc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/northwest, +/area/caperiver/indoors/miningbase/dorm) +"add" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/landing_zone_2) +"ade" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"adf" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/unknown) +"adg" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"adh" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"adi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"adj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"adk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"adl" = ( +/turf/closed/wall/strata_outpost, +/area/caperiver/indoors/caves/w) +"adm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"adn" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"ado" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"adp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1_alt"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"adq" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 6; + pixel_y = 22 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"adr" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"ads" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"adt" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"adu" = ( +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"adv" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg2, +/area/caperiver/indoors/caves/nw) +"adw" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/miningbase/engi) +"adx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/recreational) +"ady" = ( +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"adz" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"adA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/landing_zone_2) +"adB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"adC" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -15; + pixel_y = -24 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"adD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/indoors/miningbase/admin) +"adE" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"adG" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/landing_zone_2) +"adH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/con_am_exterior/south) +"adI" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"adJ" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"adK" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/scrublands/west/antiweed) +"adL" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"adM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/machinery/faxmachine, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"adN" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south) +"adO" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"adP" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/pistol/highpower{ + current_rounds = 3 + }, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"adQ" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/interior/wood/alt, +/area/caperiver/outdoors/landing_zone_2) +"adR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/telecomms/telecomm_3) +"adS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"adT" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"adU" = ( +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/obj/structure/prop/invuln/remote_console_pod, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/remains/robot{ + pixel_x = 6; + pixel_y = -12 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/landing_zone_2) +"adV" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"adW" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"adX" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/west/antiweed) +"adY" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_west) +"adZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"aea" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"aeb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/floodlight, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aec" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aed" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aee" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"aef" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"aeg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"aeh" = ( +/mob/living/simple_animal/bat, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aei" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aej" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"aek" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellow2/west, +/area/caperiver/indoors/conambase/engi) +"ael" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aem" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aen" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Mining colony"; + desc = "Sign denoting the direction of a mining colony" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aeo" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"aep" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aeq" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aer" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aes" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/se) +"aet" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aeu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/central) +"aev" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = 14 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"aew" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/solaris, +/area/caperiver/outdoors/landing_zone_2/interior) +"aex" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aey" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_y = 3; + pixel_x = -6 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aez" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aeA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"aeB" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"aeC" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/caperiver/outdoors/landing_zone_1) +"aeD" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"aeE" = ( +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"aeF" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"aeG" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/road/west) +"aeH" = ( +/obj/structure/flora/grass/desert/heavygrass_6{ + pixel_x = -9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = 11 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"aeI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"aeJ" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Blue_Cargo, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"aeK" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"aeL" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aeM" = ( +/obj/item/ammo_magazine/rifle/mar40{ + current_rounds = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aeN" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/shotgun, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"aeO" = ( +/obj/structure/computerframe{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aeP" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -10; + pixel_y = 27 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aeQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"aeR" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/item/ammo_magazine/rifle/mar40{ + current_rounds = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aeS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"aeT" = ( +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"aeU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aeV" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aeW" = ( +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aeX" = ( +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/floor/station/metal/floor/north, +/area/caperiver/telecomms/telecomm_3) +"aeY" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/security, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"aeZ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"afa" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"afb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"afc" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"afd" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"afe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"aff" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"afg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"afh" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"afi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"afj" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"afk" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/caperiver/outdoors/chasm) +"afl" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"afm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_1) +"afn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/caperiver/indoors/conambase/engi) +"afo" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/large_stain, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"afp" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"afq" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"afr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"afs" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aft" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + icon_state = "ground_colorable_alt"; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = -20 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west) +"afu" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/security) +"afv" = ( +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/unknown) +"afw" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/bushlands) +"afx" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west) +"afy" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"afz" = ( +/obj/effect/decal/hybrisa/grate, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"afA" = ( +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"afB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"afC" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north) +"afD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/telecomms/telecomm_3) +"afE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/n) +"afF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/powercell, +/obj/structure/flora/pottedplant{ + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/floor/station/metal/floor/alt3/west, +/area/caperiver/indoors/conambase/support) +"afG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"afH" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/west) +"afI" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"afJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"afK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_west) +"afL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"afM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"afN" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"afO" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north) +"afP" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/rec) +"afQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north) +"afR" = ( +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/scrublands/lz_cave) +"afS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"afT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"afU" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/se) +"afV" = ( +/obj/structure/surface/table/gamblingtable{ + layer = 3 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"afW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/landing_zone_2) +"afX" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/central) +"afY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"afZ" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aga" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"agb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"agc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = -1; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"agd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"age" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"agf" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"agg" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"agh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/indoors/miningbase/rec) +"agi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"agj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south) +"agk" = ( +/obj/structure/reagent_dispensers/tank/fuel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"agl" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"agm" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"agn" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"ago" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north) +"agp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"agq" = ( +/obj/structure/closet/crate/green, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"agr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/telecomms/telecomm_3) +"ags" = ( +/obj/structure/fence/slim/dark/door, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"agt" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"agu" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"agv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -37; + pixel_y = -4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 1 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"agw" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"agx" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"agy" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"agz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"agA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"agB" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"agC" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"agD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"agE" = ( +/obj/structure/tunnel, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"agF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"agG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"agH" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"agI" = ( +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"agJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"agK" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/road/central) +"agL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"agM" = ( +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers{ + icon_state = "mining_crawler_4"; + pixel_x = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"agN" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"agO" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"agP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"agQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"agR" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"agS" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#88715d" + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"agT" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"agU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"agV" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"agW" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"agX" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2) +"agY" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"agZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"aha" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ahb" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ahc" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/landing_zone_2/river) +"ahd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"ahe" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"ahf" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"ahg" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/caperiver/indoors/caves/sw) +"ahh" = ( +/turf/open/floor/darkbrown2/east, +/area/caperiver/indoors/conambase/delivery) +"ahi" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north) +"ahj" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"ahk" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Con-Am Facility"; + desc = "A sign denoting the location of a Con-Am facility." + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south_east) +"ahl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = 9 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"ahm" = ( +/obj/structure/flora/grass/desert/lightgrass_5{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"ahn" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"aho" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"ahp" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/scrublands/central) +"ahq" = ( +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"ahr" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/caperiver/outdoors/landing_zone_2/river) +"ahs" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aht" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"ahu" = ( +/obj/structure/ore_box, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"ahv" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"ahw" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_east) +"ahx" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"ahy" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"ahz" = ( +/obj/structure/computerframe{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"ahA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"ahB" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"ahC" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = -8 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"ahD" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"ahE" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/se) +"ahF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"ahG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"ahH" = ( +/obj/structure/machinery/light/red{ + dir = 8; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/darkblue2/southwest, +/area/caperiver/indoors/conambase/unknown) +"ahI" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = -9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"ahJ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"ahK" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/stone/soro/east, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"ahL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"ahM" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"ahN" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"ahO" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/paper/prison_station/inmate_handbook, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"ahP" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"ahQ" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/oob) +"ahR" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north_west) +"ahS" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"ahT" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"ahU" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"ahV" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/hydro) +"ahW" = ( +/turf/closed/wall/strata_outpost, +/area/caperiver/indoors/caves/s) +"ahX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"ahY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"ahZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"aia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -14 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"aib" = ( +/obj/structure/barricade/handrail/medical, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/caperiver/indoors/miningbase/medical) +"aic" = ( +/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/desert/rock, +/area/caperiver/outdoors/bushlands) +"aid" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"aie" = ( +/mob/living/simple_animal/lizard, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aif" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/caperiver/outdoors/landing_zone_2/interior) +"aig" = ( +/obj/structure/barricade/handrail/medical, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"aih" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aii" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aij" = ( +/obj/structure/sign/safety/north{ + pixel_x = 17; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 17; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 25; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aik" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"ail" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"aim" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"ain" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/road/south) +"aio" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aip" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/rec) +"aiq" = ( +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 7; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/north) +"air" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"ais" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"ait" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/darkgreen2/east, +/area/caperiver/indoors/conambase/recreational) +"aiu" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aiv" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aiw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"aix" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"aiy" = ( +/obj/effect/timed_event/scrapeaway{ + time = 25 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"aiz" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"aiA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aiB" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aiC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aiD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aiE" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aiF" = ( +/obj/structure/cargo_container/hybrisa/containersextended/kelland_left, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aiG" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aiH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"aiI" = ( +/obj/effect/timed_event/scrapeaway{ + time = 25 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"aiJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/west) +"aiK" = ( +/obj/structure/cable/white{ + icon_state = "4-5"; + level = 2; + pixel_x = 1; + pixel_y = -14 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"aiL" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/ne) +"aiM" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_east) +"aiN" = ( +/obj/item/shard, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_w) +"aiO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 15; + pixel_y = 12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aiP" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aiQ" = ( +/obj/structure/machinery/light/small/blue{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/caperiver/indoors/conambase/support) +"aiR" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aiS" = ( +/obj/structure/prop/invuln/dense/excavator{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aiT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"aiU" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aiV" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aiW" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"aiX" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aiY" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aiZ" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/caperiver/outdoors/landing_zone_1) +"aja" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/item/shard, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"ajb" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"ajc" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"ajd" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aje" = ( +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"ajf" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/landing_zone_2) +"ajg" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"ajh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/south_east) +"aji" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north_west) +"ajj" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"ajk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"ajl" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/ne) +"ajm" = ( +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/nw_cave) +"ajn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"ajo" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"ajp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"ajq" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/bushlands) +"ajr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"ajs" = ( +/turf/closed/wall/kutjevo/colony/reinforced/hull, +/area/caperiver/oob) +"ajt" = ( +/obj/structure/prop/dam/drill, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aju" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"ajv" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"ajw" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/west) +"ajx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications/simple{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"ajy" = ( +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"ajz" = ( +/turf/closed/wall/strata_outpost, +/area/caperiver/indoors/caves/nw) +"ajA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ajB" = ( +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"ajC" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"ajD" = ( +/obj/item/stack/rods, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"ajE" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/outdoors/landing_zone_2/river) +"ajF" = ( +/obj/structure/fence/slim, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/north) +"ajG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south) +"ajH" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"ajI" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/south) +"ajJ" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/miningbase/engi) +"ajK" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"ajL" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/se) +"ajM" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/caperiver/outdoors/landing_zone_2/river) +"ajN" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"ajO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"ajP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"ajQ" = ( +/obj/structure/girder, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"ajR" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain{ + pixel_x = 6; + layer = 2.1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"ajS" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north_east) +"ajT" = ( +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"ajU" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/item/stack/rods, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"ajV" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/largecrate/random/barrel/red, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"ajW" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ajX" = ( +/obj/structure/sign/banners/clf_worn{ + pixel_y = 31; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/hybrisa/bunkbed3, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"ajY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"ajZ" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"aka" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2"; + layer = 2.52; + pixel_y = -9 + }, +/obj/effect/decal/large_stain, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"akb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + icon_state = "ground_colorable_alt" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"akc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"akd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"ake" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating/platingdmg2, +/area/caperiver/indoors/caves/s) +"akf" = ( +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"akg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"akh" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aki" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = -9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"akj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"akk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"akl" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"akm" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"akn" = ( +/obj/structure/closet/crate/supply, +/obj/item/storage/firstaid/adv, +/obj/item/mre_food_packet/clf, +/obj/item/mre_food_packet/clf, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"ako" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"akp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"akq" = ( +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"akr" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aks" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"akt" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/mining_base_exterior/south) +"aku" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"akv" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"akw" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"akx" = ( +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"aky" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_east) +"akz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south) +"akA" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/seeds/nettleseed, +/obj/item/seeds/riceseed, +/obj/item/seeds/lemonseed, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/hydro) +"akB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"akC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/north_west) +"akD" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"akE" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"akF" = ( +/obj/item/shard, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"akG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west) +"akH" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/caperiver/outdoors/con_am_exterior/north) +"akI" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Con-Am Facility"; + desc = "A sign denoting the location of a Con-Am facility." + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"akJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"akK" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"akL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"akM" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"akN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"akO" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"akP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/scrublands/central) +"akQ" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"akR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"akS" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"akT" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/item/tool/crowbar, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"akU" = ( +/obj/effect/decal/hybrisa/grate, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"akV" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"akW" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"akX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"akY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"akZ" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"ala" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"alb" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"alc" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"ald" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/north) +"ale" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/caperiver/indoors/caves/s) +"alf" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"alg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"alh" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/obj/effect/decal/large_stain{ + layer = 2.6 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"ali" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"alj" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"alk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"all" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"alm" = ( +/obj/structure/platform/stone/sandstone, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/landing_zone_2/river) +"aln" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"alo" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/caperiver/outdoors/chasm) +"alp" = ( +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/south) +"alq" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"alr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/mob/living/simple_animal/lizard, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"als" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"alt" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west/antiweed) +"alu" = ( +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/gm/river/desert/deep/covered, +/area/caperiver/indoors/conambase/research_w) +"alv" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"alw" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"alx" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aly" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"alz" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south_east) +"alA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/south) +"alB" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"alC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"alD" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"alE" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"alF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west/antiweed) +"alG" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/scrublands/south/antiweed) +"alH" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/oob) +"alI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 7; + pixel_y = 8; + name = "Communications Array Direction"; + desc = "Direction of a Communications Array." + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 7; + pixel_y = 8; + name = "Communications Array Direction"; + desc = "Direction of a Communications Array." + }, +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"alJ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"alK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/landing_zone_2) +"alL" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = -4; + pixel_y = -17 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"alM" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"alN" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"alO" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/northeast, +/area/caperiver/indoors/miningbase/medical) +"alP" = ( +/turf/open/desert/desert_shore/shore_corner1, +/area/caperiver/outdoors/landing_zone_2/river) +"alQ" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"alR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"alS" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"alT" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"alU" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"alV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"alW" = ( +/turf/closed/wall/strata_outpost, +/area/caperiver/oob) +"alX" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"alY" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"alZ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"ama" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"amb" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"amc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"amd" = ( +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"ame" = ( +/obj/structure/machinery{ + density = 1; + dir = 8; + icon = 'icons/obj/vehicles/clf_van.dmi'; + icon_state = "van_base"; + explo_proof = 1; + name = "CLF Technical"; + pixel_y = -28; + unacidable = 1; + unslashable = 1; + use_power = 0; + needs_power = 0 + }, +/obj/item/tool/wrench{ + pixel_x = -7; + pixel_y = -17 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/outdoors/landing_zone_2) +"amf" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"amg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"amh" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"ami" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/mob/living/simple_animal/lizard, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"amj" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -14; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"amk" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aml" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/landing_zone_1) +"amm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"amn" = ( +/turf/open/floor/station/metal/floor, +/area/caperiver/telecomms/telecomm_3) +"amo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"amp" = ( +/turf/closed/wall/wood, +/area/caperiver/outdoors/landing_zone_2) +"amq" = ( +/obj/structure/platform/stone/sandstone/north, +/turf/open/gm/river/desert/shallow_corner/west, +/area/caperiver/outdoors/landing_zone_2/river) +"amr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"ams" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"amt" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"amu" = ( +/obj/structure/sign/safety/commline_connection{ + name = "Communications Array Direction"; + desc = "Direction of a Communications Array."; + pixel_x = 6 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/telecomms/telecomm_4) +"amv" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"amw" = ( +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/west) +"amx" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"amy" = ( +/obj/item/trash/hotdog, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"amz" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/road/north) +"amA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + pixel_x = 30 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"amB" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"amC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"amD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/wy_mre, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"amE" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"amF" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"amG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"amH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup"; + pixel_x = 8; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"amI" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"amJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -5; + dir = 6 + }, +/obj/structure/ore_box, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"amK" = ( +/obj/structure/flora/bush/ausbushes/var3/ppflowers{ + icon_state = "brflowers_3" + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"amL" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"amM" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"amN" = ( +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"amO" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/west) +"amP" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"amQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"amR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"amS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"amT" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"amU" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"amV" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -7 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"amW" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"amX" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"amY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"amZ" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"ana" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"anb" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -7 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"anc" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"and" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ane" = ( +/obj/structure/fence/slim, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"anf" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"ang" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"anh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/closet/crate, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"ani" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"anj" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/scrublands/central) +"ank" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"anl" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"anm" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -8 + }, +/turf/open/floor/bluegrid, +/area/caperiver/indoors/processing) +"ann" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8"; + pixel_x = -14; + pixel_y = -19 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/west) +"ano" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"anp" = ( +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north) +"anq" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"anr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"ans" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ant" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"anu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"anv" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"anw" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"anx" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"any" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"anz" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"anA" = ( +/obj/item/tool/shovel, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"anB" = ( +/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/hybrisa/dirt, +/turf/open/desert/dirt, +/area/caperiver/oob) +"anC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"anD" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"anE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"anF" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"anG" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"anH" = ( +/turf/open/floor/prison, +/area/caperiver/outdoors/scrublands/central) +"anI" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"anJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north) +"anK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -4; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"anL" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"anM" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/sign/safety/four{ + layer = 2.9; + pixel_x = 7; + color = "#718184"; + pixel_y = -32 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"anN" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"anO" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"anP" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"anQ" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"anR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"anS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"anT" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"anU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"anV" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"anW" = ( +/obj/structure/platform_decoration/stone/soro/west, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"anX" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"anY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_2/cave) +"anZ" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"aoa" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/platform/stone/soro, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"aob" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"aoc" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aod" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aoe" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aof" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/tool/pen/blue, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"aog" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aoh" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"aoi" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aoj" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/kutjevo/panelscorched, +/area/caperiver/outdoors/scrublands/nw_cave) +"aok" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"aol" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"aom" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"aon" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aoo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aop" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/caperiver/indoors/conambase/recreational) +"aoq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aor" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"aos" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"aot" = ( +/obj/structure/cable/white{ + icon_state = "2-9"; + pixel_x = 15 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aou" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"aov" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"aow" = ( +/obj/structure/window_frame/abyssal/blue, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"aox" = ( +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"aoy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aoz" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1; + layer = 5 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/caperiver/indoors/miningbase/medical) +"aoA" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/desert/dirt, +/area/caperiver/oob) +"aoB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aoC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"aoD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/west) +"aoE" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"aoF" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/landing_zone_2/cave) +"aoG" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aoH" = ( +/obj/structure/machinery/light/small/blue{ + dir = 1 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/north, +/area/caperiver/indoors/conambase/recreational) +"aoI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aoJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"aoK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"aoL" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/organ/lungs, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"aoM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"aoN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"aoO" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aoP" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/caperiver/indoors/conambase/unknown) +"aoQ" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aoR" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"aoS" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"aoT" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aoU" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aoV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"aoW" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aoX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"aoY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aoZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"apa" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"apb" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"apc" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"apd" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"ape" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"apf" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"apg" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/landing_zone_1) +"aph" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"api" = ( +/obj/structure/pipes/vents, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"apj" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"apk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"apl" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"apm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"apn" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"apo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"app" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -23; + pixel_y = 20 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"apq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/scrublands/central) +"apr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aps" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"apt" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/whitegreenfull, +/area/caperiver/indoors/conambase/medical) +"apu" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"apv" = ( +/obj/structure/largecrate/supply{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/landing_zone_2) +"apw" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"apx" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"apy" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/west) +"apz" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/caperiver/indoors/miningbase/medical) +"apA" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"apB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"apC" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"apD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"apE" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"apF" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/caperiver/outdoors/landing_zone_2) +"apG" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/north) +"apH" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"apI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"apJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"apK" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"apL" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/support) +"apM" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"apN" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northwest, +/area/caperiver/indoors/conambase/unknown) +"apO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"apP" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"apQ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"apR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"apS" = ( +/obj/structure/largecrate/empty/secure, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"apT" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"apU" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"apV" = ( +/mob/living/simple_animal/bat, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"apW" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/indoors/miningbase/admin) +"apX" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"apY" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"apZ" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"aqa" = ( +/obj/structure/flora/grass/desert/lightgrass_11{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aqb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"aqc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"aqd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -1; + pixel_y = -3 + }, +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aqe" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"aqf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"aqg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"aqh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aqi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"aqj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aqk" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"aql" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aqm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"aqn" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"aqo" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aqp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/research_w) +"aqq" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aqr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aqs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"aqt" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/south) +"aqu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/north) +"aqv" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/west) +"aqw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aqx" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aqy" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/landing_zone_2) +"aqz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aqA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"aqB" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aqC" = ( +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/indoors/miningbase/engi) +"aqD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aqE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"aqF" = ( +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aqG" = ( +/turf/closed/wall/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aqH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aqI" = ( +/obj/structure/sign/safety/food_storage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fridge{ + layer = 3; + pixel_y = 32; + pixel_x = 14 + }, +/obj/structure/machinery/vending/dinnerware{ + pixel_x = -4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"aqJ" = ( +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"aqK" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aqL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"aqM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aqN" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aqO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"aqP" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"aqQ" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aqR" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"aqS" = ( +/turf/open/floor/kutjevo/tiles, +/area/caperiver/indoors/miningbase/checkpoint) +"aqT" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aqU" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + pixel_y = -6 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/se) +"aqV" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"aqW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"aqX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"aqY" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"aqZ" = ( +/obj/structure/sign/safety/west{ + pixel_y = 23; + pixel_x = 7; + name = "\improper West traffic signal" + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Mining colony"; + desc = "Sign denoting the direction of a mining colony" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south_east) +"ara" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"arb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"arc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"ard" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/caperiver/oob) +"are" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"arf" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"arg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/indoors/miningbase/hydro) +"arh" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"ari" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"arj" = ( +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/freezerfloor, +/area/caperiver/indoors/conambase/support) +"ark" = ( +/obj/structure/platform_decoration/stone/soro/west, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"arl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"arm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/structure/largecrate/supply, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/caperiver/outdoors/mining_base_exterior/south) +"arn" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aro" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"arp" = ( +/obj/structure/platform/stone/soro/north, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -40; + pixel_y = 15 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"arq" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"arr" = ( +/obj/structure/sign/safety/commline_connection{ + pixel_x = 7; + pixel_y = 8; + name = "Communications Array Direction"; + desc = "Direction of a Communications Array." + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 7; + pixel_y = 8; + name = "Communications Array Direction"; + desc = "Direction of a Communications Array." + }, +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ars" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/caperiver/outdoors/landing_zone_2/interior) +"art" = ( +/obj/item/hardpoint/locomotion/van_wheels{ + pixel_x = 5 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/landing_zone_2) +"aru" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south) +"arv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"arw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"arx" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 20; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"ary" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/west/antiweed) +"arz" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"arA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"arB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"arC" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/bushlands) +"arD" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"arE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"arF" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"arG" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"arH" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"arI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"arJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"arK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/scrublands/central) +"arL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/north) +"arM" = ( +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"arN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/conam{ + pixel_y = 31 + }, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"arO" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"arP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/outdoors/scrublands/west) +"arQ" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"arR" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"arS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"arT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/south) +"arU" = ( +/obj/item/tool/wet_sign{ + pixel_x = 3 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"arV" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"arW" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"arX" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/west/antiweed) +"arY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/crate/secure/gear, +/obj/effect/spawner/random/gun/clf_primary/highchance, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"arZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"asa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"asb" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"asc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"asd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"ase" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"asf" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"asg" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"ash" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"asi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"asj" = ( +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"ask" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"asl" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"asm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"asn" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"aso" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"asp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2/southwest, +/area/caperiver/indoors/conambase/delivery) +"asq" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"asr" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"ass" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"ast" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/telecomms/telecomm_3) +"asu" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north) +"asv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"asw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"asx" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/southwest, +/area/caperiver/indoors/miningbase/medical) +"asy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"asz" = ( +/obj/structure/platform/stone/soro/east, +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"asA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"asB" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"asC" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"asD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/autoname{ + dir = 1; + req_one_access = null + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"asE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"asF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/girder/displaced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"asG" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light/blue, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"asH" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"asI" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"asJ" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"asK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/telecomms/telecomm_3) +"asL" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"asM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"asN" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/mob/living/simple_animal/lizard, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"asO" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"asP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"asQ" = ( +/obj/structure/flora/grass/desert/lightgrass_10{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"asR" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 14; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"asS" = ( +/obj/structure/sign/safety/commline_connection{ + name = "Communications Array Direction"; + desc = "Direction of a Communications Array."; + pixel_x = 6 + }, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/telecomms/telecomm_2) +"asT" = ( +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers{ + icon_state = "mining_crawler_blank"; + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"asU" = ( +/obj/structure/cable/white{ + icon_state = "2-5"; + level = 2; + pixel_y = -6; + pixel_x = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"asV" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"asW" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"asX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"asY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"asZ" = ( +/obj/structure/surface/rack, +/obj/item/engi_upgrade_kit, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"ata" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"atb" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/telecomms/telecomm_3) +"atc" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"atd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"ate" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"atf" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"atg" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = 10 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"ath" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7; + icon_state = "sandbag_2" + }, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"ati" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/west) +"atj" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"atk" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"atl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"atm" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"atn" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/n) +"ato" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"atp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"atq" = ( +/obj/effect/landmark/spycam_start, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"atr" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"ats" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"att" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"atu" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"atv" = ( +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/landing_zone_2/river) +"atw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"atx" = ( +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"aty" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"atz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8; + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"atA" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 1; + closed = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"atB" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"atC" = ( +/turf/open/floor/plating/platingdmg2, +/area/caperiver/indoors/caves/s) +"atD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"atE" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"atF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"atG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"atH" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"atI" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"atJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north_west) +"atK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/west/antiweed) +"atL" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -21; + pixel_y = 24 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west) +"atM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"atN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"atO" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/caperiver/indoors/miningbase/medical) +"atP" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"atQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"atR" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_2) +"atS" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"atT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"atU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/rec) +"atV" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"atW" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"atX" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"atY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"atZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/kutjevo/colony, +/area/caperiver/indoors/miningbase/engi) +"aua" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aub" = ( +/obj/item/ammo_magazine/rifle/mar40{ + current_rounds = 0 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"auc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/hybrisa/bunkbed3, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aud" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aue" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/caperiver/indoors/conambase/recreational) +"auf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -35; + pixel_y = -1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aug" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"auh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aui" = ( +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"auj" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"auk" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/checkpoint) +"aul" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/landing_zone_2/river) +"aum" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aun" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"auo" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = -2; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"aup" = ( +/obj/structure/cargo_container/hybrisa/containersextended/redwywingsleft, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"auq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"aur" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aus" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aut" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"auu" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_east) +"auv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"auw" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aux" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"auy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/spawner/random/mats/highchance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/caperiver/indoors/miningbase/medical) +"auz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"auA" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"auB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"auC" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"auD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north) +"auE" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"auF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"auG" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/landing_zone_2) +"auH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6; + layer = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"auI" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"auJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"auK" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"auL" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/sign/conam/variant3{ + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/south) +"auM" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"auN" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"auO" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"auP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"auQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"auR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"auS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"auT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/landing_zone_2) +"auU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"auV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/bushlands) +"auW" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"auX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 15; + dir = 8; + pixel_x = -5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"auY" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"auZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"ava" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"avb" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"avc" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"avd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"ave" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"avf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"avg" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/hybrisa/vehicles/car_pileup{ + pixel_y = -25; + health = 150000 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"avh" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"avi" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"avj" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"avk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"avl" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"avm" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"avn" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"avo" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"avp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/shotgun/flechette/empty, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"avq" = ( +/obj/item/shard, +/obj/structure/machinery/colony_floodlight/engineer_circular{ + alpha = 0 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"avr" = ( +/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 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"avs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/bunker) +"avt" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"avu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"avv" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"avw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"avx" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"avy" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"avz" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/west) +"avA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"avB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_y = 8; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"avC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"avD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/darkbrown2/west, +/area/caperiver/indoors/conambase/delivery) +"avE" = ( +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"avF" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north) +"avG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"avH" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"avI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/darkbrown2/east, +/area/caperiver/indoors/conambase/delivery) +"avJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"avK" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"avL" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"avM" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"avN" = ( +/obj/structure/platform/metal/strata, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/landing_zone_2/river) +"avO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"avP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west/antiweed) +"avQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/caperiver/indoors/miningbase/dorm) +"avR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"avS" = ( +/obj/structure/sign/safety/west{ + pixel_y = 23; + pixel_x = 7; + name = "\improper West traffic signal" + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Mining colony"; + desc = "Sign denoting the direction of a mining colony" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -16; + pixel_y = 11 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"avT" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"avU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/west) +"avV" = ( +/turf/open/floor/station/metal/alt_floor, +/area/caperiver/indoors/conambase/support) +"avW" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"avX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 33 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_8"; + desc = null; + name = "sticky notes" + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"avY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 25; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"avZ" = ( +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_1) +"awa" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"awb" = ( +/obj/structure/platform_decoration/stone/soro/west, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"awc" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/se) +"awd" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"awe" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"awf" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"awg" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"awh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/item/explosive/mine/active/no_iff{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/oob) +"awi" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Red{ + pixel_y = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"awj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"awk" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/indoors/miningbase/admin) +"awl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/central) +"awm" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/west) +"awn" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"awo" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"awp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"awq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"awr" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"aws" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"awt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"awu" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"awv" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/west) +"aww" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"awx" = ( +/obj/structure/ore_box{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"awy" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"awz" = ( +/obj/structure/largecrate/random/case, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"awA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"awB" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/west) +"awC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"awD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"awE" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"awF" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"awG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/large_stain, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"awH" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"awI" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"awJ" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"awK" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/effect/landmark/yautja_teleport, +/obj/effect/landmark/yautja_young_teleport, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = 25 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/north_west) +"awL" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"awM" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"awN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"awO" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"awP" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"awQ" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/unknown) +"awR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"awS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"awT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"awU" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/admin) +"awV" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"awW" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/landing_zone_2) +"awX" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"awY" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 6 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = -6 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"awZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -5; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"axa" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"axb" = ( +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"axc" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 8; + icon_state = "bigrollerempty3_up"; + layer = 4 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"axd" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_west) +"axe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"axf" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north) +"axg" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/caperiver/outdoors/chasm) +"axh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"axi" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"axj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"axk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"axl" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/caperiver/indoors/conambase/research_e) +"axm" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/chasm) +"axn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"axo" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"axp" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"axq" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"axr" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"axs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/wood/wood_broken, +/area/caperiver/outdoors/landing_zone_2/interior) +"axt" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"axu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"axv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"axw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/north) +"axx" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 33; + pixel_x = 7 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"axy" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"axz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"axA" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"axB" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"axC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"axD" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"axE" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"axF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/northwest, +/area/caperiver/indoors/conambase/support) +"axG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/structure/largecrate/empty/case, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"axH" = ( +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"axI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_w) +"axJ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"axK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"axL" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/west) +"axM" = ( +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/unknown) +"axN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"axO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"axP" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north) +"axQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/landing_zone_2) +"axR" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south) +"axS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"axT" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"axU" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"axV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"axW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"axX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/se) +"axY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"axZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aya" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/structure/platform_decoration/stone/mineral/east{ + color = "#716959" + }, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/scrublands/south_east) +"ayb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/sword/machete, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/telecomms/telecomm_3) +"ayc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"ayd" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 4 + }, +/obj/item/stack/rods, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"aye" = ( +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/unknown) +"ayf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"ayg" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"ayh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"ayi" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown_Cargo_Barrels{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"ayj" = ( +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"ayk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"ayl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/caperiver/indoors/miningbase/engi) +"aym" = ( +/obj/structure/flora/grass/desert/heavygrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ayn" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"ayo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"ayp" = ( +/obj/structure/platform/metal/strata, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate, +/area/caperiver/outdoors/landing_zone_2) +"ayq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"ayr" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ays" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/west) +"ayt" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/se) +"ayu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 19 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/caperiver/outdoors/road/central) +"ayv" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"ayw" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"ayx" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"ayy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/paper/crumpled/bloody{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -4 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"ayz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"ayA" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"ayB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/engi) +"ayC" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/road/west/antiweed) +"ayD" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"ayE" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_west) +"ayF" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"ayG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/large_stain{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/carpet/carpet_colorable/blue, +/area/caperiver/indoors/conambase/support) +"ayH" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/caperiver/outdoors/chasm) +"ayI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/station/metal/floor/east, +/area/caperiver/telecomms/telecomm_3) +"ayJ" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"ayK" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"ayL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"ayM" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/s) +"ayN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"ayO" = ( +/obj/effect/decal/remains/robot{ + pixel_x = -14; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"ayP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"ayQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"ayR" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"ayS" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"ayT" = ( +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ayU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"ayV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -14 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"ayW" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/caperiver/outdoors/chasm) +"ayX" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"ayY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"ayZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"aza" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/conambase/research_w) +"azb" = ( +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers{ + icon_state = "mining_crawler_4"; + pixel_x = 5 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"azc" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"azd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aze" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"azf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"azg" = ( +/turf/closed/wall/solaris, +/area/caperiver/outdoors/landing_zone_2/interior) +"azh" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"azi" = ( +/obj/effect/decal/hybrisa/trash, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/engi) +"azj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"azk" = ( +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/support) +"azl" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"azm" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"azn" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"azo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"azp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"azq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/landing_zone_2) +"azr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"azs" = ( +/obj/structure/prop/dam/drill, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"azt" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"azu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"azv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/item/frame/table/almayer, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"azw" = ( +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"azx" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"azy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/safety{ + pixel_y = 37; + pixel_x = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/largecrate, +/turf/open/floor/darkbrown2/northwest, +/area/caperiver/indoors/conambase/delivery) +"azz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"azA" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"azB" = ( +/mob/living/simple_animal/bat, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"azC" = ( +/obj/structure/prop/hybrisa/misc/detonator{ + pixel_y = -5 + }, +/obj/structure/cable/white{ + icon_state = "1-2"; + level = 2 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"azD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/large_stain{ + layer = 2.52; + pixel_y = -13 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/caperiver/outdoors/landing_zone_1/interior) +"azE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"azF" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"azG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/telecomms/telecomm_3) +"azH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"azI" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + pixel_x = -9; + pixel_y = 6 + }, +/obj/structure/platform/stone/soro/east, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"azJ" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1; + icon_state = "sandbag_2" + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"azK" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"azL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/trash/hotdog{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"azM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"azN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/crumpled{ + pixel_x = 9 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/indoors/miningbase/admin) +"azO" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"azP" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"azQ" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"azR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_y = -1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"azS" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"azT" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"azU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/scrublands/central) +"azV" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"azW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"azX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"azY" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"azZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aAa" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north) +"aAb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aAc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"aAd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"aAe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/n) +"aAf" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aAg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aAh" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/landing_zone_1) +"aAi" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north) +"aAk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aAl" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"aAm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"aAn" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/darkredcorners2/west, +/area/caperiver/indoors/conambase/support) +"aAo" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"aAp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"aAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"aAr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"aAs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/south) +"aAt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aAu" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aAv" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west) +"aAw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"aAx" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aAy" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aAz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"aAA" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/west) +"aAB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/mob/living/simple_animal/lizard, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/bushlands) +"aAC" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aAD" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/road/west) +"aAE" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"aAF" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"aAG" = ( +/obj/structure/window/framed/kutjevo, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1"; + name = "\improper Landing Zone Shutters"; + dir = 2 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"aAH" = ( +/turf/open/floor/prison/darkyellow2, +/area/caperiver/indoors/conambase/unknown) +"aAI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/station/metal/floor/north, +/area/caperiver/telecomms/telecomm_3) +"aAJ" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aAK" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/remains/robot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"aAL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"aAM" = ( +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"aAN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aAO" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aAP" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aAQ" = ( +/obj/structure/largecrate/random/secure{ + pixel_x = -2 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"aAR" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Turquoise_Cargo{ + pixel_y = -4; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"aAS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aAT" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/telecomms/telecomm_3) +"aAU" = ( +/obj/structure/largecrate/supply/ammo/sentry{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/inner_corner, +/area/caperiver/telecomms/telecomm_1) +"aAV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aAW" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"aAX" = ( +/obj/structure/machinery/floodlight, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aAY" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"aAZ" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"aBa" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aBb" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aBc" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"aBd" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/dorm) +"aBe" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aBf" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aBg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aBh" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aBi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 4; + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aBj" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aBk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aBl" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = -20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"aBm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aBn" = ( +/obj/item/stack/rods{ + amount = 15 + }, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/se) +"aBo" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/nw_cave) +"aBp" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"aBq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"aBs" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aBt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/landing_zone_2) +"aBu" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"aBv" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"aBw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aBx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = -5 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aBy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrown3/north, +/area/caperiver/outdoors/landing_zone_2/interior) +"aBz" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south) +"aBA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 26 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"aBB" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/sign/conam/variant3{ + pixel_y = 31 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"aBC" = ( +/obj/effect/spawner/random/tool{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"aBD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1; + autoname = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_1) +"aBE" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"aBF" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aBG" = ( +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aBH" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"aBI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aBJ" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aBK" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aBL" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"aBM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"aBN" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aBO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/west) +"aBP" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"aBQ" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aBR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"aBS" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_west) +"aBT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aBU" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"aBV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"aBW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aBX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"aBY" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"aBZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/telecomms/telecomm_3) +"aCa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west/antiweed) +"aCb" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aCc" = ( +/obj/item/weapon/sword/machete, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"aCd" = ( +/obj/structure/sign/poster/corporate{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard/small_stack{ + pixel_x = 8 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"aCe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/telecomms/telecomm_3) +"aCf" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aCg" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"aCh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aCi" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aCj" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"aCk" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aCl" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/west) +"aCm" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"aCn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_x = 7 + }, +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 10 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"aCo" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"aCp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aCq" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_y = 14; + pixel_x = -6; + layer = 3.01 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aCr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aCs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/tanright, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"aCt" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"aCu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"aCv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = -2; + pixel_y = 17 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aCw" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"aCx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"aCy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/north) +"aCz" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/landmark/lizard_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aCA" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"aCB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/indoors/miningbase/admin) +"aCC" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aCD" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"aCE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aCF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"aCG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"aCH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/cell_stripe, +/area/caperiver/indoors/conambase/delivery) +"aCI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aCJ" = ( +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/obj/structure/sign/poster/music{ + pixel_x = 15; + pixel_y = 37 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"aCK" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"aCL" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"aCM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aCN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 4; + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aCO" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aCP" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aCQ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aCR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/telecomms/telecomm_2) +"aCS" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aCT" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aCU" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/west) +"aCV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"aCW" = ( +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"aCX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aCY" = ( +/obj/structure/mineral_door/wood{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aCZ" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aDa" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/bushlands) +"aDb" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"aDc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west) +"aDd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aDe" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 12; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aDf" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aDg" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic/glass/rusted_window_small{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"aDh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aDi" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aDj" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -18; + pixel_y = 13 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"aDk" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/outdoors/scrublands/north) +"aDl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_1) +"aDm" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/north) +"aDn" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aDo" = ( +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/north, +/area/caperiver/indoors/conambase/unknown) +"aDp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aDq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/engi) +"aDr" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aDs" = ( +/obj/structure/cable/white{ + icon_state = "1-10"; + level = 2; + pixel_x = 15 + }, +/obj/structure/cable/white{ + icon_state = "1-9"; + level = 2; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = -11 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"aDt" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aDu" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"aDv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/north_west) +"aDw" = ( +/turf/closed/wall/abyssal/standard/unmeltable, +/area/caperiver/oob) +"aDx" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 1 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 13 + }, +/obj/structure/machinery/big_computers/computerbrown/computer3, +/turf/open/floor/prison/darkbrown2/north, +/area/caperiver/indoors/conambase/recreational) +"aDy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/caperiver/indoors/conambase/research_e) +"aDz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison/darkyellow2/west, +/area/caperiver/indoors/conambase/recreational) +"aDA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/iv_drip, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"aDB" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/south_east) +"aDC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aDD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aDE" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"aDF" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aDG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aDH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"aDI" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/con_am_exterior/south) +"aDJ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aDK" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aDL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"aDM" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aDN" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/north) +"aDO" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/remains/robot{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"aDP" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"aDQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"aDR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/telecomms/telecomm_3) +"aDS" = ( +/obj/structure/prop/invuln/dense/excavator{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aDT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"aDU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 2; + autoname = 1; + req_one_access = null + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aDV" = ( +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"aDW" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"aDX" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/shiva/radiator_tile2, +/area/caperiver/indoors/conambase/engi) +"aDY" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Con-Am Facility"; + desc = "A sign denoting the location of a Con-Am facility." + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"aDZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"aEa" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"aEb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"aEc" = ( +/obj/structure/window_frame/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"aEd" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aEe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"aEf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aEg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"aEh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_3) +"aEi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"aEj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/burger, +/obj/structure/closet/secure_closet/surgical{ + pixel_y = -28; + pixel_x = -1; + req_access = null + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"aEk" = ( +/mob/living/simple_animal/lizard, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aEl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aEm" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/north) +"aEn" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"aEo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/small{ + dir = 4; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"aEp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aEq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"aEr" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aEs" = ( +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"aEt" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"aEu" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aEv" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"aEw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"aEx" = ( +/turf/open/gm/dirt/brown/variant_2, +/area/caperiver/indoors/caves/sw) +"aEy" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"aEz" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"aEA" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"aEB" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_east) +"aED" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aEE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/central) +"aEF" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aEG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aEH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"aEI" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aEJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/indoors/miningbase/engi) +"aEK" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/north_west) +"aEL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aEM" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"aEN" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aEO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aEP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aEQ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aER" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"aES" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aET" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/caperiver/outdoors/scrublands/south_east) +"aEU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Mining colony"; + desc = "Sign denoting the direction of a mining colony" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aEV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aEW" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aEX" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"aEY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aEZ" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aFa" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/caperiver/indoors/conambase/recreational) +"aFb" = ( +/obj/structure/platform/stone/sandstone, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/landing_zone_2/river) +"aFc" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 2.9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aFd" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"aFe" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/caperiver/outdoors/landing_zone_2) +"aFf" = ( +/obj/item/ammo_casing/bullet, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aFg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aFh" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"aFi" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"aFj" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aFk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/central) +"aFl" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"aFm" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aFn" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"aFo" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"aFp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aFq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol/highpower{ + current_rounds = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aFr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"aFs" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/medical) +"aFt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"aFu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -5; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aFv" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 1; + pixel_y = -4 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/se) +"aFw" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aFx" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aFy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aFz" = ( +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aFA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aFB" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"aFC" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aFD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 4; + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aFE" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"aFF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/indoors/miningbase/rec) +"aFG" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"aFH" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/telecomms/telecomm_3) +"aFI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/indoors/miningbase/rec) +"aFJ" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"aFL" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"aFM" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/item/stack/rods, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aFN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/scrublands/north) +"aFO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aFP" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock, +/area/caperiver/oob) +"aFQ" = ( +/obj/structure/flora/grass/desert/lightgrass_12{ + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aFR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers/Fuel{ + dir = 1; + pixel_x = -20; + pixel_y = -10 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + color = "#ffa700"; + layer = 7; + light_color = "#FF7700"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/desert/rock, +/area/caperiver/oob) +"aFS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aFT" = ( +/obj/item/shard, +/obj/effect/decal/remains/robot{ + pixel_x = -21; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"aFU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 4; + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aFV" = ( +/obj/effect/spawner/random/mats/midchance, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aFW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/tool/warning_cone{ + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aFX" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aFY" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/lz_cave) +"aFZ" = ( +/obj/item/stack/rods, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aGa" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/west) +"aGb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aGc" = ( +/turf/open/floor/prison, +/area/caperiver/outdoors/mining_base_exterior/south) +"aGd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aGe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/small{ + dir = 1; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/closet/firecloset, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aGg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/telescreenbrokespark{ + pixel_y = 32 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"aGh" = ( +/obj/structure/fence/slim/dark/door, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aGi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aGj" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"aGk" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aGl" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aGm" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/remains/robot{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"aGn" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south) +"aGo" = ( +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"aGp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"aGq" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aGr" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 1; + pixel_y = -4 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/se) +"aGs" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/telecomms/telecomm_2) +"aGt" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aGu" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/caperiver/outdoors/landing_zone_2/river) +"aGv" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + layer = 3.9; + pixel_y = 8; + pixel_x = -3 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"aGw" = ( +/obj/structure/largecrate/random/case, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"aGx" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"aGy" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aGz" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 4; + pixel_y = -3; + pixel_x = 1; + buckling_x = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aGA" = ( +/turf/open/floor/prison, +/area/caperiver/outdoors/scrublands/north) +"aGB" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/indoors/miningbase/admin) +"aGC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"aGD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"aGE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aGF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/vents/pump, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"aGG" = ( +/obj/structure/machinery/power/power_generator/reactor/colony{ + name = "\improper S-13 solar power collector"; + desc = "Power-bank designed to hold and disperse solar energy collected from the externally mounted solar arrays." + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/engi) +"aGH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_y = -13 + }, +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"aGI" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"aGJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/landing_zone_2) +"aGK" = ( +/obj/structure/machinery/vending/dinnerware{ + pixel_x = 5 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"aGL" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aGM" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aGN" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"aGO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock, +/area/caperiver/oob) +"aGP" = ( +/obj/structure/window/framed/abyssal/standard/hull, +/turf/open/floor/engine, +/area/caperiver/oob) +"aGQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + icon_state = "ground_colorable_alt" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aGR" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"aGS" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aGT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south_east) +"aGU" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"aGV" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/desert_shore/shore_edge1, +/area/caperiver/outdoors/bushlands) +"aGW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"aGX" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aGY" = ( +/obj/item/tool/pickaxe, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aGZ" = ( +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aHa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"aHb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aHc" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aHd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"aHe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/delivery) +"aHf" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south) +"aHg" = ( +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"aHh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aHi" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aHj" = ( +/obj/structure/window_frame/kutjevo, +/obj/item/shard, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/hydro) +"aHk" = ( +/turf/open/floor/station/metal/floor/north, +/area/caperiver/telecomms/telecomm_3) +"aHl" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aHm" = ( +/obj/effect/decal/hybrisa/grate, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/ne) +"aHn" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/central/antiweed) +"aHo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/south) +"aHp" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aHq" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aHr" = ( +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"aHs" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"aHt" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aHu" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aHv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = 20 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aHw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/gun/special/lowchance, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aHx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"aHy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 15; + pixel_y = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aHz" = ( +/mob/living/simple_animal/bat, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aHA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"aHB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"aHC" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aHD" = ( +/obj/item/circuitboard/computer/generic, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"aHE" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aHF" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/west) +"aHG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/large/boulder3{ + color = "#7f6357"; + pixel_x = -16; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder2{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aHH" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aHI" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/north) +"aHJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aHK" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"aHL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aHM" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/obj/item/ammo_magazine/rifle/mar40{ + current_rounds = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aHN" = ( +/turf/closed/wall/abyssal/blue/unmeltable, +/area/caperiver/oob) +"aHO" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_y = 20 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aHP" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aHQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/con_am_exterior/north) +"aHR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aHS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/darkbrowncorners2/north, +/area/caperiver/indoors/conambase/delivery) +"aHT" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aHU" = ( +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"aHV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aHW" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"aHX" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"aHY" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"aIa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aIb" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aIc" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aId" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"aIe" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north) +"aIf" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aIg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"aIh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aIi" = ( +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"aIj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/north) +"aIk" = ( +/obj/effect/spawner/random/sentry/lowchance, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/bushlands) +"aIl" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aIm" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"aIn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aIo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"aIp" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aIq" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aIr" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aIs" = ( +/obj/structure/cable/white{ + icon_state = "1-10"; + level = 2; + pixel_x = 15 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aIt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aIu" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aIv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/con_am_exterior/south) +"aIw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/bushlands) +"aIx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aIy" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/indoors/conambase/unknown) +"aIz" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aIA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aIB" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aIC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"aID" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/west/antiweed) +"aIE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"aIF" = ( +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"aIG" = ( +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"aIH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"aII" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown_Cargo_Barrels, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 14 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"aIJ" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aIK" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aIL" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/sw) +"aIM" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aIN" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1_1"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"aIO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/blocker/invisible_wall, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"aIP" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/west) +"aIQ" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/indoors/miningbase/admin) +"aIR" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aIS" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"aIT" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aIU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"aIV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/conam/big_logo/damage_1{ + pixel_y = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"aIW" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aIX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -19; + pixel_y = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"aIY" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"aIZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/recreational) +"aJa" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aJb" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/north) +"aJc" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aJd" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"aJe" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aJf" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aJg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"aJh" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"aJi" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/caperiver/outdoors/chasm) +"aJj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aJk" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"aJl" = ( +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"aJm" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aJn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aJo" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aJp" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"aJq" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aJr" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/mining_base_exterior/south) +"aJs" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aJt" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"aJu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aJv" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"aJw" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"aJx" = ( +/obj/effect/spawner/random/gun/clf_primary/highchance, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"aJy" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aJz" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/telecomms/telecomm_2) +"aJA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aJB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"aJC" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 3; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"aJD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aJE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"aJF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"aJG" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aJH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aJI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"aJJ" = ( +/obj/structure/cargo_container/hybrisa/containersextended/redwywingsright, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aJK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 17; + dir = 8; + pixel_x = 26 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aJL" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aJM" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aJN" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"aJO" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aJP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/landing_zone_2) +"aJR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aJS" = ( +/obj/effect/decal/hybrisa/grate, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aJT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/recharge_station, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aJU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = -15; + dir = 8; + pixel_x = 7 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"aJV" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/surface/rack, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue, +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/storage/bag/plants{ + pixel_x = 3 + }, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"aJW" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aJX" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"aJY" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"aJZ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"aKa" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"aKb" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aKc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"aKd" = ( +/obj/structure/flora/grass/desert/lightgrass_10{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"aKe" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aKf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north) +"aKg" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"aKh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aKi" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"aKj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aKk" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aKl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/prop/hybrisa/vehicles/car_pileup{ + pixel_y = -8; + pixel_x = -31; + health = 150000 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"aKm" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"aKn" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = 15; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"aKo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aKp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aKq" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"aKr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aKs" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south) +"aKt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, +/area/caperiver/indoors/miningbase/dorm) +"aKu" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north) +"aKv" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aKw" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north) +"aKx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic/glass/rusted_window{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"aKy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/landing_zone_1) +"aKz" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#88715d" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock, +/area/caperiver/oob) +"aKA" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"aKB" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/bushlands) +"aKD" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"aKE" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"aKF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"aKG" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/landing_zone_1) +"aKH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -6; + pixel_y = 3 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = -5 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aKI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aKJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"aKK" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aKL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/southwest, +/area/caperiver/indoors/conambase/support) +"aKM" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"aKN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aKO" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"aKP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"aKQ" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"aKR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 2; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aKS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/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 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"aKT" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"aKU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"aKV" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/landmark/lizard_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aKW" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"aKX" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"aKY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/firstaid/fire, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"aKZ" = ( +/obj/structure/flora/bush/ausbushes/var3/ppflowers, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"aLa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_x = -8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aLb" = ( +/obj/effect/decal/hybrisa/grate, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"aLc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aLd" = ( +/turf/closed/wall/strata_ice/jungle, +/area/caperiver/oob) +"aLe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west/antiweed) +"aLf" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/mob/living/simple_animal/lizard, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aLg" = ( +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 7; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"aLh" = ( +/obj/item/flag/plantable/clf, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aLi" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"aLj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"aLk" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 7; + pixel_y = 8; + name = "Communications Array Direction"; + desc = "Direction of a Communications Array." + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 7; + pixel_y = 8; + name = "Communications Array Direction"; + desc = "Direction of a Communications Array." + }, +/obj/structure/flora/grass/desert/heavygrass_3, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aLl" = ( +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/north_west) +"aLm" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"aLn" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aLo" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aLp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -2; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aLq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aLr" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/north) +"aLs" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aLt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aLu" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aLv" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"aLw" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aLx" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"aLy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"aLz" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/landing_zone_2) +"aLA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aLB" = ( +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aLC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkbrown3/north, +/area/caperiver/outdoors/landing_zone_2/interior) +"aLD" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/hydro) +"aLE" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_y = 20; + pixel_x = -23 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"aLF" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"aLG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/indoors/miningbase/admin) +"aLH" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 8 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"aLI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"aLJ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aLK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"aLL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"aLM" = ( +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"aLN" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"aLO" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/caperiver/indoors/conambase/unknown) +"aLP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"aLQ" = ( +/obj/structure/flora/grass/desert/lightgrass_12{ + pixel_x = -9; + pixel_y = -16 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"aLR" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"aLS" = ( +/turf/open/floor/interior/wood/alt, +/area/caperiver/outdoors/landing_zone_2) +"aLT" = ( +/obj/structure/flora/bush/canyon/bush/alt1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/road/west) +"aLU" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aLV" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"aLW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"aLX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/darkyellow2, +/area/caperiver/indoors/conambase/engi) +"aLY" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aLZ" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"aMa" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west) +"aMb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aMc" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"aMd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aMe" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_east) +"aMf" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/south) +"aMg" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/south) +"aMh" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aMi" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aMj" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aMk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"aMl" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/blocker/forcefield/vehicles, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"aMm" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/north) +"aMn" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aMo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aMp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/effect/decal/large_stain{ + pixel_x = -23; + pixel_y = 7; + layer = 2.1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"aMq" = ( +/turf/open/floor/station/metal/floor/west, +/area/caperiver/telecomms/telecomm_3) +"aMr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan, +/area/caperiver/telecomms/telecomm_4) +"aMs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aMt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"aMu" = ( +/turf/open/floor/corsat, +/area/caperiver/indoors/conambase/unknown) +"aMv" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_east) +"aMw" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor2/east, +/area/caperiver/outdoors/con_am_exterior/south) +"aMx" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aMy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aMz" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aMA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"aMB" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4"; + pixel_x = -10; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aMC" = ( +/obj/effect/landmark/static_comms/net_one, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/telecomms/telecomm_4) +"aMD" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/caperiver/outdoors/landing_zone_1) +"aME" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"aMF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"aMG" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -14; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aMH" = ( +/obj/structure/platform_decoration/stone/soro/west, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7"; + pixel_x = -12; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aMI" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/remains/human{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/organ/liver, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"aMJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/north) +"aMK" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"aML" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west) +"aMM" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aMN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/computer/communications/simple, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"aMO" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aMP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aMQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aMR" = ( +/obj/structure/flora/grass/desert/lightgrass_10{ + pixel_y = -7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"aMS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkgreen2/west, +/area/caperiver/indoors/conambase/recreational) +"aMT" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/landing_zone_2) +"aMU" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aMV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ab8e75"; + dir = 1; + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"aMW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aMX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aMY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/wy_mre, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aMZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"aNa" = ( +/obj/structure/machinery/light/blue, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"aNb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"aNc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"aNd" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"aNe" = ( +/obj/item/tool/wirecutters, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"aNf" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aNg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 18; + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/light/small/blue{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"aNh" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/sign/banners/clf_worn{ + pixel_y = 31; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aNi" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aNj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aNk" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"aNl" = ( +/obj/item/stack/rods, +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aNm" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aNn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/central) +"aNo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"aNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"aNq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/telecomms/telecomm_2) +"aNr" = ( +/obj/structure/ore_box, +/obj/structure/prop/ice_colony/ground_wire, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aNs" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/checkpoint) +"aNt" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aNu" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"aNv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 1; + pixel_y = -11 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aNw" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"aNx" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south) +"aNy" = ( +/obj/structure/stairs/perspective{ + color = "#9b907c" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"aNz" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aNA" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"aNB" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"aNC" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/west) +"aND" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aNE" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/plating, +/area/caperiver/indoors/processing) +"aNF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"aNG" = ( +/turf/closed/wall/strata_outpost, +/area/caperiver/indoors/caves/sw) +"aNH" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aNI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aNJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aNK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"aNL" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aNM" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aNN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"aNO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"aNP" = ( +/turf/open/floor/plating, +/area/caperiver/outdoors/landing_zone_2) +"aNQ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + dir = 4; + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aNR" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aNS" = ( +/turf/open/gm/dirt/brown/variant_3, +/area/caperiver/indoors/caves/sw) +"aNT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"aNU" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"aNV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"aNW" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/north_west) +"aNX" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aNY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/window_frame/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"aNZ" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/cargo_container/hybrisa/containersextended/blueright, +/obj/effect/decal/large_stain{ + pixel_x = 4; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/north) +"aOa" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aOb" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aOc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aOd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 13; + pixel_y = -6; + dir = 8; + layer = 3.1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 18; + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"aOe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aOf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"aOg" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/landing_zone_2) +"aOh" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aOi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aOj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/darkbrowncorners2, +/area/caperiver/indoors/conambase/delivery) +"aOk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aOl" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"aOm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aOn" = ( +/turf/closed/wall/wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aOo" = ( +/obj/structure/flora/grass/desert/lightgrass_10{ + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aOp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aOq" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/mining_base_exterior/north) +"aOr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/indoors/miningbase/engi) +"aOs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aOt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aOu" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aOv" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/rock, +/area/caperiver/indoors/caves/s) +"aOw" = ( +/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, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aOx" = ( +/obj/structure/bed/hybrisa/bunkbed2, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"aOy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aOz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aOA" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/blocker/invisible_wall, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"aOB" = ( +/turf/open/floor/darkblue2/southeast, +/area/caperiver/indoors/conambase/unknown) +"aOC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/large_stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aOD" = ( +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"aOE" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/s) +"aOF" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"aOG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aOH" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/brown/variant_2, +/area/caperiver/indoors/caves/sw) +"aOI" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"aOJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/telecomms/telecomm_2) +"aOK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"aOL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aOM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = -9 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aON" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"aOO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/north) +"aOP" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8 + }, +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/indoors/conambase/bunker) +"aOR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 31 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aOS" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aOT" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/telecomms/telecomm_2) +"aOU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aOV" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"aOW" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aOX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west) +"aOY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"aOZ" = ( +/obj/structure/sign/banners/clf_worn{ + pixel_x = 15; + pixel_y = 31 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/wood/wood_broken3, +/area/caperiver/outdoors/landing_zone_2/interior) +"aPa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aPb" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"aPc" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"aPd" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aPe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aPf" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"aPg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aPh" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aPi" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/ne) +"aPj" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"aPk" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/outdoors/landing_zone_2/river) +"aPl" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"aPm" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/indoors/conambase/recreational) +"aPn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"aPo" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"aPp" = ( +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"aPq" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 13; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aPr" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"aPs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stack/rods, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"aPt" = ( +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aPu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/north) +"aPv" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/obj/item/stack/rods, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"aPw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aPx" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"aPy" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aPz" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aPA" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/west/antiweed) +"aPB" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aPC" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/road/central/antiweed) +"aPD" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/telecomms/telecomm_2) +"aPE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aPF" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aPG" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"aPH" = ( +/obj/structure/sign/banners/clf_worn{ + pixel_x = 9; + pixel_y = 31 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"aPI" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south) +"aPJ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aPK" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aPL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"aPM" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aPN" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"aPO" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aPP" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"aPQ" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aPR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/structure/prop/hybrisa/vehicles/car_pileup{ + health = 150000 + }, +/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/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/oob) +"aPS" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"aPT" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aPU" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/west) +"aPV" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aPW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aPX" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aPY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west) +"aPZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aQa" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/caperiver/indoors/conambase/recreational) +"aQb" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"aQc" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north) +"aQd" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"aQe" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aQf" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aQg" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"aQh" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/hydro) +"aQi" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aQj" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aQk" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/caperiver/indoors/conambase/unknown) +"aQl" = ( +/turf/closed/wall/cult, +/area/caperiver/indoors/conambase/unknown) +"aQm" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aQn" = ( +/obj/structure/cable/white{ + icon_state = "2-8"; + level = 2 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aQo" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"aQp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/galley{ + pixel_x = 36 + }, +/turf/open/floor/darkbrown2/southeast, +/area/caperiver/indoors/conambase/delivery) +"aQq" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown/variant_2, +/area/caperiver/indoors/caves/w) +"aQr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aQs" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"aQt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"aQu" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aQv" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aQw" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/item/stack/rods, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aQx" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west) +"aQy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 6; + pixel_y = 22 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aQz" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aQA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"aQB" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aQC" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aQD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"aQE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aQF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/southeast, +/area/caperiver/indoors/conambase/support) +"aQG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/scrublands/north) +"aQH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aQI" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"aQJ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"aQK" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aQL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aQM" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/indoors/conambase/support) +"aQN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tiles, +/area/caperiver/indoors/miningbase/checkpoint) +"aQO" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"aQP" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"aQQ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8; + layer = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aQR" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/darkred2/southwest, +/area/caperiver/indoors/conambase/support) +"aQS" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aQT" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"aQU" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/central) +"aQV" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aQW" = ( +/obj/item/ammo_casing/bullet, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aQX" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"aQY" = ( +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"aQZ" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aRa" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 83" + }, +/obj/structure/sign/poster/clf{ + pixel_y = 36; + pixel_x = 10 + }, +/turf/open/floor/wood/wood_broken4, +/area/caperiver/outdoors/landing_zone_2/interior) +"aRb" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"aRc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/engi) +"aRe" = ( +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/floor/prison/blue/east, +/area/caperiver/indoors/processing) +"aRf" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"aRg" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"aRh" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"aRi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"aRj" = ( +/mob/living/simple_animal/lizard, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aRk" = ( +/obj/item/bodybag/cryobag, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"aRl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aRm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"aRn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/caperiver/telecomms/telecomm_1) +"aRo" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"aRp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aRq" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/central) +"aRr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aRs" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 33; + pixel_y = 7 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/central) +"aRt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/caperiver/indoors/processing) +"aRu" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"aRv" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aRw" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aRx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"aRy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aRz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aRA" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"aRB" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"aRC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"aRD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aRE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"aRF" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aRG" = ( +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aRH" = ( +/obj/structure/machinery/light, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"aRI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west) +"aRJ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"aRK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"aRL" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aRM" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aRN" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/obj/structure/platform_decoration/metal/strata/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2) +"aRO" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"aRP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"aRQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/road/central) +"aRR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"aRS" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"aRT" = ( +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aRU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/bushlands) +"aRV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"aRW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"aRX" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/caperiver/indoors/conambase/unknown) +"aRY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/south_east) +"aRZ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"aSa" = ( +/obj/structure/platform/metal/strata, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/bushlands) +"aSb" = ( +/obj/structure/prop/invuln/dense/excavator{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aSc" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/indoors/conambase/recreational) +"aSd" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aSe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/darkred2/southeast, +/area/caperiver/indoors/conambase/support) +"aSf" = ( +/obj/structure/mineral_door/wood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aSg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aSh" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"aSi" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aSj" = ( +/obj/item/tool/screwdriver{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aSk" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"aSl" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aSm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain{ + pixel_x = 6; + layer = 2.1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"aSn" = ( +/obj/item/tool/warning_cone{ + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aSo" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = -3; + pixel_y = 12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"aSp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"aSq" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"aSr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aSs" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aSt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"aSu" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aSv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aSw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aSx" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aSy" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aSz" = ( +/obj/structure/platform/metal/strata, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"aSA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aSB" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/ne) +"aSC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"aSD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"aSE" = ( +/obj/item/shard, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"aSF" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"aSG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/landing_zone_2) +"aSH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -5; + pixel_y = -20 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aSI" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aSJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/telecomms/telecomm_1) +"aSK" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"aSL" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south_east) +"aSM" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/indoors/conambase/bunker) +"aSN" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aSO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/colony_floodlight, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"aSP" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"aSQ" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aSR" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/landing_zone_2) +"aSS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#7f6357"; + layer = 2.9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aST" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4; + closed = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/landing_zone_2) +"aSU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/indoors/miningbase/engi) +"aSV" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aSW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"aSX" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"aSY" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"aSZ" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/door/window/brigdoor/eastright, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/checkpoint) +"aTa" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"aTb" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aTc" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/admin) +"aTd" = ( +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aTe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"aTf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"aTg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"aTh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aTi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aTj" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"aTk" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"aTl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"aTm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"aTn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aTo" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"aTp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aTq" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/dorm) +"aTr" = ( +/turf/closed/wall/kutjevo/colony/reinforced/hull, +/area/caperiver/outdoors/landing_zone_1/interior) +"aTs" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/west) +"aTt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"aTu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"aTv" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aTw" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aTx" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"aTy" = ( +/obj/structure/surface/rack, +/obj/item/bodybag/tarp/reactive, +/obj/item/bodybag/tarp/reactive, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"aTz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"aTA" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/road/central) +"aTB" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"aTC" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/effect/landmark/queen_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"aTD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 3; + pixel_y = -6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 8; + pixel_x = -6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aTE" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"aTF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"aTG" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aTH" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/se) +"aTI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aTK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"aTL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"aTM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"aTN" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aTO" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -12; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"aTP" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aTQ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/paper/colonial_grunts, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"aTR" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aTS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aTT" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aTU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"aTV" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aTW" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"aTX" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"aTY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"aTZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aUa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/central) +"aUb" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"aUc" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aUd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aUe" = ( +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aUf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"aUg" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aUh" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"aUi" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/decal/large_stain{ + pixel_x = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/freezerfloor, +/area/caperiver/indoors/conambase/support) +"aUj" = ( +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"aUk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/large_stain{ + layer = 2.52 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/caperiver/indoors/conambase/recreational) +"aUl" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"aUm" = ( +/turf/open/floor/darkgreen2/west, +/area/caperiver/indoors/conambase/recreational) +"aUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"aUo" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/north_west) +"aUp" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aUq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"aUr" = ( +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -16 + }, +/turf/open/floor/darkbrown2/east, +/area/caperiver/indoors/conambase/delivery) +"aUs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"aUt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_east) +"aUu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 1; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -60; + pixel_y = 7 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aUv" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"aUw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"aUx" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aUy" = ( +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"aUz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"aUA" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aUB" = ( +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"aUC" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"aUD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aUE" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown_Cargo_Barrels{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"aUF" = ( +/obj/structure/platform/stone/soro, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -32; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"aUG" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"aUH" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/structure/fence/slim/dark, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"aUI" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/west) +"aUK" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"aUL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aUM" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aUN" = ( +/obj/structure/platform/metal/strata, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aUO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"aUP" = ( +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"aUQ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"aUR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"aUS" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aUT" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -7; + pixel_y = 19 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"aUU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"aUV" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aUW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aUX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"aUY" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"aUZ" = ( +/obj/structure/largecrate/random/case/small{ + pixel_y = 10; + pixel_x = -1 + }, +/obj/structure/largecrate/random/case{ + pixel_y = -7 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aVa" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aVb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"aVc" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/caperiver/indoors/caves/se) +"aVd" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aVe" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aVf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aVg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"aVh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aVi" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/outdoors/landing_zone_2/cave) +"aVj" = ( +/obj/structure/fence/slim/door{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"aVk" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"aVl" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"aVm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"aVn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aVo" = ( +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"aVp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/north) +"aVq" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west) +"aVr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/s) +"aVs" = ( +/obj/structure/prop/static_tank/fuel, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"aVt" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aVu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"aVv" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aVw" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"aVx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"aVy" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -14; + pixel_y = -8 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"aVz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aVA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/south) +"aVB" = ( +/obj/structure/sign/safety/commline_connection{ + name = "Communications Array Direction"; + desc = "Direction of a Communications Array."; + pixel_x = 6 + }, +/turf/closed/wall/kutjevo/colony, +/area/caperiver/telecomms/telecomm_1) +"aVC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + icon_state = "ground_colorable_alt"; + pixel_x = -1; + pixel_y = -3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"aVD" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"aVE" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"aVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + pixel_y = 29 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aVG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aVH" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aVI" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aVJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/far, +/obj/item/shard, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"aVK" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aVL" = ( +/obj/structure/closet/crate/weapon, +/obj/item/weapon/gun/rifle/ak4047, +/obj/item/ammo_magazine/rifle/ak4047, +/obj/item/ammo_magazine/rifle/ak4047, +/obj/item/ammo_magazine/rifle/ak4047, +/obj/item/ammo_magazine/rifle/ak4047, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/obj/structure/sign/poster/safety{ + pixel_x = 9; + pixel_y = 34 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"aVM" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/caperiver/outdoors/landing_zone_2/river) +"aVN" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west/antiweed) +"aVO" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aVP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"aVQ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/west) +"aVR" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/west) +"aVS" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/indoors/miningbase/rec) +"aVT" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/outdoors/chasm) +"aVU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aVV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"aVW" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"aVX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"aVY" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"aVZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/road/west) +"aWa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/central) +"aWb" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/w) +"aWc" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aWd" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aWe" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"aWf" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"aWg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"aWh" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -26; + pixel_y = -14 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aWi" = ( +/obj/structure/platform/stone/soro/west, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aWj" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"aWk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aWl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"aWm" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/outdoors/scrublands/north) +"aWn" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/west) +"aWo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west) +"aWp" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/bushlands) +"aWq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"aWr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"aWs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aWt" = ( +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"aWu" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/caperiver/outdoors/chasm) +"aWv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurplecorners2/east, +/area/caperiver/indoors/conambase/research_e) +"aWw" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"aWx" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/bushlands) +"aWy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"aWz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/item/mre_food_packet/clf{ + pixel_y = 3; + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aWA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aWB" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_1) +"aWC" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aWD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"aWE" = ( +/turf/open/floor/plating, +/area/caperiver/indoors/caves/ne) +"aWF" = ( +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aWG" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"aWH" = ( +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"aWI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12; + layer = 2.52 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"aWJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/telecomms/telecomm_2) +"aWK" = ( +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"aWL" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"aWM" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"aWN" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aWO" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"aWP" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aWQ" = ( +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"aWR" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/hybrisa/metal/zbrownfloor2/east, +/area/caperiver/outdoors/con_am_exterior/north) +"aWS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/bunker) +"aWT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/central) +"aWU" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aWV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/landing_zone_2) +"aWW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aWX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/northeast, +/area/caperiver/indoors/conambase/support) +"aWY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"aWZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aXa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/big_computers/computerbrown/computer4, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"aXb" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north) +"aXc" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"aXd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"aXe" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/central) +"aXf" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aXg" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aXh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/central) +"aXi" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"aXj" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/con_am_exterior/north) +"aXk" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aXl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/central) +"aXm" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"aXn" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/caperiver/outdoors/landing_zone_2/river) +"aXo" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/ne) +"aXp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aXq" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"aXr" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"aXs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aXt" = ( +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"aXu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 27 + }, +/turf/open/gm/river/desert/deep/covered, +/area/caperiver/outdoors/mining_base_exterior/south) +"aXv" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north_west) +"aXw" = ( +/obj/structure/flora/grass/desert/heavygrass_4{ + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aXx" = ( +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"aXy" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"aXz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"aXA" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"aXB" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"aXC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"aXD" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"aXE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"aXF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"aXG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"aXH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/item/tool/weldingtool/screen{ + pixel_x = 8; + pixel_y = 6 + }, +/mob/living/simple_animal/cat/Runtime, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"aXI" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"aXJ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"aXK" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"aXL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"aXM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreencorners2, +/area/caperiver/indoors/conambase/recreational) +"aXN" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"aXO" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aXP" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"aXQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 17; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"aXR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"aXS" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"aXT" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/se) +"aXU" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aXV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"aXW" = ( +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"aXX" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"aXY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_e) +"aXZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north_east) +"aYa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYb" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aYc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"aYd" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"aYe" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/caperiver/indoors/processing) +"aYf" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aYg" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/item/stack/rods, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aYh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"aYi" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/landing_zone_2) +"aYj" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"aYk" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/bushlands) +"aYl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/landing_zone_2) +"aYm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/caperiver/telecomms/telecomm_2) +"aYn" = ( +/obj/structure/largecrate/random/barrel/green{ + layer = 5 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/platform_decoration/stone/soro/east, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aYo" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_east) +"aYp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"aYq" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYr" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aYt" = ( +/obj/structure/flora/bush/desert/cactus/multiple, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aYu" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/se) +"aYv" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"aYw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"aYx" = ( +/turf/open/floor/kutjevo/colors/purple/edge, +/area/caperiver/indoors/miningbase/dorm) +"aYy" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south) +"aYz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/spawner/random/toolbox{ + layer = 4; + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"aYA" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"aYB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/darkbrown2/west, +/area/caperiver/indoors/conambase/delivery) +"aYC" = ( +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"aYD" = ( +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"aYE" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aYF" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"aYG" = ( +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"aYH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -23; + pixel_y = 20 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aYI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -23; + pixel_y = 20 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"aYJ" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYL" = ( +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"aYM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aYN" = ( +/turf/open/floor/station/metal/floor/east, +/area/caperiver/telecomms/telecomm_3) +"aYO" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"aYP" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"aYQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYR" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/indoors/conambase/medical) +"aYS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/landing_zone_2) +"aYT" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYV" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"aYW" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/south) +"aYX" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"aYY" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aYZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"aZa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"aZb" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aZc" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/indoors/miningbase/engi) +"aZd" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"aZe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"aZf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"aZg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 10; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -16; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"aZh" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/colorable_rock/boulder/large/boulder3{ + color = "#7f6357"; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aZi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/trash/cigbutt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"aZj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = 11; + pixel_y = -10 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"aZk" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/landing_zone_2) +"aZl" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"aZm" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aZn" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"aZo" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_one_access = null + }, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/head/hardhat, +/obj/item/device/lightreplacer, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/caperiver/indoors/conambase/engi) +"aZp" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"aZq" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"aZr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"aZs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"aZt" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/caperiver/outdoors/landing_zone_2/river) +"aZu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/caperiver/indoors/miningbase/dorm) +"aZv" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"aZw" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"aZx" = ( +/obj/item/tool/pickaxe, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"aZy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"aZz" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"aZA" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aZB" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"aZC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"aZD" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"aZE" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/south_east) +"aZF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34; + layer = 2.9 + }, +/obj/structure/noticeboard{ + pixel_x = -1; + pixel_y = 32 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_2"; + desc = null; + name = "sticky notes" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"aZH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"aZI" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/indoors/miningbase/admin) +"aZJ" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north_east) +"aZK" = ( +/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/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/oob) +"aZL" = ( +/obj/structure/machinery/light/red{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/unknown) +"aZM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"aZN" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"aZO" = ( +/obj/structure/platform_decoration/stone/soro/east, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aZP" = ( +/turf/open/gm/dirt/brown/variant_1, +/area/caperiver/indoors/caves/sw) +"aZQ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"aZR" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"aZS" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"aZT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"aZU" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"aZV" = ( +/obj/structure/machinery/big_computers/computerbrown/computer4, +/turf/open/floor/prison/darkbrown2/north, +/area/caperiver/indoors/conambase/recreational) +"aZW" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"aZX" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"aZY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"aZZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"baa" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"bab" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"bac" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"bad" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bae" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"baf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"bag" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1; + req_one_access = null + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/bunker) +"bah" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/con_am_exterior/north) +"bai" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/ne) +"baj" = ( +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"bak" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"bal" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/item/stack/rods, +/obj/effect/decal/large_stain, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/caperiver/indoors/miningbase/medical) +"bam" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"ban" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bao" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/escapepod/north, +/area/caperiver/indoors/miningbase/engi) +"bap" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -6; + pixel_y = 22 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"baq" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/large_stain{ + layer = 2.1 + }, +/turf/open/desert/rock, +/area/caperiver/indoors/miningbase/medical) +"bar" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/motiondetector/hacked/clf, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"bas" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + pixel_y = -28; + pixel_x = -10; + layer = 3.51 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bat" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bau" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/sheet/wood, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bav" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"baw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bax" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"bay" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"baz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"baA" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"baB" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"baC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"baD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"baE" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"baF" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"baG" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 7; + pixel_y = -24 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"baH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"baI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"baJ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"baK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"baL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"baM" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"baN" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"baO" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"baP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"baQ" = ( +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"baR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"baS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"baT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"baU" = ( +/obj/item/stack/sheet/wood, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"baV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"baW" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/largecrate/random/case/small, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 13 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"baX" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"baY" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/closed/wall/kutjevo/colony, +/area/caperiver/outdoors/landing_zone_1/cave) +"baZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_x = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bba" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bbb" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bbc" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 34; + pixel_x = 3 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbd" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbe" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbg" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet, +/obj/item/clothing/under/colonist/clf, +/obj/item/weapon/gun/pistol/clfpistol, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"bbi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet, +/obj/item/clothing/under/colonist/clf, +/obj/item/explosive/grenade/phosphorus/clf, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"bbj" = ( +/obj/effect/decal/large_stain, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbk" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbl" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/big_computers/messaging_server/brown, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bbm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbo" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"bbp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bbr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bbs" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/supply/floodlights, +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbu" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbx" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"bbz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbC" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbF" = ( +/obj/structure/bed/hybrisa/prisonbed{ + dir = 10 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbG" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbH" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbJ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbL" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbM" = ( +/obj/item/bedsheet/brown, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbN" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbO" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 4; + pixel_y = -14 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbP" = ( +/obj/structure/bed/hybrisa/prisonbed{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/hybrisa/bunkbed3, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbR" = ( +/obj/structure/largecrate/random/barrel/brown, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbU" = ( +/obj/effect/decal/large_stain, +/obj/structure/bed/hybrisa/prisonbed{ + dir = 5 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbV" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbX" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbY" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/large_stain, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bbZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"bca" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"bcb" = ( +/turf/closed/wall/abyssal/standard/unmeltable, +/area/caperiver/telecomms/telecomm_4) +"bcc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bcd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/north) +"bce" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"bcf" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/landing_zone_2) +"bcg" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/weapon/gun/shotgun/pump{ + pixel_x = 9; + pixel_y = 11 + }, +/obj/item/ammo_casing/shell, +/turf/open/floor/wood/wood_broken5, +/area/caperiver/outdoors/landing_zone_2/interior) +"bch" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + pixel_y = 7; + pixel_x = -10; + layer = 3.51 + }, +/obj/effect/landmark/corpsespawner/clf, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 8; + pixel_x = -5; + layer = 4.1 + }, +/obj/item/clothing/accessory/clf_cape{ + pixel_y = -5; + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"bci" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"bcj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"bck" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"bcl" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west) +"bcm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/barrel/green, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcn" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"bco" = ( +/obj/structure/largecrate/random/case, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/barrel/red, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"bct" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bcu" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcy" = ( +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/unknown) +"bcz" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south) +"bcA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcB" = ( +/obj/item/tool/warning_cone{ + pixel_y = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bcC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"bcG" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"bcH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 14; + pixel_y = -8 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"bcI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini{ + pixel_x = -2; + pixel_y = 12; + layer = 4.13 + }, +/obj/item/stack/sheet/cardboard{ + layer = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1) +"bcJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/sheet/cardboard, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1) +"bcL" = ( +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bcM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 19 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1) +"bcN" = ( +/obj/structure/largecrate/random/mini/ammo, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcO" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcQ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcR" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcS" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcT" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"bcU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bcV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bcW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bcX" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 13; + pixel_y = 8 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bcY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bcZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bda" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/west/antiweed) +"bdb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"bdc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 6; + pixel_y = -10 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bde" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdg" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdh" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini{ + pixel_x = 1; + pixel_y = 14 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1) +"bdj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdk" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"bdl" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"bdm" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdn" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdo" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdp" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdq" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bds" = ( +/obj/structure/largecrate/black_market/confiscated_equipment, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"bdt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bdu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/kelland/left{ + layer = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"bdv" = ( +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bdx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdy" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"bdz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"bdA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bdB" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdC" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + pixel_y = -3; + layer = 2.9 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/sheet/cardboard, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bdE" = ( +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bdF" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bdG" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bdH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1) +"bdI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1) +"bdJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bdK" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"bdM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar, +/obj/effect/landmark/map_item, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 3 + }, +/obj/item/prop/almayer/handheld1{ + pixel_x = -9; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdS" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"bdT" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bdU" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"bdX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bdY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"bdZ" = ( +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/landing_zone_1) +"bea" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = -12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"beb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"bec" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bed" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"bee" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"bef" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"beg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"beh" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/prison/whitegreenfull, +/area/caperiver/indoors/conambase/medical) +"bei" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bej" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bek" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bel" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bem" = ( +/obj/item/trash/cigbutt, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"ben" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1/interior) +"beo" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bep" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"beq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"ber" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bes" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/largecrate/empty/case/double, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bet" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/landingzone{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"beu" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 12 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bev" = ( +/obj/item/trash/cigbutt, +/obj/item/tool/warning_cone{ + pixel_x = -17; + pixel_y = 16 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bew" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/tool/warning_cone{ + pixel_y = 20; + pixel_x = -25 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bex" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bey" = ( +/obj/item/trash/buritto, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"bez" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/tool/crowbar, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"beA" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/White{ + dir = 1; + pixel_y = 4; + layer = 4.12 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/caperiver/outdoors/landing_zone_1) +"beB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"beC" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"beD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"beE" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"beF" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south_east) +"beG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/interior) +"beH" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"beI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paper/crumpled{ + pixel_y = -3 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"beJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1) +"beK" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"beL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"beM" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"beN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"beO" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"beP" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/prison/whitegreenfull, +/area/caperiver/indoors/conambase/medical) +"beQ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"beR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"beS" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"beT" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"beU" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = -1; + pixel_y = 17; + density = 0 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"beV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"beW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"beX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"beY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = -15; + dir = 8; + pixel_x = 7 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"beZ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfa" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"bfb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"bfc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/empty{ + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1) +"bfd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/vending/coffee{ + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/vending/cola{ + pixel_x = -11; + pixel_y = 14 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/small_case{ + layer = 5; + pixel_y = 10; + pixel_x = 9 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bff" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/landing_zone_1) +"bfg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/small_case{ + layer = 5; + pixel_y = 15; + pixel_x = -7 + }, +/obj/structure/largecrate/empty/case{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfh" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfi" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = 1; + pixel_y = 9; + layer = 3.2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -2; + pixel_y = 12; + layer = 3.2 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfl" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfm" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bfs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bft" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bfu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bfv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bfw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bfx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfy" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bfB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bfC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/structure/largecrate/empty/case{ + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfF" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/south) +"bfI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"bfJ" = ( +/obj/item/trash/buritto{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/structure/largecrate/supply, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bfK" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bfL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1) +"bfM" = ( +/obj/item/stack/sheet/cardboard{ + layer = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfN" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bfO" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bfP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bfQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"bfR" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/south/antiweed) +"bfS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/south) +"bfV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bfW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bfX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bfY" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bfZ" = ( +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bga" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/rods{ + pixel_y = 14 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bgb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"bgc" = ( +/obj/item/tool/shovel{ + layer = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bgd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1) +"bge" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/candy, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"bgf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bgg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"bgh" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"bgi" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bgj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"bgk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bgl" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bgm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bgn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/small_case{ + layer = 5; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"bgo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"bgp" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south_east) +"bgq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bgr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bgs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bgt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"bgu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bgv" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/bushlands) +"bgw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bgx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bgy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"bgz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bgA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -6 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"bgB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"bgC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"bgD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west/antiweed) +"bgE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"bgF" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west/antiweed) +"bgG" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"bgH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"bgI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"bgJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"bgK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"bgL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"bgM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"bgN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"bgO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"bgP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"bgQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bgR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bgS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bgT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bgU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/north) +"bgV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bgW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/south) +"bgX" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/south) +"bgY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/south) +"bgZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"bha" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bhb" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/west) +"bhc" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/west) +"bhd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/south) +"bhe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bhf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bhg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"bhh" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"bhi" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bhj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/north) +"bhk" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north) +"bhl" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bhm" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bhn" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/large_stain, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/organ/liver, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"bho" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/south) +"bhp" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bhq" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bht" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhu" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bhv" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bhw" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bhx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"bhy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhA" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"bhB" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bhD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bhE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhF" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bhG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bhH" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/ore_box, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/north) +"bhI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/south) +"bhJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bhK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bhL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bhM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bhN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bhO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/north) +"bhP" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bhQ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bhR" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_x = -8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bhS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bhT" = ( +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"bhU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"bhV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bhW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bhX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"bhY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bhZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bia" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bib" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bic" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bid" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/White, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bie" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"bif" = ( +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"big" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bih" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bii" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bij" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bik" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bil" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/south) +"bim" = ( +/obj/structure/ore_box, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"bin" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"bio" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bip" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"biq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bir" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bis" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/north_west) +"bit" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"biu" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 8; + layer = 4 + }, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 22; + dir = 1 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"bix" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/recreational) +"biy" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"biA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biB" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/south_east) +"biD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"biE" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/south) +"biF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"biG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_3) +"biI" = ( +/turf/open/floor/darkblue2/southwest, +/area/caperiver/indoors/conambase/recreational) +"biJ" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"biK" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -24; + pixel_x = 14 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biL" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = -3; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biM" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"biN" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = -8; + layer = 3.8; + pixel_x = -2 + }, +/turf/open/floor/green/east, +/area/caperiver/indoors/conambase/medical) +"biO" = ( +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"biQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"biR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biT" = ( +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"biU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 4; + icon_state = "bigrollerempty3_up"; + layer = 4 + }, +/turf/open/floor/green/east, +/area/caperiver/indoors/conambase/medical) +"biV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"biW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"biX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"biY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"biZ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = -9; + dir = 1 + }, +/turf/open/floor/green/west, +/area/caperiver/indoors/conambase/medical) +"bja" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/chasm) +"bjb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = -9; + layer = 3.8; + pixel_x = -1 + }, +/turf/open/floor/greencorner, +/area/caperiver/indoors/conambase/medical) +"bjd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/stack/medical/advanced/ointment, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/green, +/area/caperiver/indoors/conambase/medical) +"bje" = ( +/obj/structure/closet/crate/medical{ + name = "medical crate (roller beds)" + }, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/machinery/light/blue{ + pixel_x = -16 + }, +/turf/open/floor/green, +/area/caperiver/indoors/conambase/medical) +"bjf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"bjh" = ( +/obj/effect/decal/large_stain, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"bji" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bjj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/item/device/defibrillator{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/green/west, +/area/caperiver/indoors/conambase/medical) +"bjk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjl" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"bjn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"bjq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"bjr" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"bjs" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"bjt" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bju" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/tool/portadialysis, +/obj/structure/machinery/light/small/blue{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/green/northwest, +/area/caperiver/indoors/conambase/medical) +"bjv" = ( +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"bjw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/device/healthanalyzer, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"bjx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"bjy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/bolted{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"bjA" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"bjB" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"bjC" = ( +/obj/structure/bed/chair/bolted{ + pixel_x = -1; + pixel_y = 16; + l_move_time = s + }, +/obj/structure/sign/poster/corporate{ + layer = 2.1; + pixel_y = 35; + pixel_x = 6 + }, +/obj/structure/sign/poster/conam{ + pixel_y = 31; + layer = 2.2 + }, +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"bjD" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/flora/grass/tallgrass/desert, +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"bjE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"bjF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 16 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"bjG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bjH" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"bjI" = ( +/obj/structure/window/framed/abyssal/standard, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"bjJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_y = -4; + pixel_x = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjK" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bjL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/south) +"bjM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bjN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bjO" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bjP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"bjQ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bjR" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 4; + icon_state = "bigrollerempty_down"; + layer = 4 + }, +/turf/open/floor/green, +/area/caperiver/indoors/conambase/medical) +"bjS" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 13; + pixel_y = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"bjT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/south) +"bjU" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"bjV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/floor/greencorner/north, +/area/caperiver/indoors/conambase/medical) +"bjW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 23 + }, +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"bjX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/greencorner/east, +/area/caperiver/indoors/conambase/medical) +"bjY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/item/storage/surgical_tray, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/green/east, +/area/caperiver/indoors/conambase/medical) +"bjZ" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/medical) +"bka" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/green/west, +/area/caperiver/indoors/conambase/medical) +"bkb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bkc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/central) +"bkd" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/medical) +"bke" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"bkf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/south) +"bkg" = ( +/obj/structure/sign/conam/variant1, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/dorm) +"bkh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bki" = ( +/obj/item/trash/cigbutt, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/south) +"bkj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = 8 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/ammo_box/magazine/misc/mre/emergency/empty{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"bkm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkn" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/obj/item/reagent_container/food/drinks/cans/sodawater{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/cans/sodawater{ + pixel_x = 4 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bko" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkp" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bkr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"bks" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple/edge, +/area/caperiver/indoors/miningbase/dorm) +"bkt" = ( +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/recreational) +"bku" = ( +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?"; + layer = 2.52; + pixel_x = -30; + pixel_y = -32 + }, +/obj/item/organ/heart, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"bkv" = ( +/obj/structure/platform_decoration/stone/mineral{ + color = "#716959" + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"bkw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bkx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bky" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bkz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/closet/emcloset, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"bkA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bkB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"bkD" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/microwave, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkE" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"bkF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bkG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/south) +"bkH" = ( +/obj/structure/platform_decoration/stone/soro/west, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/caperiver/outdoors/chasm) +"bkI" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/chasm) +"bkJ" = ( +/obj/structure/platform_decoration/stone/soro, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#7f6357"; + layer = 2.9 + }, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/caperiver/outdoors/chasm) +"bkK" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkL" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/indoors/miningbase/dorm) +"bkM" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"bkN" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"bkO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/south) +"bkP" = ( +/obj/structure/platform_decoration/stone/soro/north, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2, +/area/caperiver/outdoors/chasm) +"bkQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/mars_cave/mars_cave_9, +/area/caperiver/oob) +"bkR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -4; + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -35; + pixel_y = -1 + }, +/turf/open/mars_cave/mars_cave_14, +/area/caperiver/oob) +"bkS" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"bkT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bkU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -2; + pixel_x = -6 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bkV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bkW" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"bkX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto{ + icon_state = "6_pack_1_crushed" + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bkY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"bkZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = -10 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"bla" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/south) +"blb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"blc" = ( +/obj/structure/platform/stone/soro/east, +/obj/structure/platform/stone/soro, +/obj/structure/blocker/invisible_wall, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/caperiver/outdoors/chasm) +"bld" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/mars_cave/mars_cave_9, +/area/caperiver/oob) +"ble" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + name = "Gonzo The Magnificent" + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/mars_cave/mars_cave_23, +/area/caperiver/oob) +"blf" = ( +/obj/item/trash/cigbutt, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -12; + pixel_y = 21 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -2; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 14; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_cave_17, +/area/caperiver/oob) +"blg" = ( +/obj/item/trash/tray, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 9; + pixel_y = 20 + }, +/turf/open/mars_cave/mars_cave_20, +/area/caperiver/oob) +"blh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"bli" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/telecomms/telecomm_4) +"blj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"blk" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -22 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/dorm) +"bll" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 5; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"blm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bln" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"blo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 4; + dir = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/caperiver/oob) +"blp" = ( +/obj/item/trash/tray{ + pixel_x = -16; + pixel_y = 13 + }, +/obj/item/trash/cigbutt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/mars_cave/mars_cave_20, +/area/caperiver/oob) +"blq" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#7f6357"; + layer = 2.8; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/caperiver/oob) +"blr" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/caperiver/outdoors/chasm) +"bls" = ( +/obj/structure/platform/stone/soro/east, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/chasm) +"blt" = ( +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"blu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"blv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/telescreenbrokespark{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"blw" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 37; + pixel_x = -6 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"blx" = ( +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 19 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/checkpoint) +"bly" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"blz" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/stone/soro/west, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1, +/area/caperiver/outdoors/chasm) +"blA" = ( +/obj/structure/platform/stone/soro, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore, +/area/caperiver/outdoors/chasm) +"blB" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/flora/tree/joshua{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/caperiver/oob) +"blC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/dorm) +"blD" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"blE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"blF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"blG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"blH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"blI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"blJ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"blK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/south) +"blL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"blM" = ( +/obj/structure/platform/stone/soro/north, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"blN" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/bushlands) +"blO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/brown{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"blP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"blQ" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + icon_state = "blank_can_crushed"; + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/bodaplus{ + pixel_x = 4 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"blR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"blS" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"blT" = ( +/obj/structure/bed/hybrisa/bunkbed2{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"blU" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"blV" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/south) +"blW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"blX" = ( +/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 = 13; + pixel_x = -6 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"blY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/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 = 13; + pixel_x = -6 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"blZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/indoors/miningbase/dorm) +"bma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/mats/lowchance, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/dorm) +"bmb" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"bmc" = ( +/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 = 9; + pixel_x = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"bmf" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bmg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bmh" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = 17 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bmi" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bmj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/caperiver/indoors/miningbase/medical) +"bmk" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/con_am_exterior/north) +"bml" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/con_am_exterior/north) +"bmm" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bmq" = ( +/obj/structure/platform/metal/strata/west{ + layer = 4.12 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 16; + pixel_y = 19; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bmr" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/north) +"bms" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/north) +"bmt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/north) +"bmu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bmv" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/north) +"bmw" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"bmx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bmy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/north) +"bmz" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/north) +"bmA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/north) +"bmB" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"bmC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"bmD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/north) +"bmE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/north) +"bmF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/north) +"bmG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/north) +"bmH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/north) +"bmI" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"bmJ" = ( +/obj/item/trash/cigbutt, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north) +"bmK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bmL" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north) +"bmM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"bmN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"bmO" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/north) +"bmP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bmQ" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"bmR" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"bmS" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"bmT" = ( +/obj/item/frame/table/almayer, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"bmU" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"bmV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"bmW" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/outdoors/scrublands/north) +"bmX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"bmY" = ( +/obj/effect/landmark/corpsespawner/administrator, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"bmZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/caperiver/indoors/processing) +"bna" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -22; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -12; + pixel_y = 26 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bnb" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"bnc" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"bnd" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/scrublands/south) +"bne" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"bnf" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"bng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"bnh" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"bni" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"bnj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"bnk" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"bnl" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"bnm" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"bnn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/north) +"bno" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bnp" = ( +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bns" = ( +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bnt" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bnu" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -9; + pixel_y = -5 + }, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"bnv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/north) +"bnx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bny" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkpurplecorners2, +/area/caperiver/indoors/conambase/research_e) +"bnz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/shovel/etool, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnB" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"bnC" = ( +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"bnD" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"bnF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnH" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnI" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/caperiver/indoors/processing) +"bnK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/north) +"bnL" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 30; + pixel_x = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"bnM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north) +"bnN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/caperiver/indoors/processing) +"bnO" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/obj/item/stack/sandbags/small_stack, +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bnP" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bnR" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bnS" = ( +/turf/open/floor/bluegrid, +/area/caperiver/indoors/processing) +"bnT" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"bnV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bnW" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bnX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/north) +"bnY" = ( +/obj/structure/girder, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"bnZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/north) +"boa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/north) +"bob" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"boc" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bod" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"boe" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"bof" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/sheet/animalhide/human, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/unknown) +"bog" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"boh" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"boi" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"boj" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bok" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bol" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/caperiver/indoors/processing) +"bom" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/frame/table/almayer, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_e) +"bon" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"boo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bop" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"boq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bor" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bos" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/con_am_exterior/north) +"bot" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bou" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bov" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/window/framed/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"bow" = ( +/obj/item/shard, +/obj/structure/window_frame/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"box" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"boy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"boz" = ( +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/command) +"boA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"boB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/southeast, +/area/caperiver/indoors/conambase/command) +"boC" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"boD" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north) +"boE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"boF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"boG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"boH" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/command) +"boI" = ( +/obj/item/shard, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"boJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"boK" = ( +/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 = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/southwest, +/area/caperiver/indoors/conambase/command) +"boL" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"boM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"boN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/conam{ + pixel_y = 34; + pixel_x = 3 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/northeast, +/area/caperiver/indoors/conambase/support) +"boO" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/gm/river/desert/deep/covered, +/area/caperiver/indoors/conambase/research_w) +"boP" = ( +/obj/item/shard, +/obj/structure/window_frame/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"boQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"boR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -10 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"boS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"boT" = ( +/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 = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/southeast, +/area/caperiver/indoors/conambase/command) +"boU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/command) +"boV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"boW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/command) +"boX" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"boY" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"boZ" = ( +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bpa" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"bpb" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/flamer/survivor, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"bpc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/unknown) +"bpd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"bpf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/storage/belt/utility/full, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"bpg" = ( +/obj/structure/girder/displaced, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/command) +"bph" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"bpi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/command) +"bpj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"bpk" = ( +/obj/item/stack/cable_coil/blue, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"bpl" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"bpm" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bpn" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"bpo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/command) +"bpp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"bpq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/sheet/metal, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"bpr" = ( +/obj/item/frame/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bps" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/analyzer, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bpt" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/spawner/random/sentry/lowchance, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bpu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"bpv" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"bpw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"bpx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"bpy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"bpz" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"bpA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12; + layer = 2.52 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + layer = 6 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpC" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"bpD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"bpE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"bpF" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpG" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpI" = ( +/obj/item/frame/table/almayer, +/turf/open/floor/darkblue2/northeast, +/area/caperiver/indoors/conambase/command) +"bpJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkblue2/northwest, +/area/caperiver/indoors/conambase/command) +"bpK" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/turf/open/floor/darkblue2/northeast, +/area/caperiver/indoors/conambase/command) +"bpM" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkblue2/southwest, +/area/caperiver/indoors/conambase/command) +"bpN" = ( +/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 = 14 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpP" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpQ" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpR" = ( +/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 = 14 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpS" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"bpT" = ( +/obj/item/tool/wrench, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpU" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 32 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -7 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"bpW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bpY" = ( +/obj/structure/computerframe{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"bpZ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bqa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bqb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bqc" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bqd" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"bqe" = ( +/obj/item/stack/rods{ + pixel_y = -6; + pixel_x = -3 + }, +/obj/structure/machinery/big_computers/computerblack/computer2{ + pixel_y = 18; + pixel_x = 9; + density = 0 + }, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bqf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/computer3{ + pixel_y = 11; + density = 0; + unacidable = 1; + explo_proof = 1; + layer = 2.99 + }, +/obj/item/prop{ + icon = 'icons/obj/structures/machinery/computer3.dmi'; + icon_state = "generic"; + name = "Console Screen"; + pixel_y = 10; + explo_proof = 1; + unacidable = 1; + light_range = 2; + light_color = "#008000"; + light_on = 1; + anchored = 1 + }, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bqg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/computer3{ + pixel_y = 11; + density = 0; + unacidable = 1; + explo_proof = 1; + layer = 2.99 + }, +/obj/item/prop{ + icon = 'icons/obj/structures/machinery/computer3.dmi'; + icon_state = "power"; + name = "Console Screen"; + pixel_y = 10; + explo_proof = 1; + unacidable = 1; + light_range = 2; + light_color = "#FFEA00"; + light_on = 1; + anchored = 1 + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bqh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/conam/variant1{ + pixel_y = 31 + }, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bqi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 35 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bqj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"bqk" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"bql" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqm" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"bqq" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqr" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqs" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bqu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqv" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqw" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqx" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bqy" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqz" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bqA" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/con_am_exterior/south) +"bqB" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqC" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqD" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bqF" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = -9; + pixel_y = 16 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bqG" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqH" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqI" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"bqJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqK" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"bqL" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bqM" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqN" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bqO" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"bqP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqQ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"bqS" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqT" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/south) +"bqU" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"bqV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"bqW" = ( +/obj/item/trash/cigbutt, +/obj/item/stack/sheet/cardboard{ + layer = 1; + pixel_x = 12 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bqX" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bqY" = ( +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"bqZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"bra" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/spawner/random/mats/midchance, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"brb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"brc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"brd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1) +"bre" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"brf" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"brh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bri" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"brk" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brl" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"brm" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"brn" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"bro" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = 12; + pixel_y = 27 + }, +/turf/open/gm/river/desert/deep/covered, +/area/caperiver/outdoors/mining_base_exterior/south) +"brp" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"brq" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"brr" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"brs" = ( +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"brt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"bru" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brv" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"brw" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"brx" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/south) +"bry" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"brz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/mats/lowchance, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"brA" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"brC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brD" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brE" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/con_am_exterior/south) +"brF" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brG" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/obj/structure/machinery/colony_floodlight, +/obj/structure/sign/conam/variant3{ + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brH" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"brI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"brJ" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"brK" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brL" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"brM" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"brN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -3; + pixel_y = -5 + }, +/obj/structure/flora/bush/ausbushes/palebush{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"brO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"brP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"brQ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"brR" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"brS" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brT" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"brU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"brV" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"brW" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = 14 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"brX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"brY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"brZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bsa" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bsb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bsc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bsd" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"bse" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bsf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"bsg" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"bsh" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsi" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bsj" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/kutjevo/tiles, +/area/caperiver/indoors/miningbase/checkpoint) +"bsk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bsl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bsm" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"bsn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"bso" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"bsp" = ( +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"bsq" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/blue, +/turf/open/floor/station/metal/floor/southwest, +/area/caperiver/telecomms/telecomm_3) +"bsr" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bss" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bst" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsu" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"bsy" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/obj/structure/platform/metal/strata, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"bsz" = ( +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"bsA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel{ + layer = 3.2; + pixel_x = 2 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"bsD" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bsE" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bsF" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 3.3 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsG" = ( +/obj/structure/largecrate/random, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsJ" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northwest, +/area/caperiver/indoors/conambase/engi) +"bsL" = ( +/obj/structure/flora/grass/desert, +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bsM" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsN" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsO" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"bsQ" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"bsR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"bsS" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/bushlands) +"bsT" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/south) +"bsU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/conam/variant1/damage1{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"bsV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bsW" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bsX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bsY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"bsZ" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"bta" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btb" = ( +/obj/structure/window/framed/abyssal/blue/hull, +/turf/closed/wall/abyssal/blue/unmeltable, +/area/caperiver/oob) +"btc" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bte" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/central) +"btf" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"btg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bth" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bti" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btk" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/caperiver/outdoors/landing_zone_1) +"btl" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"btm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btn" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bto" = ( +/obj/effect/spawner/random/mats/lowchance, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"btp" = ( +/obj/effect/spawner/random/gun/smg/lowchance, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"btq" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"btr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + pixel_x = 5; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/indoors/miningbase/engi) +"bts" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btt" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"btu" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/obj/structure/flora/tree/joshua{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"btv" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"btw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/hybrisa/medical_solid/autoname, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bty" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btz" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"btA" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/upp_primary/highchance, +/obj/effect/spawner/random/gun/upp_secondary/highchance, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"btB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"btC" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"btD" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/obj/item/device/encryptionkey/upp/kdo, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"btE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"btF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"btG" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"btH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"btI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"btJ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"btK" = ( +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"btL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"btM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"btN" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"btO" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/con_am_exterior/south) +"btP" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"btQ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"btR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"btS" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"btU" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"btV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"btW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btX" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"btY" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"btZ" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"bua" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"bub" = ( +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/indoors/miningbase/rec) +"buc" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/south) +"bud" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"bue" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"buf" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bug" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"buh" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bui" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"buj" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"buk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bul" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -13; + pixel_y = -11 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"bum" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bun" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"buo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"buq" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"bur" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -5; + pixel_y = -22 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"bus" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/obj/structure/platform/metal/strata/east, +/obj/item/tool/warning_cone{ + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"but" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"buu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"buv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buw" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bux" = ( +/obj/effect/spawner/random/gun/pistol/highchance, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"buy" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"buA" = ( +/obj/structure/flora/grass/desert/heavygrass_3{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/con_am_exterior/north) +"buD" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 15; + pixel_y = 19; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = -2 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"buG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buJ" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buK" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buL" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"buM" = ( +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -14 + }, +/turf/open/floor/prison/cell_stripe, +/area/caperiver/indoors/conambase/delivery) +"buN" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/north) +"buO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 10; + pixel_y = -11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buP" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buQ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buR" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buS" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"buT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"buU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"buV" = ( +/obj/structure/flora/grass/desert/heavygrass_3{ + pixel_y = -9 + }, +/obj/structure/flora/grass/desert/lightgrass_11{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/north) +"buW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"buX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"buY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/north) +"buZ" = ( +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"bva" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_x = 2; + pixel_y = -7 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bvb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bvc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bvd" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"bve" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"bvf" = ( +/obj/effect/spawner/random/gun/special/midchance, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/indoors/miningbase/admin) +"bvg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"bvh" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -5; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -1; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"bvj" = ( +/obj/effect/spawner/random/gun/special/midchance, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"bvk" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"bvl" = ( +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"bvm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/north) +"bvn" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bvo" = ( +/obj/effect/spawner/random/sentry/lowchance, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/processing) +"bvp" = ( +/obj/effect/spawner/random/gun/special/midchance, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bvr" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_y = 15 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"bvs" = ( +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bvt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvu" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bvv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"bvw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bvx" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bvy" = ( +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bvz" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/platform/stone/soro, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -18; + pixel_y = 27 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bvA" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bvB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"bvC" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvD" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"bvE" = ( +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = 12; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvF" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -4; + pixel_y = 16 + }, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bvG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/north) +"bvH" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"bvI" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvJ" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvK" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"bvL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 36; + pixel_y = -26 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"bvM" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"bvP" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvQ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"bvR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 27 + }, +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"bvS" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"bvU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"bvX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/s) +"bvY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bvZ" = ( +/obj/effect/spawner/random/gun/special/midchance, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bwa" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bwb" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bwc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"bwd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/s) +"bwe" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/north) +"bwf" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bwg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"bwh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/s) +"bwi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"bwj" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bwk" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"bwl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"bwm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"bwn" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"bwo" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"bwp" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"bwq" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"bwr" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"bws" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"bwt" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"bwu" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"bwv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/w) +"bww" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"bwx" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"bwy" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/con_am_exterior/north) +"bwz" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"bwA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/w) +"bwB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"bwC" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"bwD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"bwE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"bwF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bwG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bwH" = ( +/obj/structure/prop/hybrisa/misc/blood/blood3{ + layer = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/unknown) +"bwI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"bwJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"bwK" = ( +/obj/effect/spawner/random/mats/lowchance, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"bwL" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bwM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"bwN" = ( +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bwO" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/paper/crumpled, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bwP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"bwQ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 9; + pixel_x = -17 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bwR" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14" + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"bwS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"bwT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/iv_drip{ + layer = 3.1; + pixel_x = 4 + }, +/obj/structure/machinery/iv_drip{ + pixel_x = 4; + pixel_y = 22 + }, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bwU" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1) +"bwV" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/bush/ausbushes/palebush{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"bwW" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/conambase/research_e) +"bwX" = ( +/turf/closed/wall/abyssal/blue/unmeltable, +/area/caperiver/indoors/conambase/research_e) +"bwY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/sword/machete, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"bwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pouch/machete/full, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"bxa" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/conambase/command) +"bxb" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bxf" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = 23 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bxg" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/structure/machinery/colony_floodlight/engineer_circular{ + alpha = 0 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"bxk" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bxl" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bxn" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/security) +"bxo" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/admin) +"bxp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxq" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/medical) +"bxr" = ( +/turf/closed/wall/strata_ice/rock, +/area/caperiver/outdoors/landing_zone_2) +"bxs" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/dorm) +"bxt" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/caperiver/indoors/processing) +"bxu" = ( +/turf/open/desert/rock, +/area/caperiver/oob) +"bxv" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"bxw" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"bxx" = ( +/turf/closed/wall/wood, +/area/caperiver/indoors/caves/s) +"bxy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers{ + icon_state = "mining_crawler_4"; + pixel_x = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"bxz" = ( +/turf/closed/wall/wood, +/area/caperiver/indoors/caves/central) +"bxA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"bxB" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"bxC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxD" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"bxE" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"bxF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxG" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/spawner/random/toolbox{ + pixel_y = 14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil{ + pixel_y = -8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxI" = ( +/obj/effect/decal/cleanable/blood/oil{ + pixel_y = -8 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"bxK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"bxR" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxS" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = -11; + layer = 4.12 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxT" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxX" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxY" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bxZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"bya" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"byb" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"byc" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"byd" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"bye" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder2{ + color = "#7f6357"; + pixel_y = 5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"byf" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"byg" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"byh" = ( +/obj/structure/flora/bush/canyon/bush/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"byi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"byj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/west/antiweed) +"byk" = ( +/obj/structure/flora/bush/canyon/bush/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"byl" = ( +/obj/structure/flora/bush/canyon/grass_orange, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/west/antiweed) +"bym" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -13; + pixel_y = -5 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/west/antiweed) +"byn" = ( +/obj/structure/flora/bush/canyon/grass_orange, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west/antiweed) +"byo" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"byp" = ( +/obj/structure/flora/bush/canyon/bush/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"byq" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west) +"byr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"bys" = ( +/obj/structure/flora/bush/canyon, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"byt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"byB" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = 23 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"byF" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"byJ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"byL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"byM" = ( +/obj/structure/flora/grass/desert/lightgrass_10{ + pixel_x = 2; + pixel_y = -18 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"byQ" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 12; + pixel_y = 23 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"byR" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"byS" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"byU" = ( +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"byV" = ( +/obj/structure/platform/stone/soro, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -14; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"byX" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"byZ" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/platform/stone/soro, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -14; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bzc" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/chasm) +"bzd" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bze" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bzf" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 4 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bzg" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bzk" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bzn" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"bzo" = ( +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"bzp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = 5 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 9; + pixel_y = 20 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"bzq" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder2{ + color = "#88715d"; + pixel_x = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"bzs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"bzu" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"bzx" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"bzy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"bzz" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bzA" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"bzB" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bzH" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + pixel_x = -3; + pixel_y = 4; + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/chasm) +"bzJ" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/shallow_corner, +/area/caperiver/outdoors/chasm) +"bzT" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bzU" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 7; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bzV" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bzW" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bzZ" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bAa" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 23 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bAi" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bAj" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bAm" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = 10; + layer = 2.9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bAq" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bAr" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -4; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bAs" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bAu" = ( +/obj/structure/prop/invuln/dense/cliff_wall/left_short{ + pixel_y = 15 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -7; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bAv" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 8; + pixel_x = 14; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bAx" = ( +/turf/open/desert/desert_shore/shore_corner1/west, +/area/caperiver/outdoors/chasm) +"bAA" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/caperiver/outdoors/chasm) +"bAB" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 14; + pixel_y = -6 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bAU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bAV" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 4; + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBa" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = 14; + pixel_y = -5 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBf" = ( +/obj/structure/prop/invuln/dense/cliff_wall/left_short{ + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBl" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bBo" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBq" = ( +/obj/structure/platform/metal/strata/west{ + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBs" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -8; + pixel_y = -15 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBu" = ( +/obj/item/paper/crumpled{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"bBw" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/scrublands/north) +"bBx" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bBz" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 17; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBB" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBC" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d"; + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/oob) +"bBD" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 4; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBG" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 13 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bBH" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"bBI" = ( +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bBJ" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -1; + pixel_y = 24 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bBK" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBM" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bBN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4; + pixel_y = 14 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bBO" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bBP" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 3; + pixel_x = 19 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBQ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/prop/fake/railing/strata{ + dir = 4; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bBR" = ( +/obj/structure/machinery/light/small{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/caves/se) +"bBS" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bBX" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"bCh" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_y = -1 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north) +"bCk" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 14; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCl" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCr" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north) +"bCs" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"bCt" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bCu" = ( +/obj/structure/flora/bush/canyon/grass_orange, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"bCv" = ( +/obj/structure/flora/bush/canyon/grass_orange, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"bCw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"bCx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bCy" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 16; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"bCz" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bCA" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bCB" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bCC" = ( +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bCD" = ( +/obj/structure/platform/stone/soro, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bCE" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/caperiver/outdoors/chasm) +"bCF" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bCG" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/caperiver/outdoors/chasm) +"bCH" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 21; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bCI" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bCJ" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"bCK" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"bCL" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + pixel_x = -10; + pixel_y = 4; + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/chasm) +"bCM" = ( +/obj/structure/prop/colorable_rock/colorable{ + dir = 4; + pixel_x = -11; + pixel_y = -10; + color = "#ccad8f" + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/chasm) +"bCN" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bCO" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 40 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 19; + pixel_y = 23 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/chasm) +"bCP" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCQ" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = -17 + }, +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2, +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCR" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCS" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = -18 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 11; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCT" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -19; + pixel_y = 9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCU" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCV" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 4; + pixel_x = -12; + pixel_y = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCW" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -18; + pixel_y = 9 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCX" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bCY" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = 11 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bCZ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 1; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bDa" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -13; + pixel_y = 7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bDb" = ( +/obj/structure/prop/invuln/dense/cliff_wall/left_short{ + pixel_y = 21 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/oob) +"bDc" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -6; + pixel_y = 25 + }, +/turf/open/desert/desert_shore/shore_corner1/north, +/area/caperiver/outdoors/chasm) +"bDd" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bDe" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bDf" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/caperiver/outdoors/chasm) +"bDg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"bDh" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/caperiver/outdoors/chasm) +"bDi" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = -10 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/caperiver/outdoors/chasm) +"bDj" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 14; + pixel_y = 30 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/chasm) +"bDk" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/chasm) +"bDl" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bDm" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"bDn" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 12 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = -13; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDo" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 8; + pixel_x = 2; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDp" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = -8; + pixel_x = 7 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -6; + pixel_y = -10 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 8; + pixel_x = -7; + pixel_y = 14 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDq" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -20; + pixel_y = 1 + }, +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_x = 9; + pixel_y = -7 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDr" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 13; + pixel_y = -1 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDs" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -18; + pixel_y = 20; + dir = 1 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDt" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -5 + }, +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_x = -11; + pixel_y = 14 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDu" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 4; + pixel_x = -13; + pixel_y = 11 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDv" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -19; + pixel_y = -3 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -2; + pixel_y = 23 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bDw" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 6 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -2; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"bDx" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = 6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDy" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDz" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDA" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -26 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDB" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDC" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -28; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDD" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 12; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"bDF" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -13; + pixel_y = 25; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/north) +"bDH" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/mining_base_exterior/north) +"bDI" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDJ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDK" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 12; + pixel_y = 5; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDL" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDM" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDN" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/chasm) +"bDO" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDP" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 16; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDQ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + dir = 1; + pixel_x = -18; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDR" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDS" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ab8e75"; + dir = 1; + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bDV" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"bDW" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = 7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/oob) +"bDX" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -4 + }, +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 3; + pixel_y = 22 + }, +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_x = -13; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDY" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 8; + pixel_x = 12; + pixel_y = 14 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bDZ" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 14; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEa" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEb" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -4; + pixel_y = 23 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEc" = ( +/obj/structure/prop/invuln/dense/cliff_wall/left_short{ + pixel_y = 7; + layer = 3.1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEd" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/caperiver/outdoors/chasm) +"bEf" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEg" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/chasm) +"bEh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"bEi" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = -4 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEj" = ( +/obj/structure/prop/invuln/dense/cliff_wall/short{ + pixel_y = -15 + }, +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEk" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEl" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEm" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -19; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEn" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = -21; + pixel_y = 4 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -11; + pixel_y = -2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bEo" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bEp" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = 10; + pixel_y = -18 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bEq" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bEr" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = 29 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bEs" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = 18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bEt" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 14; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bEu" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 9; + pixel_x = 13 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"bEv" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = -18; + pixel_y = -3 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 15; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEw" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -2; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEx" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + dir = 1; + pixel_x = 13; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEy" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -17; + pixel_y = -12 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -5; + pixel_y = -15 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEz" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEA" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 10; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEB" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEC" = ( +/obj/structure/flora/bush/canyon/grass_green/alt2{ + pixel_x = 1; + pixel_y = -13 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bED" = ( +/obj/structure/flora/bush/canyon/grass_green/alt1{ + dir = 1; + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEE" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = -17; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEF" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = 11; + pixel_y = 11 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -5; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEG" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 15; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEH" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEI" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_x = -15; + pixel_y = -14 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEJ" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEK" = ( +/obj/structure/flora/bush/canyon/grass_green/alt2{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEL" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 22 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bEM" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bEN" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2; + pixel_y = 22 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 1; + pixel_y = 24 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bEO" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_y = -15; + pixel_x = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEP" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEQ" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"bER" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bES" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 2; + pixel_y = -15 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bET" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 9; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEU" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 14; + pixel_y = 12 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 4; + pixel_x = -16; + pixel_y = -15 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEV" = ( +/obj/structure/flora/bush/canyon/grass_green/alt2{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEW" = ( +/obj/structure/flora/bush/canyon/grass_green/alt2{ + pixel_x = 4; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEX" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_y = 6; + pixel_x = -15 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEY" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bEZ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFa" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -16; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFb" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"bFc" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFd" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -3; + pixel_y = 27; + layer = 3.1 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + layer = 3.12; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/chasm) +"bFe" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = 6; + pixel_y = -11 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/chasm) +"bFf" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bFg" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -8; + pixel_y = 22 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bFh" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"bFi" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 4; + pixel_x = 14; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bFj" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFk" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_y = -10; + pixel_x = 5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFl" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 8; + pixel_x = 14; + pixel_y = 5 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFm" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 15; + pixel_y = -8; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFn" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -17; + pixel_y = 11 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFo" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_x = -3; + pixel_y = -16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/oob) +"bFp" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bFq" = ( +/obj/structure/prop/invuln/dense/cliff_wall/left_short{ + pixel_y = 36 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bFr" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -20; + pixel_y = 25 + }, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/caperiver/outdoors/chasm) +"bFt" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/caperiver/outdoors/chasm) +"bFu" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bFv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"bFw" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_y = 17; + pixel_x = -5 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bFx" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bFy" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = 10; + pixel_y = -6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFz" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -11; + pixel_y = -7 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bFA" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = -15; + pixel_y = 1 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = -8 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bFB" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_y = -4 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bFC" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bFD" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 1; + pixel_y = 22 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bFE" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 11; + pixel_y = 19 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = 12; + pixel_y = -3 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/chasm) +"bFF" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"bFG" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"bFH" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFI" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFJ" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 10; + pixel_y = 6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFK" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_y = 12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFM" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"bFN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bFO" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFP" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = 3 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFQ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 9; + pixel_y = -28 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFR" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFS" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFT" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFU" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_x = -1; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFV" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFW" = ( +/obj/structure/flora/bush/canyon/grass_green/alt2{ + pixel_x = -11; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFX" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = -12 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFY" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bFZ" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGa" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGb" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt, +/area/caperiver/oob) +"bGc" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 4; + pixel_y = 22 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/oob) +"bGd" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 12; + pixel_y = 23; + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGe" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -18; + pixel_y = 14 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGf" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -4 + }, +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 2; + pixel_y = 23 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGg" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGh" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -4 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bGi" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"bGj" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bGk" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 10; + pixel_y = 16 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bGl" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -4 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = 17 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bGm" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bGn" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 3; + pixel_y = 23 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGo" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 14; + pixel_x = 6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -7; + pixel_y = -16 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGp" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/remains/robot{ + pixel_y = -5; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"bGq" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_x = -12; + pixel_y = 10 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = -9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGr" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGs" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGt" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGu" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGv" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -13; + pixel_y = -2 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -17 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGw" = ( +/obj/structure/prop/invuln/dense/cliff_wall/short{ + pixel_x = -29; + pixel_y = -8 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -1; + pixel_y = -6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/oob) +"bGx" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 11; + pixel_y = 19 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/oob) +"bGy" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 16; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGz" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGA" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -7; + pixel_y = 13 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGB" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bGC" = ( +/obj/structure/prop/invuln/dense/cliff_wall/right_short{ + pixel_x = -224; + pixel_y = 2 + }, +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_y = 13 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/oob) +"bGD" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = -9 + }, +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 3; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGE" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGF" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 14; + pixel_y = 11 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGG" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -20; + pixel_y = 17 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGH" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 6; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGI" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -13; + pixel_y = 37 + }, +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 15; + pixel_y = 13 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGJ" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bGK" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 1; + pixel_y = -2 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bGL" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 2; + pixel_y = -9 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bGM" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 1; + pixel_y = -14 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bGN" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 4; + pixel_x = 4; + pixel_y = -17 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bGO" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = 25 + }, +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 26; + pixel_y = 28 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bGP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"bGQ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bGR" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"bGS" = ( +/obj/structure/prop/invuln/dense/cliff_wall/alt{ + pixel_y = 22 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bGT" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -4; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bGU" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = 4; + pixel_y = -26 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 19; + pixel_y = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"bGW" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = -6 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGX" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 16; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGY" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bGZ" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 1; + pixel_y = 22; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHa" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 4; + pixel_x = -12; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHb" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHc" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -14; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHd" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHe" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHf" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -17; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHg" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHh" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -17; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHi" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -17; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHj" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/item/shard, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"bHk" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 15; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHl" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -4; + pixel_y = -18 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHn" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHo" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"bHp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHq" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -17; + pixel_y = 9; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_x = 1; + pixel_y = -2; + layer = 4.12 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHr" = ( +/obj/structure/flora/bush/canyon/grass_green/alt1{ + dir = 1; + pixel_x = 11; + pixel_y = 9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHs" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHt" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHu" = ( +/obj/structure/flora/bush/canyon/grass_orange{ + pixel_x = 3; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHv" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 14; + pixel_y = 19 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHw" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 8; + pixel_x = 10; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHx" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHy" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHz" = ( +/obj/structure/flora/bush/canyon/grass_green/alt1{ + dir = 4; + pixel_x = -9; + pixel_y = 6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHA" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 14; + layer = 4.12 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = 14 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHB" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 13; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 3; + pixel_y = -2 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 14; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bHC" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -11; + pixel_y = -8 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bHD" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -10; + pixel_y = 2 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bHE" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHF" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"bHH" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 3; + pixel_x = -15 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHI" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHJ" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHK" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 14; + pixel_y = -16 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHL" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHM" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"bHN" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 14; + pixel_y = 11 + }, +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = -17; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHO" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 5; + pixel_x = -12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHP" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 5; + pixel_x = 16 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/trash/cigbutt{ + pixel_y = 21; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"bHR" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/structure/flora/bush/canyon/grass_yellow{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHS" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHT" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 11; + pixel_y = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHU" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -4; + pixel_y = -17 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHV" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 14; + pixel_y = 13 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHW" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = -19; + pixel_x = 17 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHX" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bHY" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bHZ" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIa" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIb" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 10; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIc" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bId" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIe" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 12; + pixel_y = 2 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -5; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIf" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIg" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 1 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"bIi" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = 1; + pixel_y = -11 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIj" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -7; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/clothing/accessory/limb/skeleton/l_leg{ + pixel_x = -44; + pixel_y = 20 + }, +/obj/item/clothing/accessory/limb/skeleton/head/spine{ + pixel_x = -40; + pixel_y = 23 + }, +/obj/item/clothing/accessory/limb/skeleton/torso{ + pixel_x = -39; + pixel_y = 20 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"bIk" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 2; + pixel_y = 18 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bIl" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 4; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bIm" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -5; + pixel_y = 21 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bIn" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 15; + pixel_x = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bIo" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 1; + pixel_y = 20 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bIp" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = -6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 4; + pixel_y = 21 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 9; + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"bIq" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = -19 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIr" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -20; + pixel_y = 8 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIs" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 11 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIt" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 8 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIu" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 17; + pixel_y = 6 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bIv" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/largecrate/empty/case/double{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"bIx" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 3; + pixel_y = 17 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIy" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIz" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 8; + pixel_x = 12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIA" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 12; + pixel_y = 17 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIB" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bID" = ( +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bIF" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bIG" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bIH" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bII" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIJ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/window_frame/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"bIL" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIM" = ( +/obj/structure/flora/bush/canyon/grass_green/alt2{ + dir = 1; + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIN" = ( +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bIO" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIP" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_y = -2; + pixel_x = -12 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_y = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIQ" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -26; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIR" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 18; + pixel_y = -6 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIS" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 6; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bIT" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bIU" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bIV" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -3; + pixel_y = 3; + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bIW" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bIX" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 12; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"bIY" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -3; + pixel_y = 3; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bIZ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -8; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJa" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -3; + pixel_y = -5 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJb" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"bJc" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 8; + pixel_y = -9 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJe" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 1; + pixel_y = -8 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJf" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = -2; + pixel_y = -11 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJg" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_x = -12; + pixel_y = -8 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJh" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -8 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJi" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 5; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJj" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_y = 20 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -16; + pixel_y = 9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJk" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -9; + layer = 2.9 + }, +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 3; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJl" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 16; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJm" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 12; + pixel_y = 18 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJn" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 10; + pixel_x = -22 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"bJp" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJq" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 8; + pixel_x = -13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJr" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 11; + pixel_y = 19 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJs" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 8; + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJt" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 8; + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJu" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -9 + }, +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 2; + pixel_y = 16 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJv" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 3; + pixel_y = 18 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJw" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south) +"bJx" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJy" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 10; + pixel_x = 12 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJz" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -6; + pixel_y = 39 + }, +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJA" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJB" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJC" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -4; + pixel_y = -25 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = 8; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJD" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJE" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -13; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bJF" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = -19; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJG" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJH" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 10; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJI" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJJ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 26; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bJK" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -14; + pixel_y = 13; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 2; + layer = 4.12 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = 2 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -2; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_y = -6 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJL" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 2; + layer = 4.12 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJM" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -2; + pixel_y = 13; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 2; + layer = 4.12 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 12 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = -14 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJQ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJR" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 32; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 4; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJT" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = -11; + layer = 4.12 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJU" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/structure/prop/fake/railing/strata{ + pixel_y = -11; + layer = 4.12 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJV" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -17; + pixel_y = 33; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -16; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJW" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = 32; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 8; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJX" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -14; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bJY" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"bJZ" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"bKa" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north) +"bKb" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"bKc" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"bKd" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_y = 3 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"bKe" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -6; + pixel_y = -13 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bKf" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"bKg" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 2; + pixel_y = -14 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 12 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKh" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKi" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 23; + pixel_x = -9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKj" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 9; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKk" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = -21 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKl" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKm" = ( +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 13; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKn" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKo" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKp" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKq" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 13; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKr" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKs" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKt" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/recreational) +"bKu" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKv" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKw" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/bush/alt2{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_x = -19 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"bKy" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = 11 + }, +/obj/structure/flora/bush/canyon/grass_yellow/alt2{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKz" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKA" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKB" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 4; + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKC" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 20; + pixel_y = -4 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 2; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKD" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -10; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/prop/fake/railing/strata{ + dir = 8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 9 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKG" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_4) +"bKI" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKK" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"bKL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKN" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKO" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKP" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bKQ" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bKR" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 15; + pixel_y = -1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKS" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -2; + pixel_y = -8 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKT" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = 11; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKU" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = -1; + pixel_y = -9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKV" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -11 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKW" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 4; + pixel_x = 9; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKX" = ( +/obj/structure/flora/bush/canyon/grass_yellow{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKY" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 1; + pixel_y = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bKZ" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLa" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 4; + pixel_y = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLb" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_y = -10; + pixel_x = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLc" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLd" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLe" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_y = -11; + pixel_x = 5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLf" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 3; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"bLg" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -10; + pixel_y = -10 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"bLh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLj" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32; + layer = 2.8 + }, +/obj/structure/cargo_container/hybrisa/containersextended/blueright{ + layer = 4 + }, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"bLk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurplecorners2, +/area/caperiver/indoors/conambase/research_e) +"bLl" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLn" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLo" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 17; + pixel_y = 19; + layer = 4.121 + }, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/conambase/research_w) +"bLp" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 18; + pixel_y = -9 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bLq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 16; + pixel_y = 19; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"bLr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = 18 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -13; + pixel_y = -5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLt" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLv" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLw" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"bLy" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"bLz" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"bLA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLB" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/caperiver/outdoors/landing_zone_2/interior) +"bLC" = ( +/obj/item/shard, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"bLD" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLF" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLG" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLH" = ( +/obj/structure/largecrate/random/case{ + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLJ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"bLL" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLN" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLS" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#88715d"; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bLT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLV" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bLY" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"bMa" = ( +/obj/structure/fence/slim, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"bMb" = ( +/obj/structure/fence/slim, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"bMd" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"bMe" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"bMf" = ( +/obj/structure/fence/slim, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/north) +"bMI" = ( +/turf/open/floor/darkblue2/southeast, +/area/caperiver/indoors/conambase/recreational) +"bMS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/scrublands/north) +"bNj" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"bNm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"bNp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/light/small{ + dir = 1; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"bNA" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1/interior) +"bNG" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -4; + pixel_y = 19 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = 17 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bNU" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"bNY" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"bOr" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"bOy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/unknown) +"bOQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"bOZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -16; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"bPs" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"bPx" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"bPy" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"bPD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_4) +"bPL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"bPS" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"bPU" = ( +/obj/structure/closet/l3closet, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"bQa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"bQM" = ( +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers{ + icon_state = "mining_crawler_blank" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"bQO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = 14 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"bQU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"bQW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"bQZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/rack, +/obj/effect/spawner/random/balaclavas, +/obj/effect/spawner/random/attachment, +/obj/structure/closet, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"bRp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"bRs" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"bRB" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"bSe" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"bSW" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"bSZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"bTb" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"bTo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west/antiweed) +"bTu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 4; + pixel_y = -13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"bTD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"bUh" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bUK" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/engi) +"bVa" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/nw_cave) +"bVb" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = 1; + pixel_y = -15 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"bVy" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"bWe" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/reagent_container/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/southeast, +/area/caperiver/indoors/miningbase/medical) +"bWi" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"bWj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"bWo" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"bWS" = ( +/obj/structure/tunnel, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"bXo" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8"; + pixel_x = -14; + pixel_y = -19 + }, +/obj/structure/flora/tree/joshua, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"bXv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"bXI" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"bXP" = ( +/obj/structure/window/framed/abyssal/blue/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"bYg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 11; + pixel_y = 18 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"bYi" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"bYK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/telecomms/telecomm_4) +"bYS" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"bZg" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"bZU" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"bZW" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/trash/eat, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"cah" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 2; + layer = 4.12 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"caA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central/antiweed) +"cba" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"cbl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/item/shard, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"cbq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_east) +"cbr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"cbD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"ccb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrown3/west, +/area/caperiver/outdoors/landing_zone_2/interior) +"ccj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west/antiweed) +"ccD" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/landing_zone_2) +"ccR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -16; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"ccV" = ( +/obj/effect/hybrisa/misc/fake/wire, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = 8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"cdz" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"cdD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"cdR" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"cea" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ceh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/vending/coffee{ + pixel_x = 6; + pixel_y = 15; + density = 0 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"cem" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/effect/landmark/lizard_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"ceF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"ceN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"ceR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"ceX" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north) +"ceZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"cfa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -10; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"cfH" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/south/antiweed) +"cfR" = ( +/obj/effect/decal/large_stain, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"cgv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"cgC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"cgJ" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -15; + pixel_y = 18 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 10; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"cgN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"cgU" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"chj" = ( +/obj/structure/flora/bush/ausbushes/var3/ppflowers{ + icon_state = "lavendergrass_1" + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"chq" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ciw" = ( +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"ciy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"ciA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/caperiver/outdoors/mining_base_exterior/south) +"ciI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"ciO" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ciT" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/nw_cave) +"ciU" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"cjk" = ( +/obj/item/reagent_container/syringe{ + icon_state = "broken" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"cjq" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/recharger{ + pixel_y = 1; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"cjx" = ( +/obj/effect/landmark/yautja_teleport, +/obj/effect/landmark/yautja_young_teleport, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"cjI" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"cjO" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"cjR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"ckf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"ckx" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"ckD" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"ckM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/safety{ + pixel_y = 35; + pixel_x = 3 + }, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"ckN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south_east) +"ckW" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"clf" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 1; + pixel_y = -9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/west) +"clm" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"cls" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"clB" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 11; + pixel_y = 2 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/caperiver/indoors/conambase/recreational) +"clZ" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"cmp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/applecakeslice, +/obj/item/trash/tray, +/obj/item/storage/box/donkpockets{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/indoors/miningbase/rec) +"cmM" = ( +/obj/structure/flora/bush/desert/cactus, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"cny" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -46; + pixel_y = 19 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"cnH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"cnL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"cof" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"coB" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"cpm" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"cpv" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"cpW" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"cqh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"cqT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"cqV" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"cra" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"cri" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"crJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"crR" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/admin) +"csa" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"csI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"csS" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"ctJ" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d"; + pixel_x = 5; + pixel_y = -14 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/caperiver/outdoors/chasm) +"ctN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"cuE" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -10; + pixel_y = 12 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = 12; + pixel_y = 14 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"cuI" = ( +/obj/structure/sink{ + pixel_y = 26; + pixel_x = -7 + }, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"cvh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"cvr" = ( +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"cvH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"cvI" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light/blue, +/turf/open/floor/station/metal/floor/southeast, +/area/caperiver/telecomms/telecomm_3) +"cvO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/telecomms/telecomm_3) +"cvP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + pixel_x = -16 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"cwe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"cwx" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"cwB" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"cwH" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"cwL" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"cxr" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"cxz" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"cxK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 32; + pixel_y = -9 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"cyj" = ( +/obj/structure/machinery/light/small, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"cyu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"cyE" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"cyL" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"cyN" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/bushlands) +"cyW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"cyY" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 3; + pixel_y = 28 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"czX" = ( +/turf/open/floor/darkblue2/northeast, +/area/caperiver/indoors/conambase/command) +"cAo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"cAq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"cAx" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north) +"cAD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/west) +"cAH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/north_west) +"cAP" = ( +/obj/structure/platform/stone/soro/east, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"cBp" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"cBs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"cBw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"cBR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"cBV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"cCa" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"cDP" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"cEi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain, +/turf/open/floor/kutjevo/tan, +/area/caperiver/telecomms/telecomm_4) +"cEk" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"cEq" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/telecomms/telecomm_4) +"cED" = ( +/obj/structure/prop/dam/drill, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"cFG" = ( +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 1; + pixel_x = -23; + layer = 4.1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"cFI" = ( +/obj/effect/spawner/random/toolbox{ + layer = 4; + pixel_y = 14 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"cFU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/telecomms/telecomm_4) +"cGo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"cGw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"cHy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"cHX" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"cHY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = -12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"cIR" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/rock1, +/area/caperiver/outdoors/scrublands/south_east) +"cJi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/bushlands) +"cJx" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"cJB" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkgreen2/northwest, +/area/caperiver/indoors/conambase/recreational) +"cKh" = ( +/obj/item/shard, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"cKj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"cKq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/telecomms/telecomm_3) +"cKD" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/oob) +"cLB" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/largecrate/random/mini{ + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"cMc" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"cMj" = ( +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"cMk" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"cMn" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"cMs" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"cMQ" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"cNl" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"cNW" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/girder/displaced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"cOa" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/telecomms/telecomm_3) +"cOV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"cPd" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/engi) +"cPl" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"cPP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"cQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; + name = "\improper UA Prepared Meal (cornbread)"; + pixel_y = 5; + pixel_x = 3 + }, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"cQn" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"cQt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"cRl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 15 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"cRM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"cSg" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"cSp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"cSy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/south) +"cSX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/hefa_cult_decals/d96, +/obj/structure/machinery/light/red{ + dir = 8; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"cTb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"cTm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"cTJ" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"cTP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/southeast, +/area/caperiver/indoors/conambase/recreational) +"cTU" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"cUh" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"cUi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"cVg" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"cVG" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/ne) +"cWd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"cWi" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"cWj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -10; + pixel_y = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"cWl" = ( +/obj/structure/flora/bush/ausbushes/var3/ppflowers, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"cWF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/caperiver/outdoors/road/central) +"cWS" = ( +/obj/structure/platform_decoration/stone/soro/north, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"cXq" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"cXy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"cYa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"cYs" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"cYy" = ( +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"cYC" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/telecomms/telecomm_4) +"cZw" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/assembly/signaller{ + pixel_x = 5 + }, +/obj/item/book/manual/evaguide{ + pixel_y = -1; + pixel_x = -6 + }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/indoors/miningbase/admin) +"cZF" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"cZM" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/telecomms/telecomm_4) +"dai" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"daz" = ( +/obj/structure/largecrate/random/barrel/purewhite{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"daF" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"dbA" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"dbX" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 22 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"dbZ" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/flora/bush/canyon/grass_green/alt2, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"dcf" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"dcn" = ( +/obj/structure/cable/white{ + icon_state = "1-8"; + level = 2; + pixel_y = -23; + pixel_x = 1 + }, +/obj/structure/cable/white{ + icon_state = "2-5"; + level = 2; + pixel_y = 2; + pixel_x = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"dcp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/conam{ + pixel_y = -32 + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"dcE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"dcG" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"dcK" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"dcU" = ( +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/south) +"dda" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ddw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/caperiver/outdoors/road/north) +"ddx" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ddH" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = 25 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 24; + pixel_y = 27 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"ddS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"ddW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"deb" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"deu" = ( +/obj/structure/largecrate/random/barrel/black, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/station/metal/floor/northwest, +/area/caperiver/telecomms/telecomm_3) +"dez" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/ashtray/glass, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"deJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"deS" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/oob) +"deX" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"dfv" = ( +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = 10 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"dfw" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"dfW" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"dgg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"dgl" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south_east) +"dhj" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"dhp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"dhG" = ( +/obj/structure/sign/conam/variant3{ + pixel_y = 31 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"dhI" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"diC" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"djn" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"djo" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"djp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"djA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"djC" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 13; + pixel_y = 7 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"djU" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"dky" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_e) +"dkC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"dkV" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/computer/objective, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"dlE" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"dnz" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/outdoors/con_am_exterior/south) +"dnN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"dnW" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"dob" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"dod" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"doE" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/west/antiweed) +"doM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"doV" = ( +/mob/living/simple_animal/lizard, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"doX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/darkbrowncorners2/west, +/area/caperiver/indoors/conambase/delivery) +"dpa" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2"; + layer = 2.52; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile, +/area/caperiver/indoors/conambase/unknown) +"dps" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 14; + pixel_y = 22 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"dqu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"dqG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"drf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"drr" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"drK" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"drO" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/outdoors/landing_zone_2/cave) +"drR" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"drW" = ( +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"dsp" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 5 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"dsy" = ( +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 19 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"dsz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"dsJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/nw_cave) +"dta" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8"; + pixel_x = -14; + pixel_y = -19 + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9"; + pixel_x = 6; + pixel_y = 12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west) +"dtg" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"dtr" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/telecomms/telecomm_4) +"dtZ" = ( +/obj/item/tool/shovel{ + pixel_x = 4; + pixel_y = -9 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"dub" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"dus" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/north) +"dux" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"duI" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"duK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/landing_zone_2) +"dvb" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"dvd" = ( +/obj/structure/flora/grass/desert/lightgrass_11{ + pixel_x = -16; + pixel_y = 4 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"dvg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"dvv" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/caperiver/telecomms/telecomm_4) +"dvP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"dvS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/indoors/miningbase/admin) +"dvV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"dvZ" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"dwi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/chest{ + pixel_y = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"dwl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"dwB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"dwR" = ( +/turf/open/floor/hybrisa/engineership/engineer_floor13/north, +/area/caperiver/indoors/conambase/unknown) +"dwX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"dxa" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"dxD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/caves/w) +"dxF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/item/stool{ + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"dxX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"dyj" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"dyw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"dzd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west/antiweed) +"dzt" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"dAd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown_Cargo{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"dAg" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"dAr" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/desert/rock, +/area/caperiver/oob) +"dAG" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"dAH" = ( +/obj/structure/prop/hybrisa/furniture/tables/tablepool, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/carpet/carpet_colorable/blue, +/area/caperiver/indoors/conambase/support) +"dBf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/north_west) +"dBl" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"dBW" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"dCh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard/small_stack{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/telecomms/telecomm_1) +"dDq" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/obj/structure/flora/bush/desert/cactus/multiple{ + pixel_x = 12; + pixel_y = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"dDJ" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/aicard{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"dDN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"dDQ" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -1; + pixel_y = -5 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"dDY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/telecomms/telecomm_4) +"dEk" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"dEn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"dEo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"dEu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"dEx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west) +"dEI" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"dFd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/northeast, +/area/caperiver/indoors/conambase/recreational) +"dFe" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"dFk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 2; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"dFo" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"dFW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/greencorner/north, +/area/caperiver/indoors/conambase/medical) +"dGs" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"dGt" = ( +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/command) +"dGA" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -3; + pixel_y = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"dGX" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 15; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"dGZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"dHn" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"dHE" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"dHI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/obj/item/ammo_box/magazine/misc/mre/emergency/empty{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"dIc" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"dIp" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"dIq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"dIB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"dJH" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/landing_zone_1) +"dKk" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = -5 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"dKm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"dKo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"dKA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"dKF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2, +/area/caperiver/indoors/conambase/research_e) +"dKU" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"dLg" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"dLr" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"dLH" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"dLI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"dLN" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"dLU" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"dMh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"dMC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"dMQ" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"dMZ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"dNs" = ( +/obj/structure/ore_box, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"dNG" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"dOt" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -8; + pixel_y = 17 + }, +/obj/item/clothing/accessory/limb/skeleton/r_leg{ + pixel_x = -3; + pixel_y = 20 + }, +/obj/item/clothing/accessory/limb/skeleton/l_hand{ + pixel_x = -2; + pixel_y = 13 + }, +/obj/item/clothing/accessory/limb/skeleton/l_leg{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/clothing/accessory/limb/skeleton/r_leg{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = 1; + layer = 3.1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/chasm) +"dON" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_e) +"dPn" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"dPr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/caperiver/telecomms/telecomm_2) +"dPx" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 20; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"dPB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/outdoors/landing_zone_1/interior) +"dPW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"dQc" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"dQO" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"dQP" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2) +"dRf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 2; + pixel_y = 18 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -21; + pixel_y = 5 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"dRm" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/medical) +"dRt" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north) +"dRD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/west) +"dSM" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg2, +/area/caperiver/indoors/caves/s) +"dSN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"dSO" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"dSU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/spawner/random/mats/lowchance, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"dTf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 20; + pixel_y = 36 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"dTo" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_off{ + dir = 4 + }, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/admin) +"dTs" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -17; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"dTt" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Unknown Encampment" + }, +/turf/open/floor/plating, +/area/caperiver/outdoors/landing_zone_2) +"dUm" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/indoors/miningbase/admin) +"dUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/checkpoint) +"dVa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"dVf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"dVi" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"dVK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"dVM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/effect/decal/conam/long_logo_right/damage_1{ + pixel_x = -20 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"dVT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"dWd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"dWi" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_corner1, +/area/caperiver/outdoors/landing_zone_2/river) +"dWD" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/landing_zone_2) +"dXc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"dXp" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"dXA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"dXH" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"dYx" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"dYN" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"dZw" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"dZP" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"dZV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"dZY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"eal" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 14 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"eau" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"eaL" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/con_am_exterior/north) +"eaR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/item/storage/surgical_tray, +/turf/open/floor/green/east, +/area/caperiver/indoors/conambase/medical) +"ebb" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -8; + pixel_y = 1; + density = 0 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"ebc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/caperiver/indoors/conambase/engi) +"ebk" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 15; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ebp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/south_east) +"ebr" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"ebs" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"ebE" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/telescreenbrokespark{ + pixel_y = 32 + }, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"ebO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ebR" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/defibrillator/synthetic/hyperdyne{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/indoors/miningbase/admin) +"ebS" = ( +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 30; + pixel_x = -18; + layer = 4.1 + }, +/obj/effect/decal/remains/robot{ + pixel_x = 6; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"ebV" = ( +/obj/structure/fence/slim, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"ech" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"eci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/kutjevo/colors/red/edge/east, +/area/caperiver/indoors/miningbase/checkpoint) +"ecj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"ect" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"ecT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"edj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"edy" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -28; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"edS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"edY" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"ees" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_e) +"eeA" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"eeM" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 30; + pixel_x = -18; + layer = 4.1 + }, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + pixel_y = 34 + }, +/obj/effect/decal/large_stain, +/obj/effect/decal/remains/human{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/unknown) +"efe" = ( +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_w) +"efp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"efu" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"efF" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/admin) +"efQ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"efT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"egp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"egq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/cargo_container/hybrisa/containersextended/greenright, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"egx" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"ehk" = ( +/obj/structure/platform_decoration/stone/soro/west, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -3 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"eht" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/janitorialcart, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"ehV" = ( +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"eid" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"eiL" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"eiQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/north) +"eje" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/closed/wall/kutjevo/colony, +/area/caperiver/outdoors/landing_zone_1/cave) +"ejn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/obj/item/shard, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"ejp" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ejz" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/trash/wy_mre, +/obj/item/toy/deck/uno{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"ejJ" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"ejT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"ejW" = ( +/obj/structure/flora/grass/desert/lightgrass_11{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"ekd" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"eko" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform/stone/soro/west, +/obj/structure/platform/stone/soro, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"ekP" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"ekZ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"elc" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"eln" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 4; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"elq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 3; + pixel_y = -5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"els" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 20; + pixel_y = 17 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_east) +"elJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"emd" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"emo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"emA" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/indoors/conambase/recreational) +"emC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/darkbrown2, +/area/caperiver/indoors/conambase/recreational) +"emF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"end" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkbrown2, +/area/caperiver/indoors/conambase/recreational) +"enu" = ( +/obj/item/frame/table/almayer, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"enW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"enZ" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = 4; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"eoh" = ( +/obj/item/ammo_magazine/pistol/highpower{ + current_rounds = 3 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/paper/crumpled{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"eoj" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"eoz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet, +/obj/item/clothing/head/hardhat, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"eoJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/admin) +"eoO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/large_stain{ + layer = 2.6; + pixel_x = 14; + pixel_y = -9; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/conam/long_logo_left/damage_1{ + pixel_x = -15 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"eoR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"eoW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"epd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"epe" = ( +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"ept" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"epD" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/west/antiweed) +"epK" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"epS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"eqd" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"eqp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"eqs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south) +"eqx" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"eqT" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"eqU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"erd" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"erD" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 10 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/dorm) +"erX" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 29 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown2/northeast, +/area/caperiver/indoors/conambase/recreational) +"esk" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"esz" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/caves/ne) +"etb" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"etQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"etR" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/girder/displaced, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"euh" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"eup" = ( +/obj/structure/tunnel, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"euG" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/multitool{ + pixel_x = 4; + pixel_y = -8 + }, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"euU" = ( +/turf/open/floor/plating/engineer_ship, +/area/caperiver/indoors/conambase/unknown) +"euW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"eve" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/bushlands) +"evO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"evQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"ewd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"ewj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"ewv" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/item/clothing/head/welding/painted, +/turf/open/floor/shiva/radiator_tile2, +/area/caperiver/indoors/conambase/engi) +"ewH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/west, +/area/caperiver/indoors/conambase/recreational) +"ewT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"ewW" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north) +"exa" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = -3 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"exe" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"exl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"exy" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"exE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/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, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"eyu" = ( +/obj/structure/tunnel, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"eyA" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"eyC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"eyT" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"eyW" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"ezf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"ezH" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"ezS" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"eAd" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"eAf" = ( +/obj/structure/flora/grass/desert/lightgrass_5{ + pixel_x = -10; + pixel_y = -4 + }, +/obj/structure/sign/conam/variant1{ + pixel_y = 32 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south) +"eAU" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/weapon/gun/pistol/highpower{ + pixel_x = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"eBk" = ( +/obj/structure/prop/hybrisa/misc/detonator{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/cable/white{ + icon_state = "1-2"; + level = 2 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"eBs" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"eBA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"eBE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/telecomms/telecomm_4) +"eBJ" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"eBL" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"eCf" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"eCl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"eCq" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"eCt" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/obj/structure/largecrate/random/barrel/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"eCK" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"eDr" = ( +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/tool/stamp{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"eDx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 10 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, +/obj/effect/decal/large_stain{ + pixel_x = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"eDD" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/telecomms/telecomm_4) +"eEg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/south) +"eEz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/item/shard, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"eEE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"eEG" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"eEP" = ( +/obj/structure/sign/safety/fridge{ + layer = 3; + pixel_x = 8; + pixel_y = -28 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"eFn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"eFv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"eFE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/item/reagent_container/food/snacks/dough, +/obj/structure/closet/crate/freezer, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"eFF" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"eFU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 1; + pixel_x = -5 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"eFV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 2; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"eGy" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"eGQ" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"eHa" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/caperiver/outdoors/landing_zone_1) +"eHb" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/north) +"eHt" = ( +/obj/structure/cargo_container/hybrisa/containersextended/medicalright, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"eHu" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"eHC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/caperiver/telecomms/telecomm_3) +"eHH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"eHL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"eHN" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"eIg" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"eIi" = ( +/obj/structure/largecrate/supply/generator, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"eIo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"eIF" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"eIL" = ( +/obj/structure/prop/dam/drill, +/turf/open/auto_turf/hybrisa_auto_turf/layer2, +/area/caperiver/oob) +"eIM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"eJp" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"eJq" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_east) +"eKi" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"eKj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"eKn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"eKC" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"eKI" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"eKV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"eLk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"eMI" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"eMN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"eNn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"eNs" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"eNu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"eNR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"eOL" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"ePh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/power/apc/power/north, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"ePk" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/closed/wall/abyssal/standard, +/area/caperiver/telecomms/telecomm_4) +"ePv" = ( +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/north) +"ePy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"ePJ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 13 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"eQf" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"eQL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 9; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"eQY" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"eRi" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"eSm" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"eSx" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"eTn" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"eTC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_y = -12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -18; + pixel_y = 2 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"eTD" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"eUh" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"eUl" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"eUx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"eUy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"eUN" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"eVi" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"eVt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"eVQ" = ( +/obj/effect/spawner/random/gun/smg/midchance, +/obj/effect/decal/conam/big_logo/damage{ + pixel_y = -15 + }, +/obj/effect/decal/large_stain{ + layer = 2.6; + pixel_x = 18; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"eVX" = ( +/obj/effect/decal/conam/half_logo/damage_1, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"eWd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"eWk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"eWB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"eWC" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"eWV" = ( +/obj/item/shard, +/obj/structure/window_frame/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"eXq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/caperiver/indoors/conambase/research_e) +"eXB" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"eXC" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/hydro) +"eYf" = ( +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/surface/table/almayer, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"eYx" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt, +/area/caperiver/indoors/caves/s) +"eYI" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south_east) +"eZj" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/obj/structure/largecrate/random/case/double, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"eZq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"eZv" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"eZH" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_off{ + dir = 4 + }, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/admin) +"faa" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 24; + pixel_y = 16 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -20; + pixel_y = 5 + }, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/caperiver/outdoors/chasm) +"fac" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"fan" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/frame/table/almayer, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"faE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"fbg" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = 1; + pixel_y = -9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = 17 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"fbo" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/landing_zone_2) +"fbE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"fca" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"fci" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8; + pixel_y = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -21; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"fcw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"fcK" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"fcO" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"fcR" = ( +/obj/effect/spawner/random/mats/lowchance, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/telecomms/telecomm_3) +"fds" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"fdz" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/south) +"fdE" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 1 + }, +/obj/structure/prop/hybrisa/engineer/engineerpillar/smallsouthwest1{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"fdH" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"fdT" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -21; + pixel_y = 28 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 7; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -15; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"fea" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south_east) +"feu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = 21 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"feU" = ( +/turf/open/floor/darkbrown2/southeast, +/area/caperiver/indoors/conambase/delivery) +"ffl" = ( +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 30; + pixel_x = -18; + layer = 4.1 + }, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"ffo" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west) +"ffp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"ffy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"ffC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"ffK" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 17; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"ffP" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_box/magazine/nailgun, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"fgf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_x = -2; + pixel_y = -6 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"fhf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"fhk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/floor/darkgreen2/northwest, +/area/caperiver/indoors/conambase/recreational) +"fhy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"fhL" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"fiW" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"fjg" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south_east) +"fji" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/telecomms/telecomm_4) +"fjD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_1) +"fjE" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"fjR" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"fjZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4; + icon_state = "chair_alt" + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"fke" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"fkm" = ( +/obj/structure/cargo_container/hybrisa/containersextended/kelland_right, +/turf/open/gm/dirt/brown/variant_1, +/area/caperiver/indoors/caves/w) +"fks" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"fkz" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"fkC" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north_east) +"fkU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"fmu" = ( +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 7; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 15; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"fmz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/decal/large_stain, +/obj/structure/machinery/light/small{ + dir = 8; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"fmU" = ( +/obj/structure/fence/slim/dark, +/obj/structure/platform/metal/strata, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"fnt" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"fnH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"fnM" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"fod" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"fpp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"fqa" = ( +/obj/structure/sign/safety/fridge{ + layer = 3; + pixel_x = -24 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 10 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"fqB" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"frI" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1; + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"frJ" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"frS" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"fsb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"fsv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"fsD" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"ftt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 17; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"ftv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"fty" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -13; + pixel_y = -15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north) +"ftz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"ftP" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"fud" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"fue" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"fuL" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"fuY" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"fvA" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"fvH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1; + autoname = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"fvK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"fwb" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4"; + layer = 2.52 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"fwi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -8; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"fwm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -22 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"fwE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south_east) +"fwR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_y = 1 + }, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/telecomms/telecomm_3) +"fwT" = ( +/obj/structure/largecrate/supply/supplies/wy_emergency_food, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"fxe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + autoname = 1; + req_one_access = null + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/bunker) +"fxW" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"fyl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 17; + dir = 8; + pixel_x = 26 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"fyv" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"fyR" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"fyS" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"fzq" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"fzu" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9"; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west) +"fzv" = ( +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_e) +"fzD" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"fzL" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"fzN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = 10 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"fzS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"fzW" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/window_frame/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"fAJ" = ( +/obj/structure/largecrate/empty/case, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"fBt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/indoors/miningbase/admin) +"fBZ" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + health = null; + id = "landingzone1_alt"; + idle_power_usage = 0; + name = "Lockdown Override"; + pixel_y = 8; + pixel_x = -7 + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8; + pixel_y = 4; + pixel_x = 7; + layer = 3.1 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/door_control/brbutton/alt{ + health = null; + id = "landingzone1_1"; + idle_power_usage = 0; + name = "Lockdown Override"; + pixel_y = -2; + pixel_x = -7 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"fCl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"fCT" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"fCZ" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull, +/area/caperiver/indoors/conambase/medical) +"fDp" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"fDD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"fDR" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"fFC" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"fGk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"fGy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"fGZ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/con_am_exterior/north) +"fHw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/bushlands) +"fHy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"fHB" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"fIc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"fIj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = -10 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"fIv" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = -2; + pixel_y = 14; + density = 0 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"fIG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"fII" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"fIQ" = ( +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"fIV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"fJg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"fJh" = ( +/mob/living/simple_animal/bat, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"fJj" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/telecomms/telecomm_2) +"fJm" = ( +/obj/item/tool/pickaxe/jackhammer, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"fJp" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"fJr" = ( +/obj/structure/prop/tower{ + pixel_x = -17 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/indoors/conambase/recreational) +"fJw" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/unknown) +"fJx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stool{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"fJR" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"fKd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_y = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 18; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"fKl" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = -4 + }, +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 2; + pixel_x = 3 + }, +/obj/structure/sign/poster/conam{ + pixel_y = -32 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/indoors/miningbase/engi) +"fKy" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"fLq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"fMa" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 17 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"fMl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/caperiver/telecomms/telecomm_2) +"fMK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"fMS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/telecomms/telecomm_4) +"fNW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"fOq" = ( +/obj/item/shard, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"fOx" = ( +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"fOB" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/structure/platform_decoration/stone/mineral/west{ + color = "#716959" + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/scrublands/south_east) +"fOM" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/west/antiweed) +"fOV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"fPd" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"fPi" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"fPk" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = -4 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"fPl" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/mob/living/simple_animal/lizard, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = 25 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"fPr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/landmark/monkey_spawn, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"fQi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"fQu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"fQy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#7f6357"; + pixel_x = -28; + pixel_y = 5; + layer = 2.9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"fQY" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/engi) +"fRj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"fRr" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"fRL" = ( +/obj/structure/machinery/light/small{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/caves/ne) +"fRU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"fSp" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"fTc" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"fTJ" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_west) +"fTS" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/medical) +"fTW" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"fTX" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south_east) +"fUo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = 7 + }, +/turf/open/floor/prison, +/area/caperiver/telecomms/telecomm_3) +"fUE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"fVp" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"fVG" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south) +"fVL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/checkpoint) +"fVU" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = 14; + pixel_y = 1 + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11"; + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"fVY" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"fWd" = ( +/obj/structure/ore_box, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"fWe" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1) +"fWg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/telecomms/telecomm_3) +"fWn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"fXc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 1 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/indoors/miningbase/admin) +"fXB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -13; + pixel_y = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"fXV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/girder/displaced, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"fXY" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 32 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"fYh" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"fYj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/buritto, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"fYy" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/large_stain{ + pixel_x = 6; + layer = 2.1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_2/cave) +"fZh" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"fZB" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"fZM" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"fZS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"gai" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/recreational) +"gar" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_x = -6 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"gaP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"gbE" = ( +/obj/structure/sign/conam/variant1{ + pixel_x = -32 + }, +/obj/structure/platform/stone/soro, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"gbW" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 10 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/dorm) +"gcb" = ( +/obj/structure/machinery/light/small, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/landing_zone_2) +"gcc" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"gcu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"gcG" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + pixel_x = -2; + pixel_y = -14 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"gcP" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"gcT" = ( +/obj/structure/sign/poster/music{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/caperiver/indoors/conambase/recreational) +"gcY" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/north_west) +"gcZ" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"gdj" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"gdl" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"gdn" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"gdE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/red/inner_corner/north, +/area/caperiver/indoors/miningbase/checkpoint) +"gdG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"gdI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"gdP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"gdR" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1) +"gec" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = -9; + pixel_y = 30 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"gel" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"geB" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"geF" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"gfl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 27; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"gfm" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/west) +"ggv" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"ggD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/hydro) +"ggI" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -6; + pixel_y = -3 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"ghv" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 + }, +/obj/item/tool/scythe, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"ghT" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/north) +"ghX" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"gid" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/cargo_container/hybrisa/containersextended/blueleft{ + layer = 4 + }, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34; + layer = 2.9 + }, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"gir" = ( +/obj/structure/machinery/light/red{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"gjj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"gjC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/northeast, +/area/caperiver/indoors/conambase/recreational) +"gjI" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 13; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/bushlands) +"gjL" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"gka" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/closet, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"gkk" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = 13; + pixel_y = -1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"gku" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -4; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -17; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"gkN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west/antiweed) +"glN" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 1 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"glP" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"glT" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"glX" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = 14 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"gmd" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"gme" = ( +/obj/item/paper/crumpled{ + layer = 5; + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"gmg" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/mars_cave/mars_dirt_6, +/area/caperiver/outdoors/scrublands/north_west) +"gmy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"gmX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"gnb" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_y = 15; + pixel_x = -40 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"gnO" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/road/west/antiweed) +"gof" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"gog" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"goF" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"goY" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"gpd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"gpm" = ( +/turf/open/gm/dirt/brown/variant_2, +/area/caperiver/indoors/caves/nw) +"gpt" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south_east) +"gpx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"gpP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"gqa" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 34; + pixel_x = 3 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/caperiver/outdoors/landing_zone_1/cave) +"gqO" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"gqP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"gqX" = ( +/obj/structure/platform_decoration/stone/soro/east, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"grn" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"grq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"grD" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"grE" = ( +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/research_e) +"grK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"grS" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"grU" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/turf/open/floor/prison, +/area/caperiver/telecomms/telecomm_3) +"grZ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"gsy" = ( +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"gsN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/caperiver/indoors/conambase/support) +"gsO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"gsP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/station/metal/alt_floor, +/area/caperiver/indoors/conambase/support) +"gtn" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"gtt" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"gtC" = ( +/obj/item/frame/table/almayer, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"gum" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"gus" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic/glass/rusted_window, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"guY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"gvg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north) +"gvl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/telecomms/telecomm_4) +"gvE" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"gwC" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"gwY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/oob) +"gxi" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"gxs" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"gxw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"gxK" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"gxO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"gxV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"gxX" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -27; + pixel_y = -26 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"gyh" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"gyp" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -11; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"gyx" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"gyD" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"gyF" = ( +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 30; + pixel_x = -18; + layer = 4.1 + }, +/turf/open/floor/darkblue2/northeast, +/area/caperiver/indoors/conambase/unknown) +"gyL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"gzt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"gzz" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 14; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"gAn" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"gBf" = ( +/obj/structure/blackgoocontainer{ + icon_state = "blackgoocontainer2"; + dir = 4; + pixel_x = 14 + }, +/obj/structure/blackgoocontainer{ + pixel_x = -9; + pixel_y = 2; + density = 0 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"gBq" = ( +/turf/open/floor/plating, +/area/caperiver/indoors/caves/se) +"gBL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"gBZ" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west/antiweed) +"gCh" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/station/metal/alt_floor, +/area/caperiver/indoors/conambase/support) +"gCj" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"gCC" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"gCZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic/glass/rusted_window{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"gDq" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/remains/robot{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"gDH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/telecomms/telecomm_2) +"gDP" = ( +/obj/effect/decal/hybrisa/hull_angled, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"gDU" = ( +/obj/item/shard, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/unknown) +"gDX" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"gEs" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/caperiver/outdoors/landing_zone_2/river) +"gEE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"gFp" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 14; + dir = 1 + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"gFu" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south_east) +"gFE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/disposal, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"gGI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/indoors/miningbase/admin) +"gGR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"gHd" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"gHl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"gHu" = ( +/obj/item/trash/cigbutt, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"gHA" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 5; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"gHI" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/landing_zone_1) +"gIa" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"gId" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"gIm" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_x = -12 + }, +/obj/effect/decal/remains/robot{ + pixel_x = -21; + pixel_y = 11 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"gIv" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti5, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"gIT" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"gIV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"gJL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/indoors/miningbase/dorm) +"gJR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"gKf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/plasteel/wired, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"gKq" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/telecomms/telecomm_4) +"gKw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 15; + pixel_x = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"gKN" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"gLJ" = ( +/obj/structure/sign/conam/variant3{ + pixel_y = 31 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"gLQ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"gMP" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"gNf" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/indoors/miningbase/admin) +"gNs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west) +"gNF" = ( +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"gNL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"gNV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"gNX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/glass{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"gOi" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"gOx" = ( +/obj/item/shard, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"gPd" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"gPE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"gPO" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"gPP" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"gQc" = ( +/obj/structure/machinery/big_computers/computerbrown/computer5, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"gQt" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"gQx" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 24; + pixel_y = 27 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"gQF" = ( +/obj/item/stack/sheet/animalhide/human, +/turf/open/floor/prison/darkyellow2, +/area/caperiver/indoors/conambase/unknown) +"gQU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"gQZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"gRj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"gRu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/central) +"gRx" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"gRI" = ( +/obj/structure/platform_decoration/stone/soro, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/caperiver/outdoors/chasm) +"gRP" = ( +/obj/structure/surface/rack, +/obj/item/engi_upgrade_kit{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"gSm" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"gSE" = ( +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/unknown) +"gTi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"gTv" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -2; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"gTM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#7f6357"; + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"gUf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stack/sheet/cardboard/small_stack{ + pixel_x = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"gUD" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"gUP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/con_am_exterior/south) +"gVr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"gVy" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/central) +"gVA" = ( +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"gVC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/east, +/area/caperiver/indoors/conambase/support) +"gVE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"gVR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"gVU" = ( +/obj/structure/cargo_container/hybrisa/containersextended/kelland_left, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"gWk" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32; + pixel_x = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/structure/closet/firecloset, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/sign/poster/safety{ + pixel_y = 31; + pixel_x = 15 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"gWL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"gXh" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"gYl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 12; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"gYC" = ( +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/head/hardhat, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_personal{ + req_one_access = null + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"gYD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_e) +"gYK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"gYO" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"gYS" = ( +/obj/structure/flora/grass/desert/heavygrass_8, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"gZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"gZO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -11; + pixel_y = 17 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"haj" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/sign/conam/variant1{ + pixel_y = 32 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south) +"han" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform_decoration/stone/soro/north, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"hba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"hbh" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"hbl" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/sign/conam/variant3/damage1{ + pixel_y = 30 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south_east) +"hbq" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/red{ + dir = 4; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"hbT" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"hcO" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"hcT" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"hcW" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"hcZ" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"hdK" = ( +/obj/structure/window/framed/abyssal/standard/cell{ + health = 200; + name = "reinforced window" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/bunker) +"hef" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"heg" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"her" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"heI" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"hfb" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"hfc" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"hfm" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"hfp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/paper/crumpled{ + layer = 5; + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/indoors/miningbase/admin) +"hfw" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"hfA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -2; + pixel_y = -22 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/north_west) +"hfZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"hgk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/caperiver/indoors/conambase/unknown) +"hgq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/shard, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"hgH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"hgL" = ( +/turf/open/floor/cult, +/area/caperiver/indoors/caves/se) +"hhg" = ( +/obj/structure/window/framed/abyssal/blue/hull, +/turf/open/floor/engine, +/area/caperiver/oob) +"hhh" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4; + explo_proof = 0 + }, +/obj/item/stack/rods, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"hhz" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"hhG" = ( +/turf/open/floor/prison, +/area/caperiver/outdoors/mining_base_exterior/north) +"hhJ" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/unknown) +"hhK" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"hhR" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "distribution" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/oob) +"hir" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north) +"hiI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"hiS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/telecomms/telecomm_4) +"hiY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"hju" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"hkt" = ( +/turf/closed/wall/abyssal/blue/unmeltable, +/area/caperiver/indoors/conambase/research_w) +"hkX" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/paper_bin{ + pixel_x = 7 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/recreational) +"hlf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"hlA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/telecomms/telecomm_3) +"hlM" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"hlO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/sign/poster/conam{ + pixel_y = 33; + pixel_x = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"hlS" = ( +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 18 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"hmN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"hnj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"hnk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central/antiweed) +"hnK" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"hnV" = ( +/turf/closed/wall/engineership/destructible, +/area/caperiver/indoors/conambase/unknown) +"hoc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"hoi" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south) +"hoC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"hoI" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"hpb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/blue, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"hpy" = ( +/obj/structure/closet/jcloset, +/obj/item/clothing/shoes/galoshes, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"hpz" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"hpG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"hpM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"hpX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"hqm" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/outdoors/landing_zone_2/river) +"hqY" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"hrk" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"hru" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"hrw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"hsk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/disposal, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"hsl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/recreational) +"hsx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"hsA" = ( +/obj/structure/window_frame/strata, +/obj/item/shard, +/turf/open/floor/plating, +/area/caperiver/indoors/processing) +"hsB" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/item/clothing/under/rank/security, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/kutjevo/colors/red/inner_corner/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"hsK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"htf" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"htj" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + layer = 3.12; + pixel_y = 17 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"htm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/trash, +/obj/effect/decal/conam/long_logo_left/damage_1{ + pixel_x = -19 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"htF" = ( +/obj/item/shard, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"htW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/admin) +"hua" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"huk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/conam/long_logo_left/damage_1{ + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"huU" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1{ + pixel_y = 34 + }, +/obj/effect/decal/large_stain, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"huW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"hvc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"hvo" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"hvE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"hvT" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"hwa" = ( +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner/west, +/area/caperiver/indoors/miningbase/checkpoint) +"hwj" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"hwr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"hwB" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"hwL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"hxt" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"hxu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 3; + pixel_y = 28 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"hxF" = ( +/obj/structure/platform/metal/strata/north, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate, +/area/caperiver/outdoors/bushlands) +"hxV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"hyo" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"hyA" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/remains/robot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"hyR" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/computerframe, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"hyS" = ( +/obj/effect/decal/large_stain, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/telecomms/telecomm_4) +"hzs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"hzU" = ( +/obj/structure/machinery/light/blue, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_e) +"hzW" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"hzZ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"hAg" = ( +/obj/structure/bed/chair, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"hAm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"hAt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/north_west) +"hBg" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"hBQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"hBY" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"hCE" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"hCS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"hDj" = ( +/obj/structure/fence/slim, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"hDw" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"hDA" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"hDJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = -3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"hDL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/autolathe, +/turf/open/floor/darkbrown2/southwest, +/area/caperiver/indoors/conambase/delivery) +"hDQ" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"hEa" = ( +/obj/item/trash/tray, +/obj/item/tool/kitchen/utensil/pfork, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"hEn" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/central) +"hEC" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/landing_zone_2) +"hEO" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"hEZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/red{ + dir = 8; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"hFo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_1) +"hFu" = ( +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"hFv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"hFY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"hGi" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"hGq" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"hHh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"hHu" = ( +/obj/structure/window/framed/kutjevo, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"hHK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/indoors/miningbase/admin) +"hIg" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar, +/obj/item/packageWrap, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"hIn" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"hID" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"hJe" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"hJk" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"hJq" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"hJP" = ( +/obj/structure/machinery/big_computers/computerblack/computer2{ + pixel_y = 18; + pixel_x = -6; + density = 0 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"hKa" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"hKc" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"hKA" = ( +/obj/structure/flora/grass/desert/heavygrass_8, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"hLf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"hLo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"hLw" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/remains/robot{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"hLJ" = ( +/obj/structure/cable/white{ + icon_state = "1-8"; + level = 2; + pixel_y = -16; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"hMk" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_6"; + desc = null; + name = "sticky notes" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"hMu" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/light, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -20; + pixel_y = 7 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"hMM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/south, +/area/caperiver/indoors/conambase/support) +"hNY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/caperiver/indoors/conambase/recreational) +"hOe" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south) +"hOg" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -5; + pixel_y = 20; + density = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_x = 7 + }, +/obj/structure/machinery/vending/coffee/simple{ + pixel_x = 16; + pixel_y = 19; + density = 0 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"hOu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/south/antiweed) +"hOF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/item/explosive/mine/active/no_iff{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"hOI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"hOS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"hPm" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"hPr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"hPI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"hQx" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"hQB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"hQW" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"hRm" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/north) +"hRr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"hRP" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"hSe" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain{ + layer = 2.6; + pixel_x = 14; + pixel_y = -9; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"hSf" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/wood/wood_broken5, +/area/caperiver/outdoors/landing_zone_2/interior) +"hSj" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"hSA" = ( +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"hSF" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_5"; + desc = null; + name = "sticky notes" + }, +/obj/structure/largecrate/random/barrel/black{ + layer = 3.1; + pixel_y = 8; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"hSN" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/prop/almayer/box, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/indoors/miningbase/admin) +"hTl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"hTn" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"hVp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"hVs" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/unknown) +"hVE" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"hVF" = ( +/obj/structure/prop/server_equipment, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"hVM" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -13; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"hVO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/hatchet, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/hydro) +"hVT" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"hWb" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"hWd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/freezerfloor, +/area/caperiver/indoors/conambase/support) +"hWi" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/bushlands) +"hWr" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"hWz" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"hWD" = ( +/obj/structure/flora/bush/desert/cactus/multiple, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"hWE" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"hWG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/caperiver/indoors/miningbase/dorm) +"hWL" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"hWM" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"hWX" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2"; + layer = 2.52 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/indoors/conambase/unknown) +"hXk" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"hXF" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south_east) +"hXH" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"hXO" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south_east) +"hYj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_w) +"hYy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"hYB" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"hYG" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/telecomms/telecomm_2) +"hZx" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north) +"hZR" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/indoors/miningbase/checkpoint) +"iae" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/landing_zone_1) +"iah" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"iaR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"ibO" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"ibP" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"ici" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"ict" = ( +/turf/closed/wall/strata_ice/rock, +/area/caperiver/indoors/caves/central) +"icz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/central/antiweed) +"icA" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/landing_zone_2) +"icH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini{ + pixel_x = 10; + pixel_y = -7; + layer = 2.9 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"icS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"icT" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"idr" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"idw" = ( +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/landing_zone_2) +"idy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"idE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_y = 2; + pixel_x = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"idF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"idO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"ieb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"ieu" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"ieH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"ifb" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/lz_cave) +"ifi" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/weldpack{ + pixel_y = 15 + }, +/obj/item/clothing/head/welding, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/north, +/area/caperiver/indoors/conambase/recreational) +"ifo" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"ifz" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/landing_zone_1) +"ifN" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"igo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"igr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"igD" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/structure/closet/crate, +/obj/item/device/lightreplacer, +/obj/item/device/lightreplacer, +/obj/item/device/lightreplacer, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/caperiver/indoors/conambase/engi) +"igM" = ( +/obj/structure/largecrate/empty/case, +/obj/item/weapon/sword/machete, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"ihl" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"ihH" = ( +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"ihT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"iia" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"iif" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/landing_zone_2) +"ijb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/maintenance_jack, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"iju" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/telecomms/telecomm_3) +"ikd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/big_computers/messaging_server/brown, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"iki" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/south) +"iku" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"ilp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"ilw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"ilR" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"imh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -15; + pixel_y = 3 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"imO" = ( +/turf/open/gm/dirt/brown/variant_1, +/area/caperiver/indoors/caves/w) +"imP" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -2; + pixel_y = -13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"imU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"ina" = ( +/obj/structure/flora/grass/desert/lightgrass_12{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"inh" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"inE" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = -12; + pixel_y = -13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"inF" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"inI" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"inK" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"inP" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_2/cave) +"inR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ioI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"ipj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"ipn" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/scrublands/north_west) +"ipr" = ( +/obj/structure/reagent_dispensers/tank/water, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/recreational) +"ipW" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_1) +"iqj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"iqp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -13; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"iqC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"iqE" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/caperiver/telecomms/telecomm_3) +"iqQ" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Con-Am Facility"; + desc = "A sign denoting the location of a Con-Am facility." + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"irr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/safety/maint{ + pixel_y = -32; + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_e) +"irC" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/north) +"irD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/scrublands/central) +"irH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"irQ" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"isb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"ise" = ( +/turf/open/floor/kutjevo/plate, +/area/caperiver/indoors/miningbase/dorm) +"isf" = ( +/obj/structure/flora/grass/desert/heavygrass_3{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"isR" = ( +/obj/structure/largecrate/random{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"itx" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"itH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/con_am_exterior/south) +"itZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"iua" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"iuc" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"ivx" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"ivF" = ( +/obj/item/shard, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"ivX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12; + layer = 2.52 + }, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/recreational) +"iwg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"ixc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"ixi" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 30; + pixel_x = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"ixr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"ixI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/indoors/miningbase/admin) +"ixZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"iyd" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/landing_zone_2) +"iyh" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"iyn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_east) +"iyx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/central) +"iyA" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"iyJ" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"iyV" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"izd" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north) +"izk" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west/antiweed) +"izl" = ( +/obj/structure/bed/chair{ + dir = 8; + layer = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"izv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"izU" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"iAa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"iAe" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/prop/colony/canister{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/trash/cigbutt, +/obj/item/device/flashlight{ + pixel_y = -5; + pixel_x = -5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"iAg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"iAZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/toolkit/full, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"iBk" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti1{ + pixel_x = 11 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"iBy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"iBA" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"iCg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"iCi" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"iCv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/north_west) +"iCK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/lz_cave) +"iCU" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"iDv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"iDJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"iEd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"iEf" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"iEm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"iEu" = ( +/obj/structure/machinery/computer/communications{ + dir = 4; + layer = 4; + pixel_y = 5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"iEy" = ( +/obj/item/shard, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"iES" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/outdoors/mining_base_exterior/north) +"iEY" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/shard, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"iFt" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"iFH" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/remains/robot{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"iFJ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"iFL" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -16; + pixel_y = 23 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"iGc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"iGs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/darkred2/north, +/area/caperiver/indoors/conambase/support) +"iGv" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/caperiver/outdoors/landing_zone_1) +"iGw" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/west) +"iGU" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/hybrisa/metal/zbrownfloor2/east, +/area/caperiver/outdoors/con_am_exterior/south) +"iHt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/north) +"iHv" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"iHy" = ( +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"iHN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/north) +"iIh" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"iIn" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"iIt" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"iIy" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"iIA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1_1"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"iIT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"iJs" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"iJt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"iKe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"iKm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"iKr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"iKv" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north) +"iKy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"iLr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/con_am_exterior/north) +"iMH" = ( +/obj/structure/surface/rack, +/obj/item/device/helmet_visor/welding_visor/mercenary{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/device/helmet_visor/welding_visor/mercenary{ + pixel_x = 4 + }, +/obj/structure/sign/poster/safety{ + pixel_x = -32 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/indoors/miningbase/engi) +"iNC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreencorners2/east, +/area/caperiver/indoors/conambase/recreational) +"iNI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/computer3{ + pixel_y = 11; + density = 0; + unacidable = 1; + explo_proof = 1; + layer = 2.99 + }, +/obj/item/prop{ + icon = 'icons/obj/structures/machinery/computer3.dmi'; + icon_state = "crew"; + name = "Console Screen"; + pixel_y = 10; + explo_proof = 1; + unacidable = 1; + light_range = 2; + light_color = "#00FFFF"; + light_on = 1; + anchored = 1 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"iNR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"iNT" = ( +/turf/open/floor/prison, +/area/caperiver/outdoors/con_am_exterior/north) +"iOd" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/telecomms/telecomm_2) +"iOn" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/support) +"iOt" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"iOB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/north) +"iOF" = ( +/turf/open/floor/darkbrown2/west, +/area/caperiver/indoors/conambase/delivery) +"iPB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"iQq" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"iQr" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d"; + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"iQK" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/invuln/dense/cliff_wall{ + pixel_y = -9; + layer = 2.9 + }, +/obj/structure/platform/metal/strata/west{ + layer = 4.12 + }, +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = 3; + pixel_y = 18 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"iQN" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = -32 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"iRu" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"iRw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = -1 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"iRI" = ( +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/unknown) +"iRK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"iRZ" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"iSa" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"iSj" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"iTk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/bedroll{ + dir = 1 + }, +/obj/structure/sign/poster/kellandmining{ + pixel_y = 32; + pixel_x = 8 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/sign/poster/conam{ + pixel_y = 37; + pixel_x = -6 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"iTs" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"iTw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"iTy" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"iTz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"iTD" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"iTR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/poster/pinup{ + pixel_x = 4; + pixel_y = 35 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -4; + pixel_y = 20 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 10; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/north, +/area/caperiver/indoors/conambase/support) +"iTY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/obj/item/shard, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"iUB" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"iUO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"iUQ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"iUX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"iVj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/empty/case/double{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"iVs" = ( +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 7; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"iVY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/scrubber{ + welded = 1 + }, +/obj/item/toy/deck{ + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"iWf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_x = 7 + }, +/obj/structure/sign/poster/ad{ + pixel_y = 32; + layer = 3 + }, +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 10 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"iWq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/nw_cave) +"iWI" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"iWM" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"iWO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"iWX" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"iWZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/west) +"iXh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"iXm" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"iXn" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 9; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"iXv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"iXE" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"iXQ" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"iYk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"iYN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"iZa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"iZC" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"iZT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south_east) +"jah" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"jao" = ( +/obj/structure/sign/safety/commline_connection{ + name = "Communications Array Direction"; + desc = "Direction of a Communications Array."; + pixel_x = 6 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/telecomms/telecomm_3) +"jbF" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 12; + pixel_y = 19 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"jbN" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"jbX" = ( +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"jcg" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/caperiver/indoors/miningbase/medical) +"jcl" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"jcu" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"jcR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"jcW" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 24; + pixel_y = 7 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"jcX" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"jdB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/frame/table/almayer, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"jdU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"jek" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"jew" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/scrublands/north_west) +"jeB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -6 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"jeI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"jfo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/caperiver/indoors/conambase/recreational) +"jfI" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"jfM" = ( +/turf/open/floor/hybrisa/engineership/pillars, +/area/caperiver/indoors/conambase/unknown) +"jfS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"jfY" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/seeds/potatoseed, +/obj/item/seeds/poppyseed, +/obj/item/seeds/kudzuseed, +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/hydro) +"jgl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_east) +"jgy" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"jgL" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"jgP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/research_e) +"jhd" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"jhu" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_1) +"jhw" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"jic" = ( +/obj/structure/closet/crate/green, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/turf/open/floor/prison/darkbrown2/west, +/area/caperiver/indoors/conambase/recreational) +"jik" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"jip" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/large_stain{ + pixel_x = 4; + pixel_y = -9 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"jjc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"jjm" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"jjM" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"jkF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"jly" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"jlH" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south_east) +"jmo" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"jms" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"jmx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 15; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jnp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"jnD" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"jnK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"jok" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"jow" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/scrublands/south_east) +"joP" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"joX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/disposal, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"jpj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"jpq" = ( +/turf/open/floor/kutjevo/tan, +/area/caperiver/telecomms/telecomm_4) +"jpC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"jpU" = ( +/obj/structure/machinery/light/red{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/unknown) +"jqq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"jqC" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"jqD" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"jqI" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_y = 19 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"jqT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/indoors/miningbase/admin) +"jrd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 14; + pixel_y = 23 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"jrj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"jsb" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/south) +"jsv" = ( +/obj/structure/flora/grass/desert, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"jsE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/landing_zone_2/interior) +"jtn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -28; + pixel_y = 38 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"jua" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"jui" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 9; + pixel_y = 14 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_y = 15; + pixel_x = -18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"juu" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"juw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"juH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"juR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"juV" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 13; + pixel_y = 19; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -2; + pixel_y = -3 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"juW" = ( +/obj/structure/platform/stone/soro/west, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"juY" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/unknown) +"jvg" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"jvi" = ( +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"jvp" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"jvA" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"jvP" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6; + layer = 2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"jvU" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"jwj" = ( +/turf/open/shuttle/escapepod/north, +/area/caperiver/indoors/miningbase/engi) +"jwm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"jwH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"jwQ" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"jxc" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"jxo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"jxs" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/landing_zone_2/river) +"jyi" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jyj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -20; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"jys" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"jyt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"jyx" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"jze" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"jzr" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 1 + }, +/turf/open/floor/hybrisa/engineership/pillars, +/area/caperiver/indoors/conambase/unknown) +"jzu" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"jzx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"jzI" = ( +/obj/item/shard, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/caperiver/indoors/conambase/unknown) +"jzW" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"jzY" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/girder/displaced, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"jAa" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"jAq" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south_east) +"jAz" = ( +/obj/structure/largecrate/random/mini/wooden{ + pixel_y = 9 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"jAF" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 5 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -4; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jAJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_w) +"jAK" = ( +/obj/structure/flora/bush/ausbushes/var3/ppflowers{ + icon_state = "brflowers_1" + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"jAR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -18; + pixel_y = 13 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"jAT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/decal/hybrisa/dirt, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/caperiver/indoors/miningbase/medical) +"jBi" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"jBJ" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"jBM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jCj" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"jCJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"jCK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"jDr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/structure/pipes/vents/pump{ + welded = 1 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"jDt" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_y = 10; + pixel_x = 15 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"jDE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"jDV" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_x = -12 + }, +/obj/effect/decal/remains/robot{ + pixel_x = -21; + pixel_y = 11 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"jEf" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/obj/item/device/binoculars/civ, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"jFL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"jGt" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"jGB" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"jGC" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"jGR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"jGU" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"jHw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"jHy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/caperiver/outdoors/road/central/antiweed) +"jHD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"jIq" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Con-Am Facility"; + desc = "A sign denoting the location of a Con-Am facility." + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"jIz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/north) +"jII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"jIJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"jJi" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"jJn" = ( +/obj/item/tool/pickaxe, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"jJr" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/telecomms/telecomm_4) +"jJA" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"jJU" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = 3; + pixel_y = 9; + layer = 3.1 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"jJV" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/north) +"jJZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/structure/cargo_container/hybrisa/containersextended/blueleft, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/caperiver/outdoors/road/north) +"jKz" = ( +/turf/open/floor/darkbrowncorners2, +/area/caperiver/indoors/conambase/delivery) +"jKG" = ( +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"jKL" = ( +/mob/living/simple_animal/lizard, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/bushlands) +"jKP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"jLh" = ( +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"jLz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"jLL" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"jMo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"jNc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 5; + pixel_y = -9 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"jNe" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"jNk" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/outdoors/landing_zone_1) +"jNx" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"jNJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/warning_cone{ + layer = 5; + pixel_y = 3; + pixel_x = -5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -15; + pixel_y = 16 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"jNW" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"jOg" = ( +/obj/structure/flora/tree/joshua, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"jOm" = ( +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"jOo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_1) +"jOy" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"jOK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"jPe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_e) +"jQf" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"jQm" = ( +/obj/structure/platform/stone/soro/west, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"jQC" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"jQS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"jRt" = ( +/obj/structure/platform/stone/sandstone/north, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/caperiver/outdoors/landing_zone_2/river) +"jRJ" = ( +/obj/structure/sign/conam/variant1, +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/unknown) +"jRO" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"jSa" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1; + layer = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"jSp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"jSt" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jSv" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south_east) +"jSB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"jSN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"jSY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"jTb" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/unknown) +"jTt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"jTS" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"jTT" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"jTY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/indoors/miningbase/engi) +"jUk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"jUu" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"jVt" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"jWb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"jWd" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"jWi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"jWK" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/sheet/animalhide/human, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"jWQ" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/telecomms/telecomm_2) +"jXu" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/landing_zone_2) +"jXv" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"jXC" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 2; + pixel_y = 42 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"jXI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"jXN" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/caperiver/indoors/miningbase/medical) +"jYg" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"jYi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -26; + pixel_y = -14 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 1 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"jYq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"jYu" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"jYw" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south_east) +"jYG" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"jYR" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/con_am_exterior/north) +"jZH" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"kao" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/landing_zone_2) +"kar" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/structure/surface/table/woodentable, +/obj/structure/sign/poster/io{ + pixel_y = 35 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"kaw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"kbs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/mining_base_exterior/north) +"kbA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"kbU" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"kbX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 17; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"kce" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"kcg" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"kcn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 3; + pixel_y = 53 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"kcw" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"kcG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/scrublands/south_east) +"kcJ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"kcR" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/west) +"kdq" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"kdx" = ( +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/command) +"kdy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/pistol/highpower{ + current_rounds = 3 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"kdC" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/hydro) +"kdN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"kdV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"keb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"kep" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"keq" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1_alt"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"key" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/telecomms/telecomm_4) +"kfa" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"kfb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"kfz" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"kfU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"kgb" = ( +/obj/structure/sign/banners/clf_worn{ + pixel_x = 9; + pixel_y = 31 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/computer/cameras{ + pixel_y = 4 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 36; + pixel_x = -9 + }, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"kgm" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"kgD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"kgJ" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"khh" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -14 + }, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"kht" = ( +/obj/structure/machinery/disposal, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"khv" = ( +/obj/effect/landmark/yautja_young_teleport, +/obj/effect/landmark/yautja_teleport, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"khx" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"khC" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/oob) +"khI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"khT" = ( +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_e) +"khZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"kia" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"kiK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"kiY" = ( +/obj/structure/window/framed/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"kiZ" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"kjf" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/west) +"kjk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_w) +"kjq" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"kjP" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 4; + pixel_y = -11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"kkb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + pixel_y = 14 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"kkz" = ( +/obj/structure/machinery/vending/hydronutrients{ + pixel_y = 14; + density = 0 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"kkY" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"kla" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"kld" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"kls" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"kly" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/decal/strata_decals/grime/grime3{ + pixel_y = 12 + }, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"klA" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"kmc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"kme" = ( +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"kmG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/poster/io{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"kmZ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, +/obj/item/storage/toolkit/full, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"kng" = ( +/obj/structure/platform/stone/soro/west, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"knu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"kof" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/computer3{ + pixel_y = 11; + density = 0; + unacidable = 1; + explo_proof = 1; + layer = 2.99 + }, +/obj/item/prop{ + icon = 'icons/obj/structures/machinery/computer3.dmi'; + icon_state = "rdcomp-inuse"; + name = "Console Screen"; + pixel_y = 10; + explo_proof = 1; + unacidable = 1; + light_range = 2; + light_color = "#BF40BF"; + light_on = 1; + anchored = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"koN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"koV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"kpB" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/stone/soro/west, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"kpK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/random/gun/special/lowchance, +/turf/open/floor/darkred2/north, +/area/caperiver/indoors/conambase/support) +"kpL" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"kpP" = ( +/obj/structure/flora/bush/canyon/bush, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"kqh" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"kqs" = ( +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/con_am_exterior/south) +"kqF" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"krq" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 1 + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"krv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"krE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"ksb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"ksj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/scrublands/south_east) +"ksA" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#7f6357"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/caperiver/outdoors/chasm) +"ksC" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/caperiver/outdoors/landing_zone_2/river) +"ksM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"ksR" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"kta" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison/darkyellow2, +/area/caperiver/telecomms/telecomm_3) +"ktj" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"kuk" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"kuA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/tank/fuel, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"kuK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkbrown2/southeast, +/area/caperiver/indoors/conambase/recreational) +"kuU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"kuX" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"kvb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/telecomms/telecomm_4) +"kvc" = ( +/obj/structure/machinery/computer/arcade{ + layer = 4; + pixel_y = 19; + pixel_x = 5; + density = 0 + }, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"kvd" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"kws" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"kwK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"kxh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"kxn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 18 + }, +/obj/item/ashtray/bronze{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/wood/wood_broken, +/area/caperiver/outdoors/landing_zone_2/interior) +"kxr" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"kxN" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/ceramic_plate, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"kxU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"kyo" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_1) +"kyp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"kyr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"kyy" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"kyO" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + pixel_x = 1; + pixel_y = -3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"kyX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"kzh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/glass, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"kzi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"kzj" = ( +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"kzu" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/delivery) +"kzy" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = -10 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"kAg" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"kAk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/cargo_container/hybrisa/containersextended/greenleft, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"kAD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/vehicles/Armored_Truck/Teal{ + dir = 4; + layer = 4.13 + }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/caperiver/outdoors/landing_zone_1) +"kAG" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d"; + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"kAR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"kBm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"kBu" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/west) +"kBO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/east, +/area/caperiver/telecomms/telecomm_3) +"kCd" = ( +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_y = -12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 18 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"kCf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"kCn" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"kCy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"kCK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"kDf" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"kDt" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"kDF" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"kDO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"kDQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"kDT" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/north) +"kEs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"kEv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/carpet/carpetdarkerblue, +/area/caperiver/indoors/miningbase/dorm) +"kEK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"kEX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west/antiweed) +"kFc" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"kFf" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_east) +"kFr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 1; + dir = 8; + pixel_x = -3 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"kFX" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"kGs" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"kGP" = ( +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"kGV" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"kHd" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/con_am_exterior/north) +"kHn" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications/simple{ + dir = 1; + pixel_x = -6 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"kHp" = ( +/turf/open/floor/darkbluecorners2/north, +/area/caperiver/indoors/conambase/recreational) +"kHC" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"kHN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/light/small{ + dir = 1; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"kIu" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"kIx" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = 23; + pixel_y = -5 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"kIK" = ( +/obj/item/stack/rods, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"kJn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"kJH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"kJN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"kKb" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_y = 17 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"kKq" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"kKv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 3; + pixel_y = -19 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"kKG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/south) +"kKH" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/indoors/miningbase/dorm) +"kKZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 10 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"kLo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"kLX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"kMw" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/outdoors/landing_zone_1/interior) +"kMF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 13; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"kMP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"kNj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -18; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"kNs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"kNI" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/sheet/wood{ + pixel_x = 4; + pixel_y = -11 + }, +/obj/item/stack/sheet/wood{ + pixel_x = 7; + pixel_y = -5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"kNR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_1) +"kNY" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 14 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/west/antiweed) +"kOv" = ( +/obj/structure/flora/grass/desert, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"kPA" = ( +/obj/structure/platform_decoration/stone/mineral/north{ + color = "#716959" + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"kQh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"kQs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/west) +"kQy" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tiles, +/area/caperiver/indoors/miningbase/checkpoint) +"kQA" = ( +/obj/structure/flora/bush/canyon/bush/alt1, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west/antiweed) +"kRl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"kRv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"kRT" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south/antiweed) +"kSf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"kSh" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/large_stain, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"kSy" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"kSI" = ( +/obj/structure/bed/chair{ + pixel_x = 1; + pixel_y = 19 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/dorm) +"kSL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"kTz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"kUd" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"kUf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north) +"kUo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"kUp" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"kVb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/oob) +"kVu" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"kVJ" = ( +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 7; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 15; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"kWf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"kWg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/dorm) +"kWA" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 14; + pixel_y = 17 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"kWI" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"kWU" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"kXi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"kXz" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/darkred2, +/area/caperiver/indoors/conambase/support) +"kXQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 3 + }, +/turf/open/floor/wood/wood_broken7, +/area/caperiver/outdoors/landing_zone_2/interior) +"kYu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"kYz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"kYD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/obj/effect/landmark/monkey_spawn, +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south_east) +"kYL" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_east) +"kZm" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"kZD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 17; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"kZJ" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/sign/conam/variant3/damage1{ + pixel_x = 17; + pixel_y = 31 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south) +"kZR" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"kZZ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"laq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1/interior) +"lav" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/mining_base_exterior/south) +"laB" = ( +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 14; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lbZ" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 21 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"lcJ" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"ldb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/northwest, +/area/caperiver/indoors/conambase/support) +"ldp" = ( +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"lef" = ( +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"lep" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#7f6357"; + layer = 2.8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"les" = ( +/obj/structure/machinery/power/terminal, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/engi) +"leu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"leP" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"lfc" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"lfe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 12; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -2; + pixel_y = 21 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"lfh" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -20; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"lfk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"lfm" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -16; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lfA" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"lfN" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lfS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"lgs" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south_east) +"lgw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/central/antiweed) +"lhf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/north) +"lhk" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"lhr" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/scrublands/north_west) +"lhA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"lhH" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/obj/item/clothing/accessory/patch/clf_patch{ + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"lhN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"lhQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"lhY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken6, +/area/caperiver/outdoors/landing_zone_2/interior) +"lij" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"liG" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"liP" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"liX" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"ljs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"ljN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_x = -30 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/engi) +"ljT" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"ljV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/darkbrown2/east, +/area/caperiver/indoors/conambase/delivery) +"lkn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -8; + pixel_y = 1; + density = 0 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"lkt" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"lkv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"lky" = ( +/obj/structure/window/framed/abyssal/standard, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"lkz" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + layer = 2.52; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"lkC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine{ + dir = 1; + autoname = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"lkG" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"lkR" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"lld" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"llx" = ( +/obj/structure/computerframe{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 2 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"llS" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"llT" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/west/antiweed) +"llX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/caperiver/indoors/conambase/recreational) +"lmu" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lns" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips/human, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/unknown) +"lnM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 21; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"loA" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/west/antiweed) +"loN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/scrublands/south_east) +"loP" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8; + layer = 2; + explo_proof = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north) +"loU" = ( +/obj/structure/prop/server_equipment{ + icon_state = "rackframe_broken" + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"lpa" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/large_stain{ + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"lpi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/goo, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"lqq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"lre" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"lrg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"lrm" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lrJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"lsa" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"lsd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"lse" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/landing_zone_2/river) +"lsn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 15; + pixel_y = 14 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 14; + pixel_y = -8 + }, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"lsq" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"lsw" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/caperiver/outdoors/landing_zone_2/river) +"lsL" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/scrublands/south_east) +"lsT" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"lte" = ( +/obj/structure/flora/grass/desert/heavygrass_3{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"lti" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = -14; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"ltR" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"lva" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"lvz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/north) +"lvK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"lvZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"lwP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark2, +/area/caperiver/indoors/conambase/command) +"lwT" = ( +/obj/structure/flora/grass/desert/lightgrass_5{ + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"lwW" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"lwZ" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"lxh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/caperiver/indoors/miningbase/dorm) +"lxF" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"lyd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"lye" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 13; + pixel_x = 8 + }, +/turf/open/floor/darkbrown2/northeast, +/area/caperiver/indoors/conambase/delivery) +"lys" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"lyW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"lyZ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 22 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"lzj" = ( +/obj/structure/platform/stone/soro/north, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 3; + pixel_y = 28 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"lzE" = ( +/obj/structure/flora/tree/joshua, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"lzO" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"lzT" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"lzW" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"lAk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 11; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"lAD" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"lAI" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"lAL" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lAX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 4; + pixel_y = -10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"lAZ" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"lBy" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"lBG" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"lBO" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/platform/stone/soro/north, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"lBU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/caperiver/indoors/conambase/engi) +"lCv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000"; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/unknown) +"lCD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"lCS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"lDg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"lDI" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"lDM" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/desert_shore/shore_edge1, +/area/caperiver/outdoors/landing_zone_2/river) +"lEh" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = -14; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 3; + pixel_x = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"lEo" = ( +/obj/structure/flora/bush/desert/cactus/multiple, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_east) +"lEt" = ( +/obj/effect/decal/large_stain, +/obj/item/paper/crumpled{ + pixel_y = -3 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/outdoors/landing_zone_1/interior) +"lEz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/west) +"lFd" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"lFy" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"lFz" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/structure/platform_decoration/stone/mineral{ + color = "#716959" + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/south_east) +"lFC" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"lFD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"lGy" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"lGH" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/north) +"lGK" = ( +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/con_am_exterior/north) +"lGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"lGY" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 21 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"lHf" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"lHt" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"lHy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/telecomms/telecomm_4) +"lHP" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lHW" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"lIc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"lIj" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"lIy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"lIH" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/megaphone{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/device/whistle{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"lIJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"lIM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"lIQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/radio/intercom{ + pixel_y = 30; + freerange = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"lIT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"lJc" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"lJu" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"lJx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/sword/machete, +/turf/open/floor/darkred2/east, +/area/caperiver/indoors/conambase/support) +"lKb" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"lKe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"lKp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/indoors/conambase/recreational) +"lKv" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"lKH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"lKN" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lKO" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lLn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"lLs" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/caperiver/telecomms/telecomm_1) +"lLI" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south_east) +"lLP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"lLU" = ( +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_2/cave) +"lMd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"lMl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/colony{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/security) +"lMt" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"lMH" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"lML" = ( +/obj/structure/bed/hybrisa/prisonbed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"lNf" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/scrublands/south_east) +"lNi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"lNp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"lNI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"lNY" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/structure/sign/conam/variant1{ + pixel_y = 32 + }, +/turf/open/desert/dirt, +/area/caperiver/telecomms/telecomm_2) +"lOe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/structure/sign/safety/medical{ + pixel_x = -24; + pixel_y = 1 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"lOg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south_east) +"lOp" = ( +/obj/structure/computerframe{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"lOu" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/item/tool/warning_cone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"lOv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"lOx" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"lOy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"lOK" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"lOW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 2; + pixel_y = -7 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"lPh" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/caperiver/telecomms/telecomm_1) +"lPu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"lPw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 8; + pixel_x = -26; + pixel_y = -14 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"lPE" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"lPO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"lPT" = ( +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/bushlands) +"lQC" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"lQR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"lQU" = ( +/turf/closed/wall/abyssal/blue/unmeltable, +/area/caperiver/indoors/conambase/command) +"lQY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/outdoors/landing_zone_2/cave) +"lRk" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"lRJ" = ( +/obj/structure/platform_decoration/stone/soro/east, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/caperiver/outdoors/chasm) +"lSr" = ( +/obj/structure/closet/secure_closet/cargotech{ + req_access = null + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"lSw" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/processor{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"lSF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -8; + pixel_y = -12 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"lSP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"lSZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"lTj" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/security) +"lUA" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"lUP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"lUU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/nw_cave) +"lUW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/bushlands) +"lUY" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/road/central) +"lVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/indoors/miningbase/admin) +"lVv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = -12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lVx" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lWd" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"lXc" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2"; + layer = 2.52 + }, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/unknown) +"lXR" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"lXT" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"lYa" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west/antiweed) +"lYc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lYn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"lYq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west/antiweed) +"lYs" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"lYF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 19; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"lYQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4"; + layer = 2.52 + }, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 16; + pixel_x = -10 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"lYV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/item/ammo_box/magazine/misc/mre/emergency/empty{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"lZp" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"lZF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"lZI" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"lZT" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -14 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"lZU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"mae" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"mah" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"map" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"mav" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"mbj" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"mbC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/fuel_cell/used, +/obj/item/fuel_cell/used, +/obj/item/fuel_cell/used, +/obj/item/fuel_cell/used, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"mbG" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"mbW" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"mcl" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"mcT" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"mdd" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/outdoors/landing_zone_2/cave) +"mdf" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"mdm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/disposal, +/obj/structure/sign/poster/io{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"mdu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 2; + autoname = 1; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"mek" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"mez" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"mfv" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/road/central) +"mfB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -17; + pixel_y = -11 + }, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"mfC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"mfM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"mgi" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/north) +"mgx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/west) +"mgK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 19 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 19 + }, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"mhk" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"mid" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"mig" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"miE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -2; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"mjb" = ( +/obj/structure/prop/colorable_rock/boulder/small{ + color = "#88715d"; + pixel_x = -16; + pixel_y = 34 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/caperiver/outdoors/chasm) +"mje" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central/antiweed) +"mjl" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"mjr" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"mjG" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"mjK" = ( +/obj/structure/largecrate/random/case, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"mjZ" = ( +/obj/item/stack/sheet/animalhide/human, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/unknown) +"mkb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"mkC" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south) +"mkR" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"mlc" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"mlO" = ( +/turf/open/floor/prison/cell_stripe, +/area/caperiver/indoors/conambase/delivery) +"mlW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"mmi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/telecomms/telecomm_4) +"mnp" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/south_east) +"mnr" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/darkgreen2/west, +/area/caperiver/indoors/conambase/recreational) +"mnQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"mou" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/unknown) +"moy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"mpj" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"mpS" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"mpW" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/west) +"mqb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"mqc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"mri" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = 18; + pixel_y = 16 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"mrx" = ( +/obj/structure/computerframe{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"mrI" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -6; + pixel_y = 23 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"mrQ" = ( +/obj/item/shard, +/turf/open/floor/prison/blue/west, +/area/caperiver/indoors/processing) +"mrR" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"msi" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"msl" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"msp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"msy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"msz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/north) +"msC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"msI" = ( +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"msO" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"mtu" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/indoors/conambase/recreational) +"mtB" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/obj/structure/sign/poster/pinup{ + pixel_y = 38; + pixel_x = 7 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"mtJ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"mtQ" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"mtW" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"mub" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"muj" = ( +/obj/structure/platform_decoration/stone/soro/east, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"muE" = ( +/obj/effect/spawner/random/toolbox, +/obj/item/tool/warning_cone{ + pixel_x = -20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"mvc" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"mvl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"mvu" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"mvQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/scrublands/west/antiweed) +"mwr" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/landing_zone_2/river) +"mwB" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/indoors/miningbase/engi) +"mwF" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"mxd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"mxJ" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"myc" = ( +/obj/structure/prop/tower{ + pixel_x = -17 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/indoors/conambase/unknown) +"myp" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/outdoors/landing_zone_1/cave) +"myw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"mzk" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 4; + pixel_y = 17 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"mzr" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/telecomms/telecomm_1) +"mzB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/caperiver/indoors/miningbase/engi) +"mzL" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/outdoors/landing_zone_1/cave) +"mAl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 1; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"mAm" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/outdoors/landing_zone_1) +"mBh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"mBB" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"mBK" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/mining_base_exterior/north) +"mCc" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"mCd" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"mCq" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"mCx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"mCA" = ( +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/south/antiweed) +"mCI" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"mCR" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"mDq" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"mDz" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"mDB" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -7 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"mDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/crumpled{ + pixel_x = 20 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"mEE" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"mEJ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"mEO" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkbluecorners2/west, +/area/caperiver/indoors/conambase/recreational) +"mGo" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 11; + pixel_y = -14 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"mGq" = ( +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/unknown) +"mGJ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/telecomms/telecomm_4) +"mGX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"mHL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/conam/long_logo_right/damage_1{ + pixel_x = -16; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"mHX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"mIt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"mIH" = ( +/obj/structure/flora/grass/desert/lightgrass_10{ + pixel_x = -5; + pixel_y = -15 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"mIM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/delivery) +"mIS" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"mJq" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"mJN" = ( +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/research_w) +"mKt" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"mKC" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"mKM" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 16; + pixel_y = -10 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_w) +"mKO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"mLl" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellow2/east, +/area/caperiver/telecomms/telecomm_3) +"mLn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"mLO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"mLY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"mMp" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/structure/sign/conam/variant3/damage1{ + pixel_y = 31; + layer = 3 + }, +/obj/structure/prop/hybrisa/misc/graffiti/graffiti3{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"mME" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"mMV" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"mMX" = ( +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 30; + pixel_x = -18; + layer = 4.1 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"mNa" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/north, +/area/caperiver/indoors/conambase/recreational) +"mNx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"mNL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"mOL" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"mOY" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"mPI" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"mPK" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"mQi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"mQv" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"mQF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 20; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"mQG" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/north_west) +"mQK" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"mRa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/conam/half_logo/damage_1, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/recreational) +"mRi" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"mRK" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_x = 12 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"mRT" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"mSf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"mSF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/caperiver/indoors/miningbase/dorm) +"mSM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"mTh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 2.9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"mTj" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"mTD" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/item/shard, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"mTO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"mUb" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/unknown) +"mUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/indoors/miningbase/admin) +"mUD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"mVJ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"mVK" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1 + }, +/obj/item/storage/box/mre/wy, +/turf/open/floor/darkbrown2/west, +/area/caperiver/indoors/conambase/delivery) +"mWa" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"mWe" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/indoors/miningbase/admin) +"mWA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_x = -6 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"mWM" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 27; + pixel_y = -27 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"mWQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"mXt" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 29 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"mXE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"mXF" = ( +/obj/structure/flora/grass/desert/heavygrass_6{ + pixel_x = -9; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"mXU" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"mYe" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"mYg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/radio/intercom{ + pixel_y = 30; + freerange = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"mYy" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"mYO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/oob) +"mYQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"mYS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"mZf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"mZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/checkpoint) +"mZQ" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"naI" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = -4 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"nbu" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/mop{ + pixel_x = -7; + pixel_y = 22 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"nbz" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/caperiver/telecomms/telecomm_2) +"nbG" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"nbO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/largecrate/random/mini{ + pixel_x = 6; + pixel_y = 17; + layer = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"ncj" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"ncA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central/antiweed) +"ncS" = ( +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/con_am_exterior/north) +"ncX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"ndl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = -4 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"ndu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"ndE" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"nee" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"neD" = ( +/obj/structure/platform/stone/soro/west, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -2; + pixel_y = -11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"nff" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"nfC" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"ngu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/admin) +"ngA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ngG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = -4; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"nhf" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"nhi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west/antiweed) +"nhl" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/landing_zone_2) +"nhX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"nil" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"niq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/central/antiweed) +"niY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/kutjevo/colors/red/inner_corner/east, +/area/caperiver/indoors/miningbase/checkpoint) +"njk" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/trash/candle, +/obj/item/tool/pen/blue{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/toy/dice{ + pixel_x = 3 + }, +/obj/item/toy/dice/d20{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"njp" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"njw" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_y = -1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/central) +"njx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"njX" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"nkh" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_2/cave) +"nky" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 6; + pixel_y = 22 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"nkE" = ( +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"nln" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"nlB" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"nlL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"nmf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"nmr" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"nmt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"nmB" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"nmF" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west) +"nmJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#7f6357"; + pixel_x = 9; + pixel_y = -1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"nmQ" = ( +/obj/item/shard, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"nnt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"nnC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"nnQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"nnU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"nnY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"noa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_east) +"noo" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/con_am_exterior/north) +"noH" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkbrown2/southwest, +/area/caperiver/indoors/conambase/recreational) +"npb" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"npr" = ( +/obj/item/stack/sheet/cardboard/small_stack, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"npv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/west) +"npx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 17; + pixel_x = -5 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"npM" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"npO" = ( +/obj/item/shard, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/unknown) +"nqc" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + pixel_x = -24; + pixel_y = 9 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"nqF" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"nqV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -4; + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"nrn" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"nrt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"nrv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"nsm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks/macho{ + pixel_y = 7; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"nsn" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"nsr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/sign/conam/variant3{ + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"ntb" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"ntg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"ntp" = ( +/obj/structure/machinery/floodlight, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"ntI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/weapon/gun/pistol/highpower{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/ammo_magazine/pistol/highpower, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"nug" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/item/tool/wet_sign{ + pixel_x = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"num" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = -17 + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"nus" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"nuE" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"nuH" = ( +/turf/closed/wall/abyssal/blue/reinforced, +/area/caperiver/indoors/conambase/command) +"nuI" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"nvm" = ( +/obj/structure/largecrate/empty/case, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 9; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -14; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/bushlands) +"nwa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"nwd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + autoname = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"nwp" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"nws" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"nwE" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"nwX" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"nxe" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"nxn" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"nxF" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/caperiver/indoors/conambase/engi) +"nxG" = ( +/obj/structure/machinery/light/small{ + dir = 8; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"nyc" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"nyk" = ( +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/north) +"nyK" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"nyR" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + light_color = "#00ff9f"; + light_on = 1; + light_power = 2; + light_range = 3; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"nyV" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"nzu" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"nzx" = ( +/obj/structure/window/framed/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"nzN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = -19 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"nzY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"nAl" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"nAm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/unknown) +"nAn" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north) +"nAC" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/caperiver/indoors/processing) +"nAH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/sign/conam/variant3{ + pixel_x = 16; + pixel_y = 31 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 18; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"nAK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"nAP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"nAX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"nAZ" = ( +/obj/effect/decal/hybrisa/hull_angled, +/obj/structure/prop/hybrisa/engineer/engineerpillar/smallsouthwest1{ + pixel_y = -60; + pixel_x = -30 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"nBk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"nBI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"nBR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_e) +"nBX" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + layer = 2.52 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"nCp" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"nCs" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/obj/structure/largecrate/black_market/poncho, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"nCw" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"nCC" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"nCF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/green/north, +/area/caperiver/indoors/conambase/medical) +"nCT" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"nCW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"nDc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"nDq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"nDr" = ( +/obj/structure/fence/slim/dark/door, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/caperiver/outdoors/landing_zone_2/interior) +"nEr" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/interior/wood/alt, +/area/caperiver/outdoors/bushlands) +"nEz" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"nEB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"nEJ" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north) +"nET" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"nFe" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"nFi" = ( +/obj/structure/flora/bush/canyon/tree, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"nFR" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"nGb" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"nGf" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"nGL" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/prop/hybrisa/misc/blood/blood3{ + layer = 4 + }, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/unknown) +"nGS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/central) +"nHH" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"nHL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/reagent_dispensers/tank/water, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"nHQ" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"nHS" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"nIf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/indoors/miningbase/admin) +"nIg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/telecomms/telecomm_3) +"nIs" = ( +/turf/open/floor/prison, +/area/caperiver/outdoors/con_am_exterior/south) +"nIx" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"nIV" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"nJd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"nJB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"nJS" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"nKf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = 2 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"nKh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 28 + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"nKj" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"nKw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"nKQ" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/telecomms/telecomm_3) +"nLa" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"nLd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/sign/safety/landingzone{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/bushlands) +"nLj" = ( +/obj/structure/fence/slim/door{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"nLq" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"nLu" = ( +/obj/structure/prop/dam/drill, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"nLx" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8"; + pixel_x = -14; + pixel_y = -19 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/caperiver/outdoors/scrublands/north_west) +"nLS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/structure/largecrate/empty/case, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"nLT" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/caperiver/outdoors/landing_zone_2/interior) +"nMl" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"nMw" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"nMY" = ( +/obj/structure/largecrate/supply{ + layer = 3.2; + pixel_y = 11 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"nNF" = ( +/obj/effect/decal/cleanable/blood/writing, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"nNG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/northeast, +/area/caperiver/indoors/conambase/unknown) +"nOb" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"nOw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"nOD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"nON" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/trash/chunk, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"nPu" = ( +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"nPA" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -3; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"nPO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"nQe" = ( +/obj/effect/decal/hybrisa/hull_angled{ + dir = 4 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"nQL" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"nRs" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"nRy" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"nRI" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/landing_zone_1) +"nRT" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + pixel_y = 2 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"nRU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"nSd" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"nSj" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/obj/item/shard, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"nSH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/structure/largecrate/empty/case/double, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"nSY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/indoors/conambase/recreational) +"nTd" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/caperiver/indoors/conambase/engi) +"nTm" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -12; + pixel_y = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = -8 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"nTB" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west) +"nTD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"nTN" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"nUh" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"nUm" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"nUx" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/road/west/antiweed) +"nUC" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south_east) +"nUP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/unknown) +"nUX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = 22 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"nVm" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"nVR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"nWe" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"nWz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/shard, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"nWA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/cable_coil/cyan, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"nWG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"nWN" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2"; + layer = 2.52; + pixel_y = -9 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"nWR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_east) +"nWZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"nXq" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north) +"nXt" = ( +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"nXV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"nYc" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"nYJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"nYX" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"nZa" = ( +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/security) +"nZO" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"nZT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"nZW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/reagent_container/syringe{ + icon_state = "broken"; + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"nZY" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"oaC" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"oaS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"oaX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -21; + pixel_y = 12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 9; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"obu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"obv" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 25; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"obw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"obQ" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"obY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"occ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/con_am_exterior/south) +"ocf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"ocm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"odd" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"odw" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"ody" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"odT" = ( +/obj/structure/machinery/light/small{ + dir = 8; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"oes" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/security) +"oeG" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"ofw" = ( +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/bushlands) +"ofT" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/medical) +"ofV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/organ/kidneys, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"ofW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"ogh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"ogj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/landing_zone_2/interior) +"ogt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"ogy" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/caperiver/indoors/processing) +"ogW" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 7; + pixel_y = 18 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"ohS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"oic" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west) +"oij" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"oiP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/caperiver/indoors/miningbase/engi) +"oiQ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = -9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"oiR" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"oiY" = ( +/obj/structure/fence/slim/dark, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"oju" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"ojI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"okr" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = 7; + pixel_y = 24 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/north_west) +"oku" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"okA" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south) +"olb" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"oll" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"olu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 1; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"olw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"olF" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"olI" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"olL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"olM" = ( +/obj/structure/flora/grass/desert/heavygrass_4{ + pixel_x = -5; + pixel_y = -12 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"omf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/south) +"omt" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = 19 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"omF" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"omU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"omW" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"ool" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"oou" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"ooz" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"ooQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"opO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/plate, +/area/caperiver/indoors/miningbase/dorm) +"oqa" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"oqt" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"oqz" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/south) +"oqI" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"oqK" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"oqO" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"oqP" = ( +/obj/structure/platform_decoration/stone/soro/east, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"oqU" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" + }, +/obj/item/organ/brain{ + pixel_x = 7 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"ord" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"orn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/wy_mre, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"orG" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"orP" = ( +/obj/item/explosive/mine/active/no_iff{ + dir = 1 + }, +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"osb" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"osn" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"oss" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"osB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 7; + pixel_y = 7; + buckling_x = 7; + buckling_y = 7 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"otA" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"otF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/landing_zone_1) +"otQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north) +"otV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"ouh" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -12; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"ouq" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/security) +"ouw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south_east) +"ouS" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/caperiver/indoors/miningbase/rec) +"ovc" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12; + layer = 2.52 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"ovh" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"ovw" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"ovA" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ovD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"ovH" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d"; + pixel_y = -1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 2; + pixel_y = 24 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ovL" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"owd" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"owg" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/accessory/patch/clf_patch, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"oww" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"oxq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"oxA" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"oyf" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/landing_zone_2) +"ozc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"ozt" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"ozy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/northwest, +/area/caperiver/indoors/miningbase/medical) +"oAj" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"oBu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"oBJ" = ( +/obj/structure/flora/bush/canyon/bush/alt1{ + pixel_x = -9 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"oDs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"oDA" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/ice, +/area/caperiver/indoors/conambase/medical) +"oDS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"oEr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"oEM" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -5; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"oFk" = ( +/obj/structure/sign/safety/maint{ + pixel_y = -32; + pixel_x = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/light/blue, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"oFr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"oFz" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"oFP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_y = 18; + pixel_x = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"oGb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = -12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"oGp" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/telecomms/telecomm_4) +"oGt" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"oGB" = ( +/obj/structure/closet/crate, +/obj/structure/sign/conam/variant3{ + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"oGF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"oGX" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"oHr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"oHv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"oHB" = ( +/obj/structure/pipes/vents, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"oHS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"oHU" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"oIb" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 37 + }, +/turf/open/floor/darkgreen2/east, +/area/caperiver/indoors/conambase/recreational) +"oIq" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"oIy" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"oIO" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/tool/wirecutters, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"oIQ" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"oIV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north) +"oJb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"oJd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/outdoors/landing_zone_1/interior) +"oJe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"oJh" = ( +/obj/item/tool/scythe, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"oJH" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"oJL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + autoname = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"oKc" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"oKj" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"oKu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"oKI" = ( +/obj/structure/flora/bush/canyon/bush{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = 13; + pixel_y = 2 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"oKV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"oLj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"oMe" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"oMU" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/caperiver/outdoors/landing_zone_2/river) +"oNM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/unknown) +"oOd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/engi) +"oOe" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"oOp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/wy_mre, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"oOq" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1) +"oOA" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/red{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"oOD" = ( +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 7; + pixel_y = 9; + desc = "Sign denoting the location of a mine site."; + name = "Mining Site" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 15; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"oPd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"oPv" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"oPT" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/obj/structure/sign/poster/music{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"oQo" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/mining_base_exterior/south) +"oQt" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/road/west/antiweed) +"oQV" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/south) +"oRc" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"oRP" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/outdoors/landing_zone_2/cave) +"oSY" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -6; + pixel_y = 26 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"oTe" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/four{ + layer = 2.9; + pixel_x = 7; + color = "#718184"; + pixel_y = -32 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"oTr" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -10; + pixel_y = -1 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"oTw" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/outdoors/landing_zone_1/interior) +"oTV" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"oUd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"oUr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west) +"oUz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"oUE" = ( +/obj/structure/flora/grass/desert/heavygrass_4{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"oVe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/west) +"oVB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"oVH" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"oVS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"oWd" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_4) +"oWl" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"oWn" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"oWY" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"oXa" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north_east) +"oXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/checkpoint) +"oXo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"oXT" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"oXV" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"oXZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"oYp" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"oYQ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"oYU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"oZg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"oZy" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 10 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + layer = 2.5; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"oZB" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"pat" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_e) +"paJ" = ( +/obj/item/stack/sheet/metal, +/obj/structure/girder/displaced, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"paQ" = ( +/obj/structure/machinery/shower{ + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"paZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"pba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"pbf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 6; + pixel_y = -13 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"pbj" = ( +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"pbu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"pbH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/outdoors/con_am_exterior/south) +"pbO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -4; + pixel_y = -3 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"pbW" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"pcW" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_11{ + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south_east) +"pdc" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"pdG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"pdP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = 4 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"pdU" = ( +/obj/effect/decal/large_stain, +/obj/effect/decal/conam/big_logo/damage_1{ + pixel_y = -15 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"pel" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"pet" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"peG" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"pfq" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/unknown) +"pft" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/central) +"pfy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/disposal, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"pfE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"pfR" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/unknown) +"pfV" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"pgc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"pgk" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"pgx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/light/small/blue, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"pgB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"pgC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors, +/area/caperiver/indoors/miningbase/dorm) +"pgG" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"phd" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"phC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/checkpoint) +"phQ" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"pin" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/caperiver/outdoors/scrublands/south_east) +"piP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/radio/intercom{ + pixel_y = 30; + freerange = 1 + }, +/obj/item/frame/table/almayer, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"piS" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"piW" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"pje" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/caperiver/outdoors/road/north) +"pjf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/big_computers/computerbrown/computer3, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 36 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"pjg" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/north_west) +"pjq" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/caperiver/telecomms/telecomm_4) +"pjD" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north) +"pjR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"pjV" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"pkg" = ( +/turf/open/shuttle/escapepod/floor2, +/area/caperiver/indoors/miningbase/engi) +"pkn" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"pkJ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"pkN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/hybrisa/personal{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"pld" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/north) +"plA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"plP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"pmv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"pmw" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"pna" = ( +/obj/effect/decal/hybrisa/grate, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/w) +"pnj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"pnv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"pnH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/admin) +"pnW" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"pox" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"poR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"poW" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"ppk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"ppt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -8 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/con_am_exterior/north) +"ppu" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"ppT" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"pqe" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/organ/kidneys, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"pqp" = ( +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/head/hardhat, +/obj/item/device/lightreplacer, +/obj/structure/closet/secure_closet/engineering_personal{ + req_one_access = null + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/caperiver/indoors/conambase/engi) +"pqx" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = -17 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"pqy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"pqJ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#7f6357"; + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"pqS" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"pqY" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"prq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 17; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"prs" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/con_am_exterior/north) +"prG" = ( +/obj/item/trash/cigbutt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"prL" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"psi" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/bushlands) +"psq" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/medical) +"psz" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"psD" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/colonist/workwear, +/obj/item/roller/bedroll, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"pta" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"pte" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"ptj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"ptp" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/west) +"pts" = ( +/obj/structure/bed/roller, +/obj/item/trash/used_stasis_bag, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"pul" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"puG" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"puQ" = ( +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"pvj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"pvk" = ( +/obj/structure/flora/grass/desert/lightgrass_8{ + pixel_x = -2; + pixel_y = -34 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"pvm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/telecomms/telecomm_1) +"pvW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"pwb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 3; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"pwo" = ( +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"pwR" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"pwU" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"pxn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"pyN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"pyY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"pAF" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"pAO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"pAT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"pAW" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"pBy" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"pBM" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"pBV" = ( +/turf/open/floor/darkblue2/northwest, +/area/caperiver/indoors/conambase/unknown) +"pCd" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"pCx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"pDk" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"pDn" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"pDo" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"pDs" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south_east) +"pDB" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"pDI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/con_am_exterior/south) +"pDS" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/effect/spawner/random/mats/lowchance, +/obj/item/stack/sheet/plasteel/med_small_stack, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/caperiver/indoors/conambase/engi) +"pDW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/support) +"pEh" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"pEo" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -1; + pixel_y = -15 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"pEy" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -1; + pixel_y = -10 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"pEZ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"pFc" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/obj/structure/sign/conam/variant1{ + pixel_x = -32 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"pFl" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"pFD" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = -9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"pFP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -4; + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"pGd" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"pGp" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"pGz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"pGO" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/dorm) +"pGV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"pHh" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"pHn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -14; + pixel_y = -15 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"pHr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"pHy" = ( +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/north) +"pHF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"pHG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"pIa" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/caperiver/outdoors/landing_zone_2/interior) +"pJb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/north) +"pJq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = -5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"pJB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west/antiweed) +"pJL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 1; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"pJS" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/caperiver/outdoors/landing_zone_2/river) +"pJU" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2) +"pKw" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"pKA" = ( +/obj/structure/reagent_dispensers/tank/fuel, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"pKE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"pKL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"pKP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"pLd" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_y = 4 + }, +/obj/item/storage/belt/utility/full, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"pLf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/west) +"pLo" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/landing_zone_2) +"pLp" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"pLt" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -17; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"pLu" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/bushlands) +"pLz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"pMb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"pMd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/unknown) +"pMK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"pMV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"pNa" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/scrublands/central) +"pNd" = ( +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/recreational) +"pNh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"pNB" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"pNE" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/organ/heart, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"pNK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"pNU" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"pOc" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"pOu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/south) +"pPl" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/spawner/random/pills/highchance, +/obj/structure/machinery/light/small/blue{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"pPN" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/north) +"pPQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -5; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"pQe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/caperiver/indoors/miningbase/medical) +"pRb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"pRr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"pRB" = ( +/obj/item/shard, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/north) +"pRD" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"pRW" = ( +/mob/living/simple_animal/bat, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"pSb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"pSh" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"pSj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"pTn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"pTs" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/rock, +/area/caperiver/oob) +"pTw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/west) +"pTF" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"pTQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/closet/firecloset, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"pUe" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"pUi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"pUB" = ( +/obj/structure/prop/hybrisa/misc/detonator{ + pixel_y = -5 + }, +/obj/structure/cable/white{ + icon_state = "1-2"; + level = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"pUT" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"pVB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"pVP" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"pVZ" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"pWi" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -25; + pixel_y = 4 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"pWS" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north) +"pWT" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"pXd" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_west) +"pXY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"pYx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"pYK" = ( +/obj/structure/flora/grass/desert/lightgrass_2{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"pYY" = ( +/obj/effect/decal/conam/half_logo/damage_1{ + pixel_y = 17 + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"pZN" = ( +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/command) +"qam" = ( +/obj/structure/machinery/light, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"qaq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"qaZ" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/road/west) +"qbr" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/con_am_exterior/north) +"qbu" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"qbw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"qbK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qbS" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/caperiver/outdoors/landing_zone_2/interior) +"qcf" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"qcT" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + layer = 2.52; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"qdX" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qea" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/effect/hybrisa/misc/fake/pipes, +/obj/effect/decal/hybrisa/lattice, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"qeb" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"qec" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"qev" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"qeK" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/landing_zone_1) +"qfj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qfq" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"qfW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/caperiver/outdoors/road/north) +"qgz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"qgJ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"qhd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/outdoors/landing_zone_2/cave) +"qhe" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"qhh" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qhn" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"qhr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"qhE" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -15; + pixel_y = 17 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"qid" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/south_east) +"qij" = ( +/mob/living/simple_animal/lizard, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 13; + pixel_y = 20 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qiJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"qiZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"qje" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"qjf" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/darkblue2, +/area/caperiver/indoors/conambase/unknown) +"qjp" = ( +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/indoors/miningbase/admin) +"qjw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"qjW" = ( +/obj/structure/flora/grass/desert/heavygrass_6{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"qkg" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"qkH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/central/antiweed) +"qkI" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/indoors/miningbase/admin) +"qlt" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"qlu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 24; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"qlE" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"qlS" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/item/stack/rods, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"qlX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/landing_zone_2/interior) +"qme" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -24; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"qmw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkbrown2/southeast, +/area/caperiver/indoors/conambase/delivery) +"qnP" = ( +/obj/structure/platform/stone/soro/north, +/obj/structure/platform/stone/soro/west, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 5; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"qnS" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/indoors/miningbase/hydro) +"qnV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/landing_zone_1) +"qos" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -2; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"qov" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"qoB" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"qoY" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"qpm" = ( +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/platform_decoration/stone/mineral/east{ + color = "#716959" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"qpr" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"qpC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"qpJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"qqb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"qqk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/storage/box/mre/wy{ + pixel_x = 3; + pixel_y = 5; + name = "\improper emergency ration pack" + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"qqm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/dorm) +"qqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -22 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"qqN" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = 22; + pixel_y = 12 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -5; + pixel_y = 28 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"qqV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/computer3{ + pixel_y = 11; + density = 0; + unacidable = 1; + explo_proof = 1; + layer = 2.99 + }, +/obj/item/prop{ + icon = 'icons/obj/structures/machinery/computer3.dmi'; + icon_state = "rdcomp-inuse"; + name = "Console Screen"; + pixel_y = 10; + explo_proof = 1; + unacidable = 1; + light_range = 2; + light_color = "#BF40BF"; + light_on = 1; + anchored = 1 + }, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_e) +"qrb" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 1; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"qrx" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"qrC" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west) +"qrF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"qrJ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"qsc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 14; + pixel_y = 5 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"qsp" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"qss" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"qsv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/scrublands/west) +"qsU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south) +"qtj" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qtl" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"qtm" = ( +/obj/structure/closet/crate, +/obj/item/roller/bedroll, +/turf/open/floor/darkbluecorners2/north, +/area/caperiver/indoors/conambase/recreational) +"qtn" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/dorm) +"qtq" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"qtG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"qtZ" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"quc" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"qum" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 16 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"qvm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"qvs" = ( +/obj/structure/flora/bush/desert/cactus, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = 15; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"qvy" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -1; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"qvI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = -12 + }, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/con_am_exterior/south) +"qvJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/west) +"qvP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/obj/item/shard, +/turf/open/floor/darkpurplecorners2, +/area/caperiver/indoors/conambase/research_w) +"qww" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"qwy" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"qwL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"qwP" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 + }, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"qwR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/caperiver/indoors/conambase/recreational) +"qxj" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/medical) +"qxn" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/remains/robot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"qxB" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north_west) +"qxF" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/desert/shallow_edge/north, +/area/caperiver/outdoors/chasm) +"qyi" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/north) +"qyq" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"qyr" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/lz_cave) +"qyG" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/south) +"qyP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"qyR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/wy_mre, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"qzn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/indoors/miningbase/engi) +"qzt" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"qzx" = ( +/obj/structure/flora/grass/desert/lightgrass_12{ + pixel_x = -3; + pixel_y = -9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"qzJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"qzQ" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = 17 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"qzV" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"qAk" = ( +/obj/structure/platform/metal/strata, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_plate, +/area/caperiver/outdoors/bushlands) +"qAr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/con_am_exterior/south) +"qAt" = ( +/obj/effect/landmark/yautja_teleport, +/obj/effect/landmark/yautja_young_teleport, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"qAD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"qAE" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"qAZ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south_east) +"qBd" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"qBl" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/dorm) +"qCl" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south_east) +"qCw" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"qCG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/large_stain, +/obj/structure/bed/bedroll{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"qDi" = ( +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"qDo" = ( +/obj/structure/fence/slim/door{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"qDE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"qDH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"qDY" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/south_east) +"qEd" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"qEv" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"qEW" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"qFe" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2"; + layer = 2.52 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/unknown) +"qFB" = ( +/obj/effect/decal/conam/big_logo/damage_1, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"qGd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -10 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"qGA" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"qGH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/bedroll, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"qHa" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/item/stack/rods, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"qHb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"qHw" = ( +/obj/structure/sign/conam/variant1{ + pixel_y = 32 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"qHK" = ( +/obj/item/stool{ + pixel_x = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"qHS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"qIq" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"qIw" = ( +/obj/item/circuitboard/computer/generic, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"qIA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"qIO" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"qJa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"qJE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"qKa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 9; + pixel_y = -4; + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"qKz" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"qKJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"qKM" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"qKO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/bushlands) +"qKT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken3, +/area/caperiver/outdoors/landing_zone_2/interior) +"qKZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#7f6357"; + layer = 2.9; + pixel_x = -19; + pixel_y = -23 + }, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#7f6357"; + pixel_x = -3; + pixel_y = 22; + layer = 2.9 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"qLS" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3{ + pixel_y = 18; + density = 0 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"qLT" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/west) +"qMh" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/north) +"qMn" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"qMw" = ( +/obj/structure/platform/stone/soro/north, +/obj/structure/platform/stone/soro/east, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"qMR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west) +"qNx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"qNR" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/caperiver/outdoors/scrublands/west) +"qOg" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1) +"qOk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"qOS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"qOZ" = ( +/obj/structure/platform/stone/soro, +/obj/structure/platform/stone/soro/east, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 17; + pixel_y = 27 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"qPo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -5; + pixel_y = 12 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/south) +"qPu" = ( +/obj/structure/cable/white{ + icon_state = "2-6"; + level = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"qPE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"qPP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/advanced/bruise_pack/upgraded, +/obj/item/stack/medical/advanced/bruise_pack/upgraded, +/obj/item/stack/medical/advanced/ointment/upgraded{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/medical/advanced/ointment/upgraded{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"qQa" = ( +/obj/structure/largecrate/random, +/obj/structure/sign/conam/variant3{ + pixel_x = 16; + pixel_y = 31 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"qQc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"qQd" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"qQh" = ( +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/obj/item/stack/rods, +/obj/item/tool/warning_cone{ + layer = 5; + pixel_y = 12; + pixel_x = 2 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/recreational) +"qQi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"qQo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/delivery) +"qQH" = ( +/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/alt_dirt/stain{ + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_y = -19 + }, +/obj/effect/decal/remains/robot{ + pixel_x = -14; + pixel_y = -10 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/landing_zone_1) +"qQI" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/south) +"qQY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_y = 32; + pixel_x = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"qSh" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"qSm" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1) +"qSn" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"qSC" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/caperiver/outdoors/chasm) +"qTi" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 7; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"qTu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/recreational) +"qTw" = ( +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"qTF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/w) +"qTH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/light/small{ + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"qTZ" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"qUe" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south_east) +"qUk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"qUo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"qUs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"qUz" = ( +/obj/structure/cable/white{ + icon_state = "1-5"; + level = 2 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"qUF" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"qUL" = ( +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"qUN" = ( +/obj/structure/fence/slim/dark/door, +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"qUY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = 26 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"qVi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/recreational) +"qVO" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/binoculars/range/designator{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"qVQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"qVY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/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 = 1; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"qWb" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Cargo Landing Zone" + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"qWq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"qWR" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"qWS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"qWY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"qXh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"qXj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/computer/communications/simple{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/caperiver/telecomms/telecomm_3) +"qXr" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -21; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -13; + pixel_y = -12 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"qXs" = ( +/obj/effect/decal/strata_decals/mud_corner, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"qXt" = ( +/turf/open/floor/darkblue2/southwest, +/area/caperiver/indoors/conambase/command) +"qYc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"qYq" = ( +/obj/structure/window/framed/abyssal/blue, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/command) +"qYv" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"qYw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"qYN" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"qYX" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/n) +"qZw" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -7; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"qZC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"qZU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"qZZ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"rag" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/caperiver/outdoors/road/south) +"rao" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"raz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/wirecutters, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"raF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_w) +"rbs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"rct" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/turf/open/floor/kutjevo/colors/purple, +/area/caperiver/indoors/miningbase/dorm) +"rcu" = ( +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"rcy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"rcC" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"rcM" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"rdV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"rei" = ( +/obj/item/stack/rods, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/nw_cave) +"rem" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"reo" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/indoors/miningbase/admin) +"reN" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"reO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"rfg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"rfk" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/central) +"rfK" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"rfP" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rfT" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"rgo" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"rgH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"rhb" = ( +/obj/structure/sign/conam/variant1{ + pixel_y = 32; + pixel_x = 16 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/north) +"rhc" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south_east) +"rhn" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"rhp" = ( +/obj/structure/fence/slim/dark, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"rhv" = ( +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"rhB" = ( +/obj/structure/bed/chair/office/light{ + layer = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"rhC" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/landing_zone_2) +"riE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/reagent_dispensers/tank/water, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"riH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"riL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/sheet/metal, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"riM" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"riO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/caperiver/indoors/miningbase/engi) +"rjj" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"rjN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"rjT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"rjW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"rkr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"rkF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/structure/machinery/light/small{ + dir = 8; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"rkH" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand1_c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"rkJ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"rlF" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -29; + pixel_y = 9 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"rmg" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"rml" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"rnk" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"rnu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -13; + pixel_y = 27 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/lz_cave) +"rnw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"rnz" = ( +/obj/item/tool/wet_sign{ + pixel_x = 4; + pixel_y = -7 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"rnS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"rog" = ( +/obj/item/trash/burger, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"roH" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"rpq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/barrel/brown, +/obj/structure/sign/banners/clf_worn{ + pixel_x = 15; + pixel_y = 31 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/caperiver/outdoors/landing_zone_2/interior) +"rpF" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"rpU" = ( +/obj/structure/platform/stone/soro/north, +/obj/structure/platform/stone/soro/east, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/chasm) +"rqc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"rqp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/admin) +"rrz" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 9 + }, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 5 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"rrV" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"rrW" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"rsi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/safety/storage{ + pixel_y = -32; + pixel_x = 2 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"rsk" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/telecomms/telecomm_3) +"rst" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"rsU" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"rtg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"rtO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/indoors/miningbase/admin) +"ruc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/north) +"ruh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/largecrate/empty/case/double{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"run" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = 15 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/bushlands) +"ruV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"rvh" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/caperiver/outdoors/landing_zone_2/river) +"rwg" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"rws" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/bloodsplatter/human, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/unknown) +"rwv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/central) +"rwI" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/landing_zone_1) +"rwQ" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/mining_base_exterior/south) +"rxi" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"rxl" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/delivery) +"rxo" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rxy" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/south) +"rxz" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"rxT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/north) +"ryF" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"ryQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rze" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"rzj" = ( +/obj/effect/decal/cleanable/blood/writing, +/obj/item/shard/shrapnel/bone_chips, +/obj/structure/machinery/light/red{ + dir = 4; + alpha = 0; + needs_power = 0; + light_color = "#880808" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"rzm" = ( +/obj/structure/prop/hybrisa/misc/graffiti/graffiti3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/landing_zone_2) +"rzp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north) +"rzG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"rzH" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"rzT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"rAe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/indoors/miningbase/hydro) +"rAq" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/wood/wood_broken4, +/area/caperiver/outdoors/landing_zone_2/interior) +"rAP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"rAT" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"rAU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreencorners2/north, +/area/caperiver/indoors/conambase/recreational) +"rBq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"rCc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = -9 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"rCs" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -11; + pixel_y = 9 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"rCG" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_y = 21; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"rCQ" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/item/stack/rods, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_e) +"rCU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"rDf" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"rDm" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"rDo" = ( +/obj/structure/girder/displaced, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/telecomms/telecomm_2) +"rDv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + pixel_x = -16 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/west, +/area/caperiver/indoors/conambase/support) +"rDG" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"rEc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"rEi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central) +"rEo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/closed/wall/kutjevo/colony/reinforced/hull, +/area/caperiver/oob) +"rEp" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"rEs" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"rEu" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south) +"rEN" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"rER" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/nw) +"rEW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 5; + pixel_y = 9; + dir = 8 + }, +/obj/structure/sign/poster{ + icon_state = "poster67"; + pixel_y = 33 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"rFD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"rFF" = ( +/obj/structure/flora/grass/desert/lightgrass_12{ + pixel_x = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"rFZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/almayer/comp_open{ + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"rGb" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"rGl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/con_am_exterior/south) +"rGo" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"rGs" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/bushlands) +"rGD" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"rGG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"rGY" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"rHI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"rId" = ( +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/medical) +"rIw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/effect/hybrisa/misc/fake/pipes, +/obj/effect/decal/hybrisa/lattice, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"rIZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 15; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"rJb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/obj/item/tool/warning_cone{ + pixel_y = 20; + pixel_x = -25 + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"rJj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/case, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/outdoors/landing_zone_2/cave) +"rJU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"rKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/appletart, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/indoors/miningbase/rec) +"rKk" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rLB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"rLI" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/indoors/conambase/unknown) +"rLJ" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"rLS" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/caperiver/indoors/caves/se) +"rLT" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"rLZ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"rMe" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south) +"rMi" = ( +/turf/closed/wall/wood, +/area/caperiver/outdoors/bushlands) +"rMl" = ( +/turf/open/floor/darkred2/northwest, +/area/caperiver/indoors/conambase/support) +"rMA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"rMJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"rML" = ( +/obj/item/paper/crumpled{ + pixel_x = 9 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"rMU" = ( +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/con_am_exterior/north) +"rMW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/caperiver/indoors/miningbase/medical) +"rMX" = ( +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/mining_base_exterior/south) +"rNu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"rNy" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -9; + pixel_y = -14 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"rNA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"rND" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/hybrisa/misc/blood/blood2, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"rOg" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"rOt" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"rOJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/caperiver/outdoors/landing_zone_1) +"rOL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"rPw" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south) +"rPB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"rPN" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"rPU" = ( +/obj/item/stack/medical/splint, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -16 + }, +/turf/open/floor/darkbluecorners2/south, +/area/caperiver/indoors/conambase/recreational) +"rRM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"rSt" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central/antiweed) +"rSE" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"rSI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/command) +"rSM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_e) +"rSR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/con_am_exterior/north) +"rSW" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/item/stack/rods, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"rTv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/unknown) +"rUh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 2 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"rUl" = ( +/obj/structure/prop/brazier/frame/full/campfire/smolder, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -10; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"rUx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"rUO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"rUW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"rVr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/large_stain{ + pixel_x = 6; + layer = 2.1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"rVz" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rWz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_y = -2 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rWB" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/west) +"rWI" = ( +/obj/structure/platform/metal/strata, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"rWN" = ( +/obj/structure/platform/stone/sandstone, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/desert/shallow_edge/west, +/area/caperiver/outdoors/landing_zone_2/river) +"rWQ" = ( +/obj/effect/decal/large_stain{ + layer = 2.52; + pixel_y = 2; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/lz_cave) +"rWS" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/rec) +"rXc" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"rXk" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"rXq" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"rXN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -2; + pixel_y = 20 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"rYa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 21; + pixel_y = 15 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"rYb" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"rYe" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/south) +"rYm" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"rYs" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/west) +"rYU" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/darkred2/northeast, +/area/caperiver/indoors/conambase/support) +"rZf" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north) +"rZw" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"sar" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north) +"saz" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/caperiver/outdoors/landing_zone_1/cave) +"saN" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"saR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"saX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"sbs" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"sbH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/telecomms/telecomm_4) +"sbS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -6; + pixel_x = -3 + }, +/obj/item/tool/warning_cone{ + pixel_y = 18 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/recreational) +"sch" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1) +"scm" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"scC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/kutjevo/colors/red/edge/west, +/area/caperiver/indoors/miningbase/checkpoint) +"scH" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"scM" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"sdh" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"sdm" = ( +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -14 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"sdH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 7; + pixel_y = 7; + buckling_x = 7; + buckling_y = 7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"sdV" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"sdZ" = ( +/obj/structure/reagent_dispensers/tank/fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"seu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"sew" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/ne) +"seA" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"seM" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"seR" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"seS" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"seY" = ( +/obj/structure/flora/grass/desert/lightgrass_2{ + pixel_x = 3; + pixel_y = -34 + }, +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d"; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"sfJ" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/telecomms/telecomm_3) +"sfN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"sgC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"shj" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"shw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"shy" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"shC" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 38 + }, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"shN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"shV" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 13; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"sis" = ( +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/indoors/conambase/recreational) +"siz" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"siF" = ( +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_e) +"sjD" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"sjH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"sjS" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"sjX" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"skk" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"skz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"slv" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"slG" = ( +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/unknown) +"slM" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"slT" = ( +/obj/structure/platform/stone/soro/west, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/west) +"slU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/decal/large_stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"smj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/kutjevo/colors/red, +/area/caperiver/indoors/miningbase/security) +"smn" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_4) +"snf" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"snP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 11; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"snR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"snT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"soe" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder2{ + color = "#88715d"; + pixel_x = 1; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"soq" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/gm/dirt/brown/variant_2, +/area/caperiver/indoors/caves/w) +"soX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"spe" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"spr" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/telecomms/telecomm_3) +"spU" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/south) +"sqa" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"sqc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"sqw" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_west) +"srj" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"srH" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -17; + pixel_y = 6 + }, +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"srN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"srT" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"ssh" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"ssr" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south) +"ssC" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"ssP" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"ssV" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 32 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/indoors/conambase/recreational) +"std" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" + }, +/turf/open/mars_cave/mars_dirt_6, +/area/caperiver/outdoors/scrublands/north_west) +"stm" = ( +/mob/living/simple_animal/bat, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"stV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"sug" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"suy" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Mining colony"; + desc = "Sign denoting the direction of a mining colony" + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 23 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/west/antiweed) +"suK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"suV" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform/stone/soro/west, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"svm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/landing_zone_2) +"svx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"svP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"svZ" = ( +/obj/structure/largecrate/supply, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"swW" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9; + layer = 2; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"sxm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"sxJ" = ( +/obj/structure/platform_decoration/stone/soro/east, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"sxO" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 38 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"syb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 9; + pixel_y = -11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"syM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/west/antiweed) +"syN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = -6 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"sze" = ( +/mob/living/simple_animal/bat, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"szh" = ( +/obj/structure/bed/roller, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"szo" = ( +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"szq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"szu" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4; + pixel_x = -1; + pixel_y = -21 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"szE" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/frame/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan/edge, +/area/caperiver/indoors/miningbase/medical) +"szH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"szW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"szX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/closet/firecloset, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"sAf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"sAv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/item/stack/sheet/plasteel/med_small_stack, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"sBg" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/bushlands) +"sBG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"sCj" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"sCk" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"sCo" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"sCp" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"sCw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/north) +"sCI" = ( +/obj/structure/machinery/light{ + dir = 4; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"sCP" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south_east) +"sCV" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/closed/wall/wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"sDy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/engi) +"sDI" = ( +/turf/closed/wall/abyssal/standard, +/area/caperiver/telecomms/telecomm_4) +"sDM" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/indoors/miningbase/admin) +"sDN" = ( +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/obj/structure/platform_decoration/stone/mineral/west{ + color = "#716959" + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"sDQ" = ( +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"sEB" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"sEF" = ( +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"sFm" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"sFu" = ( +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"sFy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/random/mini/chest/c, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"sGc" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/item/stack/rods, +/obj/structure/prop/hybrisa/misc/graffiti{ + layer = 3.1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"sGs" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/poster/pinup{ + pixel_x = 4; + pixel_y = 35 + }, +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"sGD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"sGM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + icon_state = "ground_colorable_alt"; + pixel_y = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = 5; + pixel_y = -18 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"sHG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -18; + pixel_y = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/north) +"sHZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/hybrisa/misc/blood/blood1, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"sII" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"sIK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"sIN" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/mining_base_exterior/south) +"sIT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"sJc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/sheet/animalhide/human, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/unknown) +"sJK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/north) +"sKI" = ( +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -14 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"sLg" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/dorm) +"sLC" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"sMj" = ( +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/prison/darkbrowncorners2, +/area/caperiver/indoors/conambase/recreational) +"sMy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"sMN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/checkpoint) +"sMV" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"sNd" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"sNe" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/unknown) +"sNl" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"sNs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"sND" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"sNE" = ( +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"sNG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/con_am_exterior/north) +"sNT" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"sNY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"sOk" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"sOG" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/obj/structure/fence/slim/dark, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"sPj" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = 17; + pixel_y = -4 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"sPG" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"sPS" = ( +/obj/effect/decal/remains/robot{ + pixel_x = -21; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"sPU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/central) +"sPW" = ( +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/scrublands/north_west) +"sQc" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"sQu" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"sQw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"sQT" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"sRv" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"sRx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/landing_zone_2) +"sSh" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/mining_base_exterior/north) +"sSi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"sSk" = ( +/obj/item/shard, +/obj/structure/sign/poster/conam{ + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"sUb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"sUq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"sUH" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/bushlands) +"sUJ" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/landing_zone_1) +"sVu" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"sVP" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"sWI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"sWT" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/tool/kitchen/pizzacutter/holyrelic{ + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"sXs" = ( +/turf/open/asphalt/cement/cement1, +/area/caperiver/outdoors/con_am_exterior/south) +"sXM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/north_west) +"sXX" = ( +/turf/open/asphalt/cement, +/area/caperiver/outdoors/con_am_exterior/south) +"sYA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"sZb" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"sZq" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"sZr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"sZz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"sZH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"tac" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"tar" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"taC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain, +/obj/item/shard/shrapnel/bone_chips, +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"taQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"tbz" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"tbA" = ( +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"tbN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"tbO" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/station/metal/floor/northeast, +/area/caperiver/telecomms/telecomm_3) +"tbT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = -2 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"tcl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"tco" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/landing_zone_1) +"tcu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"tcv" = ( +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/desert/dirt, +/area/caperiver/outdoors/bushlands) +"tcC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"tcH" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south_east) +"tcP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_x = -2; + pixel_y = 14; + layer = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/structure/sign/poster/conam{ + pixel_y = 32; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/colors/red/inner_corner, +/area/caperiver/indoors/miningbase/checkpoint) +"tdA" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/bushlands) +"tdQ" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -18; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"tdX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement/cement14, +/area/caperiver/outdoors/con_am_exterior/north) +"tei" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"tej" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"tel" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"tex" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_y = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"teB" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/oob) +"teK" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/con_am_exterior/north) +"teX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"tfE" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/landmark/objective_landmark/science, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"tgh" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 4; + icon_state = "bigrollerempty_down"; + layer = 4 + }, +/turf/open/floor/green/east, +/area/caperiver/indoors/conambase/medical) +"tgC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 27; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"tgO" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"tgP" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"tgX" = ( +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"thd" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"thi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/caperiver/outdoors/mining_base_exterior/south) +"thx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/indoors/miningbase/admin) +"thG" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/west/antiweed) +"thR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"tij" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + dir = 4; + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"tix" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"tiC" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 16; + pixel_y = 19; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = -1; + pixel_y = -4 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"tiL" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"tiO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -21; + pixel_y = 21 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"tiZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/seed_extractor{ + pixel_y = 24; + density = 0 + }, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"tjc" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"tjj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"tkc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"tkh" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"tkp" = ( +/obj/structure/platform/stone/soro, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"tkw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/spawner/random/mats/lowchance, +/obj/structure/machinery/light/blue, +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"tkx" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/research_e) +"tkM" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/bushlands) +"tkZ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"tlk" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#7f6357"; + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"tlq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"tly" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = 1; + pixel_y = 18 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"tlF" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/north_east) +"tlZ" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"tmd" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 16; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"tmS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"tnb" = ( +/obj/structure/window/framed/abyssal/standard, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"tnp" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"tnu" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/bushlands) +"tnv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"tnA" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"tob" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"too" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"toU" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"toW" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = -18 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"tpd" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"tpE" = ( +/obj/structure/flora/grass/desert/heavygrass_3{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"tpY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/space_heater, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"tqh" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 16; + pixel_y = -10 + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_w) +"tqn" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/unknown) +"tqK" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 25 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 14; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"tqL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_1) +"tqY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"tra" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -2 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"trn" = ( +/obj/structure/window/framed/kutjevo, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1_alt"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"trY" = ( +/obj/structure/cable/white{ + icon_state = "2-10"; + level = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"trZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"tsc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"tse" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/caperiver/outdoors/landing_zone_2/river) +"tso" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/remains/robot{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"tst" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"tsH" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"tsM" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155; + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"tsN" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"ttf" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1) +"tto" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"ttQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/telecomms/telecomm_1) +"ttR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/effect/decal/cleanable/dirt/alt_dirt/goo{ + pixel_y = -2; + color = "#6E260E"; + pixel_x = 9; + name = "???"; + desc = "You don't want to think about it..." + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/goo{ + pixel_y = -2; + color = "#6E260E"; + pixel_x = 9; + name = "???"; + desc = "You don't want to think about it..." + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"tuq" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"tuv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"tuy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/shard, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_e) +"tuM" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"tuS" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"tva" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/mining_base_exterior/south) +"tvr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"tvy" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/snack_bowl, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"twH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"twM" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"twN" = ( +/obj/item/shard, +/turf/open/floor/prison/blue, +/area/caperiver/indoors/processing) +"txk" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/large_stain, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"txF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"txR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/unknown) +"txW" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"txX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/darkgreen2/west, +/area/caperiver/indoors/conambase/recreational) +"tyK" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"tyL" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"tyT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"tzc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"tzh" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"tzo" = ( +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"tzp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/mining_base_exterior/south) +"tzw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"tzA" = ( +/turf/open/floor/prison/darkyellow2, +/area/caperiver/telecomms/telecomm_3) +"tzE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"tzT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/north_east) +"tAK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/indoors/miningbase/engi) +"tBF" = ( +/obj/structure/largecrate/supply, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/south) +"tBT" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/road/south) +"tBX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"tCa" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"tCw" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"tCH" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/caperiver/telecomms/telecomm_4) +"tCR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"tCX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"tDh" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"tDr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"tDt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"tDz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/s) +"tEl" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/caperiver/outdoors/landing_zone_2/river) +"tEY" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"tFJ" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"tFR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"tFS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"tGe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"tGg" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/White{ + dir = 1; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"tGp" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/con_am_exterior/south) +"tGB" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 6 + }, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"tHh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south) +"tHK" = ( +/obj/effect/decal/large_stain, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/outdoors/landing_zone_1/interior) +"tIj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/s) +"tIS" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"tJa" = ( +/obj/structure/machinery/big_computers/messaging_server/brown, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/telecomms/telecomm_1) +"tJi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"tJk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = -12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/outdoors/landing_zone_1/cave) +"tJp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"tJq" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"tJt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/south) +"tJD" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"tJO" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/bushlands) +"tKg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"tKn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"tKQ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/telecomms/telecomm_3) +"tKS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"tKV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"tKW" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"tLf" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/nw) +"tLr" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"tMc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/indoors/miningbase/rec) +"tNd" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/item/stack/rods, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north) +"tNj" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"tNl" = ( +/obj/structure/cable/white{ + icon_state = "4-9" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"tNQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 13; + pixel_y = 10 + }, +/obj/item/storage/box/disks{ + pixel_x = 10 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + health = null; + id = "landingzone1"; + idle_power_usage = 0; + name = "Lockdown Override"; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/interior) +"tNS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"tOq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"tOD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/north_east) +"tOX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/girder/displaced, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"tPs" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_west) +"tPt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement9, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"tPu" = ( +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_2/cave) +"tPz" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"tPB" = ( +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"tPO" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"tPV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"tQj" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"tQp" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"tQq" = ( +/turf/open/floor/darkblue2/east, +/area/caperiver/indoors/conambase/unknown) +"tQt" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/indoors/miningbase/dorm) +"tQv" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"tQB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/road/south) +"tQD" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"tQP" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"tQV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/empty/case{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"tRi" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"tRv" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"tRE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_east) +"tRU" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/floodlight, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"tSg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/scrublands/west) +"tSU" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"tTc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"tTi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/southeast, +/area/caperiver/indoors/conambase/recreational) +"tTs" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"tTE" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"tTT" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/north_west) +"tUm" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"tUH" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/caperiver/indoors/miningbase/admin) +"tUU" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/landing_zone_2) +"tUV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"tVf" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -17; + pixel_y = -15 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"tVy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"tVA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"tVS" = ( +/obj/structure/platform/stone/soro/west, +/mob/living/simple_animal/bat, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"tWb" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"tWf" = ( +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"tWI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"tWK" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/south/antiweed) +"tWP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"tXt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"tXF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"tXS" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/beret/jan{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"tXU" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/north_west) +"tZl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/caperiver/outdoors/road/central/antiweed) +"tZo" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"tZF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/platform_decoration/stone/soro/north, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"tZJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"tZY" = ( +/obj/structure/platform/stone/soro/east, +/obj/structure/flora/bush/canyon/grass_orange/alt2{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -3; + pixel_y = 12 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -5; + pixel_y = 26 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"uaf" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8; + explo_proof = 0 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"uai" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"uap" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/road/west/antiweed) +"uaE" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/oob) +"ubg" = ( +/obj/structure/flora/bush/canyon/tree/alt1{ + pixel_x = 5; + pixel_y = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ubj" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"ubt" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"uby" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/landing_zone_2) +"ubM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"uch" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 1; + pixel_y = 14 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"uck" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ucs" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"ucG" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_y = -3 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"ucV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 15; + pixel_x = 4 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"udt" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/rock, +/area/caperiver/telecomms/telecomm_2) +"udv" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"udB" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/oob) +"udE" = ( +/obj/structure/flora/grass/desert/lightgrass_1{ + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"udH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/indoors/miningbase/hydro) +"udT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/admin) +"ueh" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ueD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/grey, +/area/caperiver/outdoors/landing_zone_1/cave) +"ufv" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = -27 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"ufR" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"ufT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central/antiweed) +"ugA" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"ugE" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_2/cave) +"ugI" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"uhq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 6; + pixel_y = 22 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"uin" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/west/antiweed) +"uio" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 4; + icon_state = "sandbag_2" + }, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"uit" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"uiD" = ( +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand1_c" + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south_east) +"uiG" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/south) +"uja" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"ujq" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4; + layer = 2 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 6; + pixel_y = 22 + }, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/cyan, +/area/caperiver/indoors/miningbase/medical) +"ujB" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 1; + pixel_y = 18 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"ujO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_e) +"ukH" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"ukS" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -10; + pixel_y = 23 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"ukZ" = ( +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/admin) +"ula" = ( +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"ulc" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"ulw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_w) +"ulQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"uma" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/s) +"ums" = ( +/obj/structure/machinery/door/airlock/prison_hatch/brown/alt/autoname, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"umB" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"umG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -23; + pixel_y = 20 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"umH" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"umZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/lz_cave) +"unA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/ore_box{ + layer = 2 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/caperiver/outdoors/landing_zone_1) +"unT" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = 6; + pixel_y = 20 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"unW" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/telecomms/telecomm_1) +"unY" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/sign/conam/variant3{ + pixel_y = 31 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/north) +"uoa" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"uoe" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"upf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_x = 7 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"upi" = ( +/obj/structure/sign/poster/conam{ + pixel_y = 34; + pixel_x = 3 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"upu" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/admin) +"upw" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"upG" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"upT" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/telecomms/telecomm_1) +"upY" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/con_am_exterior/north) +"uqg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/large_stain, +/obj/structure/machinery/optable{ + name = "Emergency Operating Table"; + desc = "A backup OR table, as a precaution if the crew were cut off from the medbay in an emergency. Unlikely this table has been sterile in years." + }, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"uqA" = ( +/obj/structure/flora/bush/canyon/grass_yellow/alt1{ + dir = 1; + pixel_x = -2; + pixel_y = 14 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"uqE" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"uqJ" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"uqR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 39 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"ure" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"urH" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"urK" = ( +/obj/effect/decal/hybrisa/grate, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north) +"usb" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + pixel_y = 34 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"ush" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_east) +"usj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"usx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 8; + pixel_y = 15 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/w) +"usJ" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"utb" = ( +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"utd" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/nw) +"utt" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"utx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"utY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2, +/area/caperiver/indoors/conambase/delivery) +"uuA" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/scrublands/south_east) +"uuC" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/west) +"uuD" = ( +/obj/structure/platform/stone/mineral/north{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/west{ + color = "#716959" + }, +/obj/effect/decal/hybrisa/lattice, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = 4 + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"uuZ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south/antiweed) +"uwo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/recreational) +"uwy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"uxd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"uxp" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"uyg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"uyn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"uzS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/caperiver/indoors/miningbase/admin) +"uAD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_1) +"uAM" = ( +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"uBm" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"uBK" = ( +/obj/structure/machinery/fuelcell_recycler, +/obj/item/fuel_cell/used, +/obj/item/fuel_cell/used, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"uBR" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/platform/stone/soro/north, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"uCe" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/item/reagent_container/food/drinks/cans/classcola, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"uCw" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/indoors/miningbase/admin) +"uCS" = ( +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; + name = "\improper UA Prepared Meal (cornbread)"; + pixel_y = 9 + }, +/obj/item/tool/kitchen/utensil/pknife, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"uDj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurplecorners2, +/area/caperiver/indoors/conambase/research_e) +"uDq" = ( +/obj/structure/platform/stone/sandstone/north, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/landing_zone_2/river) +"uDy" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"uDL" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/landing_zone_1) +"uEg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west) +"uEs" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1) +"uEw" = ( +/obj/structure/flora/bush/canyon/tree{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"uEA" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/telecomms/telecomm_3) +"uEE" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/hybrisa/tile/tileblue, +/area/caperiver/indoors/conambase/support) +"uEO" = ( +/obj/item/stack/rods, +/obj/structure/fence/slim/dark, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"uEV" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -2; + pixel_y = 24 + }, +/obj/structure/flora/grass/desert/lightgrass_4{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"uFg" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"uFh" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/south) +"uFu" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 2; + pixel_y = 21 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"uFL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"uGn" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/black, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"uGz" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"uGC" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"uGN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/south_east) +"uHi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"uHR" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"uIc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/red/edge/north, +/area/caperiver/indoors/miningbase/checkpoint) +"uIf" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"uIN" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"uIS" = ( +/obj/item/shard, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"uJo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west/antiweed) +"uJr" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/obj/item/device/radio/headset, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"uJs" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"uJT" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"uKe" = ( +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/obj/item/paper{ + layer = 2 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"uKo" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/west) +"uKu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/colors/red/edge/east, +/area/caperiver/indoors/miningbase/checkpoint) +"uKw" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_1) +"uKz" = ( +/obj/structure/machinery/power/power_generator/reactor/colony, +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/miningbase/engi) +"uKP" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/effect/landmark/lizard_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"uLB" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/west/antiweed) +"uMe" = ( +/obj/structure/fence/slim/dark/door, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/s) +"uMq" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/outdoors/landing_zone_1/cave) +"uMz" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"uMV" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"uNd" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"uOL" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg3, +/area/caperiver/indoors/caves/sw) +"uPy" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/security) +"uPF" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/indoors/miningbase/dorm) +"uQf" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -7; + pixel_y = 21 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 25; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"uQB" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"uQF" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"uSo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"uSK" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"uSQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_w) +"uTF" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/north_west) +"uTQ" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"uUm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"uUu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/indoors/miningbase/admin) +"uUW" = ( +/obj/item/device/radio/intercom{ + pixel_y = 30; + freerange = 1 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"uVl" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 4 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/north) +"uVp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"uVF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"uWr" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/landing_zone_1) +"uWu" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"uWv" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/ne) +"uWK" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 1 + }, +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/s) +"uWY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_2/cave) +"uXn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + icon_state = "ground_colorable_alt" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"uYQ" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"uYS" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/south) +"uYT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/darkbrown2/east, +/area/caperiver/indoors/conambase/recreational) +"uZb" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_2/cave) +"uZe" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/recreational) +"uZf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/south) +"uZk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/bushlands) +"uZn" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic/glass/rusted_window{ + dir = 1 + }, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"vab" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/crate/secure/ammo, +/obj/item/weapon/gun/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40/carbine, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40/extended, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/landing_zone_2/interior) +"vak" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/mre_food/clf/bananapie, +/turf/open/floor/wood, +/area/caperiver/outdoors/landing_zone_2/interior) +"vbc" = ( +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/command) +"vbp" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_east) +"vbJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"vcC" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"vcS" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/closet, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"vcY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"vdg" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"vdn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"vdH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_east) +"vdP" = ( +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 10; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"veb" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"vek" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/caperiver/outdoors/con_am_exterior/north) +"veq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"vet" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/scrublands/south) +"veu" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_x = -9; + pixel_y = -13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"veA" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7; + icon_state = "sandbag_2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"veV" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"vfB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"vfP" = ( +/turf/open/floor/kutjevo/tan, +/area/caperiver/outdoors/landing_zone_1/cave) +"vfQ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/north) +"vfX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/west, +/area/caperiver/indoors/conambase/recreational) +"vgh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"vgw" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"vgO" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_y = 21 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/landing_zone_2) +"vhz" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"vhB" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"viw" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"viy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"viH" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"vjy" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 17 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"vjA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"vjF" = ( +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/caperiver/telecomms/telecomm_4) +"vka" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_x = 32 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"vks" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/item/tool/warning_cone{ + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/caperiver/outdoors/mining_base_exterior/south) +"vkD" = ( +/obj/structure/machinery/light/blue, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"vkO" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#9d796a"; + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"vkS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"vla" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"vlT" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/platform/metal/strata/west{ + layer = 4.12 + }, +/obj/structure/flora/bush/canyon/tree/alt2{ + pixel_x = 13; + pixel_y = 7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"vlV" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt/stain{ + pixel_y = -19 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"vlW" = ( +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"vnt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/outdoors/mining_base_exterior/south) +"vnD" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"vnL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"vnM" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"vog" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"voP" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5; + pixel_x = 4; + buckling_x = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"vpf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"vpg" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"vpn" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"vpD" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_e) +"vpX" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/caperiver/outdoors/landing_zone_2/cave) +"vqd" = ( +/obj/structure/machinery/shower{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"vqf" = ( +/obj/structure/machinery/vending/hydroseeds{ + pixel_x = -9; + pixel_y = 14; + density = 0 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"vqK" = ( +/obj/structure/window/framed/kutjevo, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "landingzone1_1"; + name = "\improper Landing Zone Shutters"; + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/cave) +"vqW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/central) +"vrb" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/indoors/miningbase/admin) +"vre" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/obj/structure/closet, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"vrT" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"vsc" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"vsk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/paper/crumpled{ + pixel_y = -3 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/indoors/miningbase/admin) +"vsp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"vsC" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"vte" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"vtf" = ( +/obj/structure/largecrate/random/case{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"vtq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 30 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"vtw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/sentry/lowchance, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"vtU" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/indoors/miningbase/admin) +"vun" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/north_west) +"vuu" = ( +/obj/structure/flora/bush/canyon/bush, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"vuB" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/indoors/miningbase/medical) +"vuC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/indoors/miningbase/engi) +"vuK" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"vuX" = ( +/obj/item/shard, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_w) +"vvg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 10; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"vvo" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/west/antiweed) +"vvv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/indoors/miningbase/dorm) +"vwb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 18; + pixel_y = -9; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"vwl" = ( +/obj/effect/decal/hybrisa/hull_angled, +/turf/open/floor/hybrisa/engineership/pillars, +/area/caperiver/indoors/conambase/unknown) +"vwO" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock, +/area/caperiver/oob) +"vxn" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/telecomms/telecomm_4) +"vxP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"vxQ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/outdoors/con_am_exterior/south) +"vyp" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"vyr" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -1; + pixel_y = -22 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"vys" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/con_am_exterior/south) +"vyI" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"vyW" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/prison/floor_plate, +/area/caperiver/telecomms/telecomm_3) +"vzb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/mining_base_exterior/south) +"vzg" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellow2, +/area/caperiver/telecomms/telecomm_3) +"vzE" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/caperiver/outdoors/road/south) +"vzH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkyellow2/north, +/area/caperiver/indoors/conambase/engi) +"vzP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2, +/area/caperiver/indoors/conambase/recreational) +"vAB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/obj/structure/largecrate/chick, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/caperiver/telecomms/telecomm_3) +"vBk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"vBm" = ( +/obj/structure/platform_decoration/stone/mineral/east{ + color = "#716959" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south_east) +"vBD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/tanleft, +/turf/open/floor/station/metal/floor/alt3, +/area/caperiver/telecomms/telecomm_3) +"vBO" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/decal/hybrisa/dirt, +/obj/item/stack/rods, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"vBV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"vCH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_4) +"vCL" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"vDc" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + pixel_y = -4; + pixel_x = -7 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"vDl" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"vDF" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -23; + pixel_y = 19 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 4; + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"vEu" = ( +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"vEJ" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"vEO" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/landing_zone_2) +"vET" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/indoors/miningbase/admin) +"vFu" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 24; + layer = 4.121 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 13; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/scrublands/north) +"vFw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/tool, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/support) +"vFy" = ( +/obj/structure/noticeboard{ + desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; + pixel_y = 29 + }, +/turf/open/floor/prison/darkbrown2/northwest, +/area/caperiver/indoors/conambase/recreational) +"vFA" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"vFP" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/north) +"vGw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"vGC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_4) +"vHc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/safety/landingzone{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/interior/wood/alt, +/area/caperiver/outdoors/landing_zone_2) +"vHS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/caperiver/indoors/miningbase/engi) +"vHU" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"vHX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"vHY" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/structure/machinery/light/small, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"vIy" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"vIL" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/outdoors/landing_zone_1/interior) +"vJf" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 2; + pixel_y = -12 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"vJp" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"vJy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkgreen2/east, +/area/caperiver/indoors/conambase/recreational) +"vJO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 9 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"vKb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/caperiver/telecomms/telecomm_1) +"vKC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"vLc" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south_east) +"vLh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/central/antiweed) +"vLJ" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/south) +"vMf" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/colors/orange/edge, +/area/caperiver/indoors/miningbase/engi) +"vMg" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"vNc" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1) +"vNn" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1) +"vNr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/north_west) +"vNy" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"vNT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/lz_cave) +"vOf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"vOp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/south) +"vPy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3; + pixel_y = -1 + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/checkpoint) +"vPB" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -1 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"vPS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/computer/objective{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_4) +"vQa" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1; + pixel_y = 43 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/nw_cave) +"vQx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/structure/platform/stone/mineral/east{ + color = "#716959" + }, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"vQB" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/landing_zone_2) +"vQQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/caperiver/indoors/conambase/research_e) +"vQR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -41; + pixel_y = -24 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"vRB" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 3; + pixel_y = -16 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"vSx" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"vTf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"vTu" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"vTQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/south) +"vTY" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/darkgreen2/northwest, +/area/caperiver/indoors/conambase/recreational) +"vUb" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"vUX" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"vVa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"vVs" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/con_am_exterior/north) +"vWb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/caperiver/indoors/miningbase/engi) +"vWP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/hydro) +"vXr" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/con_am_exterior/north) +"vYa" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/freezerfloor, +/area/caperiver/indoors/conambase/support) +"vYh" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/hydro) +"vYo" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1; + icon_state = "sandbag_3" + }, +/turf/open/floor/prison, +/area/caperiver/indoors/processing) +"vYE" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"vZg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north) +"vZi" = ( +/obj/structure/largecrate/random/case, +/obj/effect/landmark/map_item, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"vZH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -17; + pixel_y = -12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"vZY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/boulder/small/boulder1{ + color = "#7f6357" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/oob) +"wan" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/south) +"waY" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"wbL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/conam/long_logo_right/damage_1{ + pixel_x = -16 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"wch" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"wcl" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_6"; + desc = null; + name = "sticky notes" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"wcx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"wcP" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/outdoors/landing_zone_1/cave) +"wcW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/caperiver/indoors/conambase/engi) +"wdi" = ( +/obj/structure/platform/stone/sandstone/north, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/landing_zone_2/river) +"wdm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -2; + pixel_y = 18 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"wdz" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"wdC" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -4; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -11; + pixel_y = 24 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"wdE" = ( +/obj/structure/largecrate/random/barrel/brown, +/obj/effect/decal/large_stain{ + layer = 2.6; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/mining_base_exterior/north) +"web" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"weo" = ( +/obj/structure/flora/grass/desert/lightgrass_7{ + pixel_x = -7; + pixel_y = -12 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"wey" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/north_west) +"weL" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"wfm" = ( +/obj/structure/flora/grass/desert/lightgrass_11{ + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"wfw" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"wfH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/nw) +"wfJ" = ( +/obj/structure/prop/fake/railing/strata{ + pixel_y = 2; + layer = 4.12 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"wfV" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"wga" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/north) +"wgl" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"wgn" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"wgv" = ( +/obj/structure/machinery/light/red{ + dir = 1; + alpha = 0; + needs_power = 0; + light_color = "#BF40BF" + }, +/turf/open/floor/hybrisa/engineership/engineer_floor9, +/area/caperiver/indoors/conambase/unknown) +"wgz" = ( +/obj/structure/fence/slim, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/mining_base_exterior/north) +"whb" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/goggles/highchance, +/turf/open/floor/station/metal/floor/alt3/west, +/area/caperiver/indoors/conambase/support) +"whc" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"whg" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/outdoors/landing_zone_1/interior) +"whk" = ( +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/caperiver/telecomms/telecomm_4) +"why" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400"; + pixel_y = 8; + pixel_x = 16 + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"whB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/north_west) +"whD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"whK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"wic" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/caperiver/outdoors/scrublands/nw_cave) +"wiq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_y = 19 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_west) +"wiJ" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"wjn" = ( +/obj/structure/sign/safety/east{ + pixel_x = 7; + pixel_y = 23; + name = "\improper East traffic signal"; + desc = "A traffic signal denoting the nearby presence of something to the East." + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 9; + name = "\improper Con-Am Facility"; + desc = "A sign denoting the location of a Con-Am facility." + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal" + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/north) +"wjv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/caperiver/oob) +"wkY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"wma" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/bushlands) +"wmr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -5; + pixel_y = 19 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/landing_zone_2/cave) +"wmO" = ( +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"wnc" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/spawner/random/gun/smg/highchance, +/turf/open/floor/darkred2/southwest, +/area/caperiver/indoors/conambase/support) +"wnh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/caperiver/telecomms/telecomm_3) +"wnj" = ( +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"wnm" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/con_am_exterior/north) +"wnD" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"wok" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"wop" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"wos" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 10; + pixel_y = 11 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"wot" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -2; + pixel_y = 26 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"woz" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"woF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/south) +"woG" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"wpj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"wpk" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/caperiver/outdoors/landing_zone_2/interior) +"wpo" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"wpz" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"wpH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 19 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"wqs" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = -6; + pixel_y = -1 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/desert/rock, +/area/caperiver/oob) +"wqx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"wqX" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"wrQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -3; + pixel_y = 21 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north) +"wte" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"wtz" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/caperiver/indoors/caves/w) +"wtO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/con_am_exterior/north) +"wus" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/shard, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"wuH" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/woodentable, +/turf/open/floor/grimy, +/area/caperiver/indoors/conambase/recreational) +"wuM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"wuS" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/north_east) +"wuZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"wvb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"wvf" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"wvn" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"wvo" = ( +/obj/structure/machinery/power/terminal, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/engi) +"wvz" = ( +/obj/structure/flora/bush/canyon/tree, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/mining_base_exterior/north) +"wvA" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"wvC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_4) +"wwa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/unknown) +"wwd" = ( +/obj/structure/largecrate/empty/case, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/telecomms/telecomm_3) +"wwB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"wwS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"wxr" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/bushlands) +"wxH" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/outdoors/landing_zone_1/interior) +"wyb" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 8; + layer = 3.2; + name = "Television set"; + network = list("military"); + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/kutjevo/colors/red/edge/east, +/area/caperiver/indoors/miningbase/checkpoint) +"wye" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"wyt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"wzj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"wzk" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1{ + pixel_y = 34 + }, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/west, +/area/caperiver/indoors/conambase/unknown) +"wzp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -16 + }, +/obj/structure/prop/static_tank/water, +/turf/open/floor/elevatorshaft, +/area/caperiver/indoors/conambase/bunker) +"wzr" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/bushlands) +"wAk" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/caperiver/indoors/conambase/engi) +"wAI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/caperiver/indoors/miningbase/admin) +"wAP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"wAV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"wAX" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"wBs" = ( +/obj/structure/window/reinforced, +/obj/structure/mirror{ + pixel_x = -1; + pixel_y = 33 + }, +/obj/structure/sink{ + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/caperiver/outdoors/landing_zone_1/cave) +"wBR" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/research_e) +"wCa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/caperiver/outdoors/con_am_exterior/north) +"wCb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellow2, +/area/caperiver/telecomms/telecomm_3) +"wCz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/caperiver/outdoors/mining_base_exterior/north) +"wCF" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/structure/sign/poster/corporate{ + layer = 2.9; + pixel_y = 35; + pixel_x = 6 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/telecomms/telecomm_4) +"wCT" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/mining_base_exterior/south) +"wDy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"wDW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"wFt" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"wFv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/south) +"wFO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"wFZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/hybrisa/tiretrack, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"wGe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"wGq" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/zbrownfloor2/east, +/area/caperiver/outdoors/con_am_exterior/north) +"wGE" = ( +/turf/open/floor/darkblue2/northwest, +/area/caperiver/indoors/conambase/command) +"wGO" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"wGU" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"wGW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"wHc" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"wHP" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison/darkbrown2, +/area/caperiver/indoors/conambase/recreational) +"wIy" = ( +/obj/structure/prop/hybrisa/misc/blood/blood1, +/obj/effect/decal/remains/human{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"wII" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/indoors/miningbase/dorm) +"wIR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/stone/mineral{ + color = "#716959" + }, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_x = 14 + }, +/obj/effect/decal/hybrisa/lattice, +/turf/open/gm/river/desert/deep, +/area/caperiver/oob) +"wKh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/gun/special/lowchance, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"wKt" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"wKz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"wKB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/caperiver/indoors/miningbase/dorm) +"wKN" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/remains/robot{ + pixel_y = -5; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"wKS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"wKU" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/west/antiweed) +"wKZ" = ( +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 2; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/engi) +"wLc" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic/glass/rusted_window, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"wLm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/radio/intercom{ + freerange = 1; + pixel_y = -32 + }, +/obj/structure/machinery/light/blue, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/medical) +"wLB" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard/shrapnel/bone_chips, +/obj/item/shard/shrapnel/bone_chips/human{ + pixel_x = -10; + pixel_y = -1 + }, +/turf/open/floor/cult, +/area/caperiver/indoors/conambase/unknown) +"wLG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/north) +"wLK" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 6; + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"wMo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/indoors/miningbase/rec) +"wMB" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_e) +"wMH" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/bushlands) +"wML" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"wMS" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/item/trash/cigbutt, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"wMW" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = 10; + pixel_y = 27 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/north_west) +"wNd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/rec) +"wNH" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/telecomms/telecomm_4) +"wNU" = ( +/obj/effect/decal/hybrisa/lattice/full, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 10 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"wOI" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_x = -5 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan, +/area/caperiver/indoors/miningbase/medical) +"wPc" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"wPi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"wPm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"wPq" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock/deep/transition/southwest, +/area/caperiver/outdoors/scrublands/north_west) +"wPT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement/cement12, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"wPY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2/northwest, +/area/caperiver/indoors/conambase/recreational) +"wQe" = ( +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 4; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/flora/bush/canyon/grass_orange/alt1{ + dir = 1; + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"wQy" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"wQB" = ( +/turf/open/floor/cult, +/area/caperiver/indoors/caves/ne) +"wQF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/prison, +/area/caperiver/indoors/conambase/recreational) +"wQK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"wQL" = ( +/turf/closed/wall/abyssal/standard/reinforced, +/area/caperiver/indoors/conambase/delivery) +"wRr" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/central) +"wRz" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/scrublands/lz_cave) +"wRH" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"wRI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"wSj" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) +"wSt" = ( +/obj/structure/machinery/computer3{ + pixel_y = 11; + density = 0; + unacidable = 1; + explo_proof = 1; + layer = 2.99 + }, +/obj/item/prop{ + icon = 'icons/obj/structures/machinery/computer3.dmi'; + icon_state = "robot"; + name = "Console Screen"; + pixel_y = 10; + explo_proof = 1; + unacidable = 1; + light_range = 2; + light_color = "#BF40BF"; + light_on = 1; + anchored = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/caperiver/indoors/conambase/research_e) +"wTl" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"wTt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"wTK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/kutjevo/colors/red/edge, +/area/caperiver/indoors/miningbase/checkpoint) +"wUp" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"wUr" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"wUB" = ( +/obj/structure/window/framed/abyssal/standard/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"wUC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = -2; + pixel_y = 15 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/nw) +"wUG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"wUV" = ( +/obj/item/shard, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/outdoors/scrublands/north) +"wUZ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 + }, +/obj/effect/hybrisa/misc/fake/wire, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = 8 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/recreational) +"wVN" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"wVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"wWv" = ( +/obj/effect/decal/remains/robot{ + pixel_x = 6; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/unknown) +"wWx" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"wWA" = ( +/obj/structure/fence/slim/dark/door{ + dir = 4 + }, +/turf/open/floor/plating, +/area/caperiver/indoors/caves/nw) +"wWY" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"wXp" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"wXw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/blacktileshiny, +/area/caperiver/indoors/conambase/bunker) +"wXG" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/caperiver/telecomms/telecomm_4) +"wXJ" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/caperiver/indoors/miningbase/medical) +"wXS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/support) +"wYe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"wYm" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4; + layer = 2.5 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/delivery) +"wYu" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder3{ + color = "#88715d"; + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 3; + pixel_y = -14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"wYO" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/mining_base_exterior/south) +"wYU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/recreational) +"wZZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/road/south) +"xad" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"xak" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain, +/obj/item/shard/shrapnel/bone_chips, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/unknown) +"xbb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/delivery) +"xbZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"xca" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/caperiver/outdoors/landing_zone_1/cave) +"xce" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 2; + pixel_y = -7 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"xcf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/fridge/full{ + pixel_x = -3 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/rec) +"xcJ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 5; + pixel_x = 3; + pixel_y = 32 + }, +/turf/open/floor/asteroidwarning/north, +/area/caperiver/outdoors/scrublands/north_west) +"xdm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/caperiver/outdoors/scrublands/north) +"xdq" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"xdK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/hybrisa/misc/blood/blood1{ + layer = 3.1; + pixel_y = 68 + }, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"xdO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"xdW" = ( +/obj/structure/computerframe{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"xej" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/caperiver/indoors/conambase/research_e) +"xeC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 5; + pixel_y = -13 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1; + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"xeV" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkbrown2/northwest, +/area/caperiver/indoors/conambase/delivery) +"xfi" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/road/south) +"xfs" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/east, +/obj/item/lightstick/red/spoke/planted{ + layer = 4.121; + pixel_x = 17 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"xfu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/autoname{ + req_one_access = null + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/engi) +"xfv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"xfV" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"xfY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"xgz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = -10 + }, +/obj/structure/flora/bush/desert/cactus{ + pixel_x = 10 + }, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4"; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"xgS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/west) +"xgW" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/strata_decals/mud_corner{ + dir = 4 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/ne) +"xhz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south/antiweed) +"xhH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/mining_base_exterior/north) +"xhY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/west) +"xiH" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/closed/wall/abyssal/standard, +/area/caperiver/indoors/conambase/recreational) +"xiW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"xjc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/big_computers/computerblack/computer3{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/darkpurple2/northwest, +/area/caperiver/indoors/conambase/research_w) +"xjz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/north_west) +"xkK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north) +"xkP" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000" + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"xkY" = ( +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"xld" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/closet/medical_wall{ + pixel_y = 31 + }, +/turf/open/floor/darkgreen2/north, +/area/caperiver/indoors/conambase/recreational) +"xlg" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/outdoors/landing_zone_1) +"xlm" = ( +/obj/effect/decal/strata_decals/mud_corner{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/sw) +"xlp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/landing_zone_1/cave) +"xlF" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south/antiweed) +"xlK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"xlP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/indoors/miningbase/admin) +"xlZ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"xmr" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#88715d" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/west/antiweed) +"xnc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/trash/cigbutt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/engi) +"xni" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/outdoors/scrublands/north) +"xns" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/oob) +"xoc" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west/antiweed) +"xou" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/device/radio/intercom{ + pixel_y = 30; + freerange = 1 + }, +/turf/open/floor/darkpurple2/northeast, +/area/caperiver/indoors/conambase/research_w) +"xow" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"xoR" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"xpf" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/con_am_exterior/north) +"xpl" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/bushlands) +"xpo" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/plating/prison, +/area/caperiver/indoors/conambase/engi) +"xpt" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/girder, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_4) +"xpF" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/remains/human, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"xpQ" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/landing_zone_1) +"xqf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/recreational) +"xqq" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"xrC" = ( +/obj/structure/flora/grass/desert/heavygrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"xsl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/obj/structure/machinery/light/small/blue{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/caperiver/indoors/conambase/recreational) +"xsM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"xsP" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/mining_base_exterior/south) +"xti" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"xts" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/caperiver/indoors/conambase/engi) +"xtt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/south_east) +"xtF" = ( +/obj/structure/platform_decoration/stone/soro, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"xtW" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/nailgun, +/obj/item/ammo_box/magazine/nailgun{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/caperiver/indoors/miningbase/engi) +"xuj" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"xuk" = ( +/turf/open/floor/darkblue2/southeast, +/area/caperiver/indoors/conambase/command) +"xuE" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/west) +"xuN" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cacti_7" + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/bushlands) +"xva" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 9; + pixel_x = -3; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"xvi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/floodlight, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/caperiver/indoors/conambase/engi) +"xvA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/road/west/antiweed) +"xvU" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"xwf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ab8e75"; + dir = 1; + pixel_x = 4; + pixel_y = 1 + }, +/obj/structure/prop/fake/railing/strata{ + pixel_y = 8; + layer = 4.12 + }, +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"xwq" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"xwv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/engi) +"xwE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/southwest, +/area/caperiver/indoors/conambase/research_w) +"xwI" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/caperiver/indoors/conambase/engi) +"xxa" = ( +/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, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"xxb" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/station/metal/floor/alt3/west, +/area/caperiver/indoors/conambase/support) +"xxd" = ( +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/con_am_exterior/south) +"xxt" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"xxJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stool{ + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/caperiver/indoors/miningbase/rec) +"xxP" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = 15; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"xxX" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -2; + pixel_y = 29 + }, +/obj/structure/largecrate/random, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/sw) +"xyp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_west) +"xyw" = ( +/obj/item/stack/rods, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1; + layer = 2; + explo_proof = 0 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/caperiver/indoors/caves/s) +"xyz" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/large_stain, +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/large_stain{ + dir = 4; + color = "#390000"; + pixel_x = 16; + pixel_y = 19 + }, +/turf/open/floor/darkish, +/area/caperiver/indoors/conambase/unknown) +"xyA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/obj/structure/flora/grass/desert/lightgrass_2{ + pixel_x = 19; + pixel_y = -4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"xyD" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/desert/desert_shore/shore_corner1, +/area/caperiver/outdoors/landing_zone_2/river) +"xyI" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"xyO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/caperiver/outdoors/con_am_exterior/north) +"xyT" = ( +/obj/structure/flora/grass/desert/heavygrass_7{ + pixel_x = 1; + pixel_y = 17 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"xza" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/caperiver/outdoors/road/central) +"xAm" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/landing_zone_1) +"xAp" = ( +/turf/closed/wall/kutjevo/colony, +/area/caperiver/telecomms/telecomm_1) +"xAv" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 22; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"xAw" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/telecomms/telecomm_4) +"xAG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"xAO" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"xBn" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_e) +"xBr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2/cave) +"xBP" = ( +/obj/structure/flora/grass/desert/heavygrass_5{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"xCe" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/caperiver/outdoors/bushlands) +"xCi" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/machinery/light/small/blue{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/caperiver/indoors/conambase/recreational) +"xCu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/mining_base_exterior/south) +"xCW" = ( +/obj/structure/flora/grass/desert/lightgrass_6{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/con_am_exterior/south) +"xCX" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/n) +"xDo" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/north_east) +"xDw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkblue2/north, +/area/caperiver/indoors/conambase/command) +"xDx" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 10; + pixel_x = -5; + pixel_y = 15 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/outdoors/chasm) +"xDL" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/mining_base_exterior/north) +"xEm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/central) +"xEu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2/cave) +"xEI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/trash/ceramic_plate, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"xFr" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north) +"xFA" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_4) +"xGH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/sw) +"xGO" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -4; + pixel_y = 16 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"xGW" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/bushlands) +"xHg" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/caperiver/outdoors/landing_zone_2) +"xHx" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/caperiver/telecomms/telecomm_4) +"xIe" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock/deep/transition, +/area/caperiver/outdoors/landing_zone_2/cave) +"xIz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/caperiver/outdoors/road/west/antiweed) +"xIE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"xJb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkbrown2/north, +/area/caperiver/indoors/conambase/delivery) +"xJc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"xJe" = ( +/obj/effect/decal/hybrisa/lattice/full, +/turf/open/desert/rock, +/area/caperiver/outdoors/con_am_exterior/north) +"xJJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/kutjevo/tiles, +/area/caperiver/indoors/miningbase/checkpoint) +"xJV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/con_am_exterior/south) +"xKn" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/darkpurple2/west, +/area/caperiver/indoors/conambase/research_e) +"xLh" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south_east) +"xMc" = ( +/obj/structure/pipes/vents/pump, +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/greencorner/east, +/area/caperiver/indoors/conambase/medical) +"xMm" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"xMA" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = 7; + dir = 1 + }, +/obj/item/shard, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/caperiver/indoors/processing) +"xMB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/colors/green, +/area/caperiver/indoors/miningbase/hydro) +"xNb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/north) +"xNn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/mining_base_exterior/south) +"xNJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/caperiver/indoors/miningbase/admin) +"xOl" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform/stone/soro, +/turf/open/gm/river/desert/deep, +/area/caperiver/outdoors/chasm) +"xOJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/kutjevo, +/area/caperiver/indoors/miningbase/engi) +"xPd" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/caperiver/indoors/conambase/recreational) +"xPf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/caperiver/indoors/conambase/engi) +"xPN" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/north) +"xPP" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"xQm" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/obj/structure/sign/conam/variant1{ + pixel_y = 32 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west) +"xQo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south_east) +"xQp" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/oob) +"xQF" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/station/metal/alt_floor, +/area/caperiver/indoors/conambase/support) +"xQY" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/tan/grey_inner_edge, +/area/caperiver/indoors/miningbase/admin) +"xRe" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 16; + pixel_y = 5 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/bushlands) +"xRj" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/rock/deep/rock3, +/area/caperiver/outdoors/scrublands/north_west) +"xRs" = ( +/obj/structure/window/framed/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/landing_zone_1/interior) +"xRD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/south) +"xSh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/escapepod/floor0/north, +/area/caperiver/indoors/miningbase/engi) +"xSo" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/bushlands) +"xSz" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"xTl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/outdoors/landing_zone_2/cave) +"xTv" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 8 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/indoors/caves/s) +"xTB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/west) +"xTH" = ( +/obj/effect/decal/hybrisa/grate{ + dir = 4 + }, +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/auto_turf/strata_grass/layer0, +/area/caperiver/indoors/caves/se) +"xTI" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/west) +"xTO" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/north_west) +"xUp" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"xUq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/caperiver/indoors/caves/n) +"xUw" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 1 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/con_am_exterior/north) +"xUQ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"xUS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/road/west) +"xVt" = ( +/obj/structure/prop/hybrisa/vehicles/Mining_Crawlers{ + icon_state = "mining_crawler_blank"; + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/caperiver/indoors/caves/w) +"xVz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north_east) +"xVC" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt/alt_dirt/stain, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/research_w) +"xVJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/obj/structure/largecrate, +/turf/open/floor/darkish, +/area/caperiver/telecomms/telecomm_3) +"xVW" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/landing_zone_2) +"xWm" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"xWn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"xWv" = ( +/obj/structure/machinery/colony_floodlight_switch/engineerconsole_switch{ + layer = 4 + }, +/turf/open/floor/hybrisa/engineership/engineer_floor9, +/area/caperiver/indoors/conambase/unknown) +"xWN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/oob) +"xWS" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/north_east) +"xXi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/caperiver/indoors/miningbase/admin) +"xXq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"xXu" = ( +/obj/effect/decal/sand_overlay/sand1{ + icon_state = "sand3_c"; + dir = 8 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/south_east) +"xXw" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/con_am_exterior/south) +"xXx" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/bushlands) +"xXB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/caperiver/outdoors/road/west/antiweed) +"xXJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/caperiver/outdoors/landing_zone_1) +"xXO" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"xXR" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"xXW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/landmark/nightmare{ + insert_tag = "clfbridgecrash" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"xYf" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/central) +"xYy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"xYA" = ( +/obj/structure/cargo_container/hybrisa/containersextended/kelland_right, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"xYY" = ( +/obj/effect/decal/strata_decals/mud_corner, +/turf/open/gm/dirt/brown/variant_2, +/area/caperiver/indoors/caves/sw) +"xZh" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/gm/river/desert/shallow_edge/east, +/area/caperiver/outdoors/landing_zone_2/river) +"xZj" = ( +/obj/structure/flora/tree/joshua, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/mining_base_exterior/north) +"xZE" = ( +/turf/open/floor/interior/wood/alt, +/area/caperiver/outdoors/bushlands) +"xZT" = ( +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/con_am_exterior/south) +"yar" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 8; + pixel_x = 22; + pixel_y = 8 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"yaz" = ( +/obj/structure/fence/slim/dark, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/platingdmg1, +/area/caperiver/indoors/caves/s) +"yaC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/bushlands) +"yaK" = ( +/obj/item/device/flashlight/lamp/tripod{ + on = 0 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"yaV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/caperiver/outdoors/landing_zone_1) +"yaX" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/caperiver/outdoors/landing_zone_1/cave) +"ybz" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/north_west) +"ybE" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/prop/colorable_rock/boulder/wide_boulder/wide_boulder1{ + color = "#7f6357"; + pixel_x = -3; + pixel_y = 22; + layer = 2.9 + }, +/turf/open/desert/rock, +/area/caperiver/oob) +"ybM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/caperiver/indoors/caves/w) +"ybV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/asteroidwarning/northwest, +/area/caperiver/outdoors/scrublands/north_west) +"ycg" = ( +/obj/structure/blocker/forcefield/all{ + alpha = 0 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/desert/rock, +/area/caperiver/oob) +"ycu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -4; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/west/antiweed) +"ycx" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"ycE" = ( +/obj/structure/flora/bush/canyon/tree/alt1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ycQ" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/auto_turf/sand/layer0, +/area/caperiver/outdoors/landing_zone_1) +"ydF" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/effect/landmark/nightmare{ + insert_tag = "altcomms" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ydH" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#ccad8f"; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -25; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/bushlands) +"ydP" = ( +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/support) +"yfb" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkgreen2/east, +/area/caperiver/indoors/conambase/recreational) +"yfn" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + dir = 8 + }, +/turf/open/floor/prison/bluefull/west, +/area/caperiver/indoors/processing) +"yfv" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/darkbrown2/west, +/area/caperiver/indoors/conambase/recreational) +"yfJ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurplecorners2/north, +/area/caperiver/indoors/conambase/research_w) +"yfW" = ( +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/darkpurple2/southeast, +/area/caperiver/indoors/conambase/research_w) +"ygc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/mining_base_exterior/south) +"ygl" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/alt_dirt{ + color = "#140400" + }, +/turf/open/floor/kutjevo/grey, +/area/caperiver/telecomms/telecomm_4) +"ygn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"ygw" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/caperiver/indoors/conambase/support) +"ygK" = ( +/obj/structure/platform/metal/strata/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/ramptop/east, +/area/caperiver/outdoors/bushlands) +"yhc" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/effect/decal/hybrisa/lattice, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/engine, +/area/caperiver/telecomms/telecomm_3) +"yhE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/supply, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/outdoors/landing_zone_1) +"yhN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/gm/river/desert/deep/covered, +/area/caperiver/outdoors/mining_base_exterior/south) +"yhQ" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/recreational) +"yib" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/oob) +"yig" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/caperiver/indoors/miningbase/dorm) +"yij" = ( +/obj/structure/prop/colorable_rock/colorable/alt1{ + color = "#ccad8f"; + dir = 1; + pixel_x = -5; + pixel_y = 19 + }, +/turf/open/desert/rock/deep/rock4, +/area/caperiver/outdoors/landing_zone_2) +"yiM" = ( +/obj/item/organ/eyes, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/unknown) +"yiV" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/telecomms/telecomm_2) +"yja" = ( +/obj/structure/barricade/sandbags/wired{ + color = "#a98c7c"; + pixel_y = -7 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/landing_zone_2) +"yjn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/north) +"yjA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"yjY" = ( +/obj/effect/decal/hybrisa/lattice, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/medical) +"ykc" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/bed/chair, +/turf/open/floor/hybrisa/tile/tilebeigecheckered, +/area/caperiver/indoors/conambase/support) +"yko" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/caperiver/indoors/conambase/research_w) +"yku" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/caperiver/indoors/conambase/support) +"ykx" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/bodybag/cryobag, +/turf/open/floor/kutjevo, +/area/caperiver/indoors/miningbase/medical) +"ykA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/caperiver/indoors/conambase/research_w) +"ylq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"ylx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/mining_base_exterior/south) +"ylB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/paper_bin, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = -4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/caperiver/telecomms/telecomm_4) +"ylT" = ( +/obj/effect/decal/hybrisa/lattice, +/obj/structure/largecrate, +/obj/structure/machinery/light/small{ + dir = 1; + light_color = "#BB3F3F"; + color = "#BB3F3F" + }, +/turf/open/floor/engine, +/area/caperiver/indoors/conambase/delivery) + +(1,1,1) = {" +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +"} +(2,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bxu +bIv +bGO +lij +anz +anz +anz +anz +anz +anz +xOl +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(3,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bKA +bJF +aqQ +bGQ +apK +wmO +wmO +wmO +wmO +wmO +xtF +abW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(4,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bKB +bJG +aqQ +oSY +apK +wmO +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(5,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bxu +bIx +bGS +apK +wmO +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(6,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bxu +bIy +bGT +apK +wmO +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(7,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bKC +bxu +bIz +bqF +apK +wmO +wmO +wmO +wmO +xtF +abW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(8,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bJH +aqQ +pwU +apK +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(9,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bxu +bIA +bCF +apK +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(10,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bJI +aqQ +vjy +apK +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(11,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bJJ +aqQ +bEt +afk +bzc +alo +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(12,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bKD +bxu +bIB +iUB +bFE +bCE +apK +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(13,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aqQ +aqQ +ayX +bGU +aqQ +bEr +apK +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(14,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bKE +bJK +aqQ +bxu +bFH +bEs +apK +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(15,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bLr +aWQ +kbs +bJL +aqQ +bGW +aqQ +oEM +apK +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(16,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bLA +bLs +bLh +bKG +bJL +aqQ +bGX +bFI +jWd +apK +wmO +wmO +aaq +kpB +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(17,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bLv +aWQ +bLP +bLJ +bLD +bLt +bKI +bKI +cah +aqQ +bxu +aqQ +ntb +apK +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +dGX +gyL +vNT +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(18,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bLv +bLv +bLv +wyt +deX +kYz +bLu +bLi +pmv +bJM +aqQ +bGY +bFJ +bEt +apK +wmO +wmO +wmO +aaq +kpB +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ayS +ewj +sze +apH +ayS +ayS +ayS +ayS +ayS +azS +anC +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(19,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bLv +bLv +wyt +bLL +aCu +bLF +ekZ +aWQ +bKF +bJL +aqQ +bGZ +aqQ +bll +afk +alo +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +awp +viy +pTF +afR +afR +afR +afR +afR +afR +afR +afR +afR +afR +afR +apa +tar +ksb +aeZ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(20,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +wyt +qZZ +bLE +aWQ +aWQ +aWQ +aWQ +bKL +bJL +aqQ +bHa +aqQ +bEu +qSC +afk +alo +wmO +wmO +aaq +kpB +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uVp +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +adO +apa +apa +apa +apa +apa +apa +apa +tar +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(21,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ofT +aWQ +aWQ +aWQ +ofT +aWQ +aWQ +aWQ +ofT +aWQ +aWQ +aWQ +ofT +aWQ +aWQ +aWQ +aWQ +aWQ +bLY +apd +bLR +sSh +aWQ +aWQ +aWQ +bJO +wfJ +aqQ +bHb +bFK +bzH +bDw +bCE +apK +wmO +wmO +xtF +asz +pbO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +apk +wRz +apa +apa +apa +apa +apa +apa +wgl +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +apa +akb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(22,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ofT +ofT +ofT +ofT +ofT +ofT +ofT +psq +ofT +ofT +ofT +ofT +ofT +ofT +ofT +mBK +aWQ +aWQ +aWQ +spe +bLV +bLT +bLM +uoe +idO +bLl +bKI +cah +aqQ +aqQ +ayX +aqQ +bDx +byB +apK +wmO +wmO +abX +bXv +aPO +nEB +aHi +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +apa +apa +apa +apa +apa +apa +aah +ayw +ayw +ayw +ayw +ayw +ayw +umZ +apa +apa +apa +aFB +apa +apa +apa +aOY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(23,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +awr +snT +ofT +nKh +qPP +ovL +auO +cAq +tsN +cAq +jbN +gFp +cyu +aVP +ofT +aOq +aNU +wyt +apl +bMb +atS +atS +aLr +bLN +bKN +spe +spe +bKN +bJN +bID +bHc +aqQ +bxu +bxu +bCY +apK +wmO +xtF +asz +azL +aGz +qjW +ixZ +aLc +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aId +apa +apa +apa +apa +lJc +apa +iCK +ayS +dSO +lsd +ayS +bkM +ayS +ifb +apa +apa +aPv +aFB +apa +aFB +apa +apa +aGx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(24,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +mfM +cRl +aIC +awH +bVa +ofT +bap +bWe +adB +kuX +gxV +wXJ +aRk +sNd +aGv +alO +cTb +ofT +aRC +aat +wvn +aZl +bMa +aLr +atS +atS +atS +atS +atS +atS +atS +aTx +uxp +bHd +gTv +bEv +bxu +kls +apK +xtF +asz +ayN +pjV +jGB +voP +eUN +wCT +arG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aAv +qNR +dta +aWQ +aWQ +aWQ +pEo +apa +apa +apa +apa +aOY +apa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLK +aFB +sGD +aFB +aFB +apa +apa +tsH +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(25,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +eyu +gyx +awH +awH +awH +awH +aBo +wic +baq +szE +aeD +aOF +pts +ddW +nZW +avB +wOI +jAT +dcp +ofT +hcO +wKt +uQF +dzt +bMe +atS +atS +atS +atS +atS +aLr +aBv +aRB +aoh +bxW +bHe +aqQ +bxu +bDy +arV +apK +abX +hef +aPO +afh +izl +rwQ +acC +awP +aJL +aBx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ann +qnP +kng +slT +clf +aWQ +aWQ +aFY +rnu +qyr +apa +apa +adO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gPP +rWQ +aWj +bdl +kWU +ajg +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(26,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sMV +awH +awH +awH +awH +aTB +awH +rei +ciT +apz +auy +aeK +lLn +iGc +aDH +aDA +qzJ +wdz +jcg +aKP +ofT +ofT +ajN +atS +atS +bMe +atS +aLr +aUY +oes +bLG +aRB +bLm +oes +nAH +bxR +bxT +ffK +bEw +bxu +arV +apK +abX +ngG +biJ +afh +gdj +acC +eEg +acC +qyG +awP +arf +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +qrC +fzu +anQ +aro +axL +awB +qtj +qtj +rfP +rfP +thG +jnp +cBp +nOb +dda +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aTr +oTw +oTw +oTw +ajQ +bNA +agJ +azD +ate +oTw +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(27,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +azR +awH +aAY +awH +ezS +awH +awH +awH +dsJ +aoj +vuB +bal +bSZ +cjk +uqE +jSY +kgm +szh +qhe +bmj +ykx +iIh +shj +myw +atS +atS +bMf +atS +atS +aLr +bxn +oes +oes +oes +bxn +aak +bxX +bHf +aqQ +bEx +bDz +arV +apK +abX +ams +aPO +avj +anv +iEd +bxC +acC +acC +qyG +bul +ifN +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +awm +aWi +sxJ +oic +mpj +aqv +qtj +rfP +qtj +rfP +syM +rfP +qtj +rfP +bym +aWQ +aWQ +aWQ +aWQ +fVp +aVz +aWQ +aWQ +oTw +bfd +abo +ben +ixc +afo +bdm +lva +laq +oTw +aTr +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(28,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +kUo +awH +awH +awH +awH +awH +awH +iWq +ofT +ujq +asx +rMW +aib +atO +pQe +atO +aoz +jXN +ozy +agi +iIh +abs +jeI +aLr +atS +bMa +bMa +oes +bxn +bxn +aVL +acY +acd +bxn +bxn +oes +bHg +aqQ +bxu +bxu +arV +apK +byS +aFm +abm +awJ +arG +arG +bys +ayv +apU +gdj +acC +awP +aZq +eup +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aft +aCl +aHu +aaN +asy +aNi +aQx +wKU +rfP +rfP +qtj +rfP +rfP +rfP +rfP +aWQ +aWQ +aWQ +aWQ +ryQ +aHv +izk +doE +aWQ +oTw +bfe +aiW +aJZ +aee +bfM +bdn +bdc +bcU +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(29,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +oxA +awH +awH +pMb +biF +aWQ +aWQ +ofT +bGi +adL +oqt +aig +aeE +aoX +lUA +jSa +amU +agi +tKn +iIh +aiz +wch +atS +eid +atS +atS +atS +afu +kDf +dcf +aau +avp +bHo +afu +hVp +bHg +aqQ +bxu +bDA +arV +akV +byR +qnS +eMI +wgn +qnS +xyI +uoa +aoR +avj +apU +acC +qyG +awP +aYU +edY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ffo +cAD +atr +aaN +anO +aGd +aIb +aRj +eBs +lKO +emo +xmr +gTi +lKO +wKU +rfP +qtj +aWQ +aWQ +aEd +idr +hrk +nIx +aRD +oTw +oTw +bfg +bwP +beo +qKM +bdB +bfx +bdd +bcV +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(30,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +awH +vQa +awH +aVC +aWQ +aWQ +ofT +ofT +iIh +iIh +iIh +ofT +nmf +jwH +nmf +ofT +iIh +iIh +iIh +bxq +bxq +aKA +atS +atS +aUY +atS +atS +afu +aeN +buS +adb +bux +abi +afu +xAO +bHg +xGO +bBo +bDB +arV +amv +qnS +qnS +aHj +aQh +qnS +qnS +ahV +oQo +aoR +aQK +apU +acC +acC +awP +acl +arG +aWQ +aWQ +aWQ +aWQ +avn +pJL +nfC +ejW +aWQ +aWQ +aWQ +aWQ +aPY +npv +aCz +aNR +aZr +anO +aRl +atr +aWQ +aWQ +aWQ +lAL +azn +dRf +hrk +eBs +uSo +esk +cwB +azn +azn +azn +azn +nIx +aRD +aeV +aAG +bfh +beN +bhA +qKM +bdC +bfD +bde +bcV +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(31,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +azA +awH +ajm +lUU +aWQ +aWQ +aWQ +ofT +eCt +awz +aDT +ofT +lWd +nlL +iXQ +ofT +aWw +abs +sFm +bxq +rkH +fUE +atS +aLr +atS +aLr +oes +oes +aeQ +hsK +ade +aPp +abk +oes +oes +bHh +aqQ +bxu +bxu +dfv +amv +qnS +alT +akF +uHi +vHX +fvA +ahV +ahV +alw +anI +afh +aEA +olu +apU +awP +aJL +aJL +aXL +ane +ays +aUI +atL +pHn +mCq +aWA +anO +anO +kjf +avU +aRL +aXU +aKv +aWA +aRl +aUc +aXU +aIr +aWQ +aWQ +aWQ +aWQ +aWQ +aSx +rxo +azn +azn +azn +azn +azn +azn +azn +nIx +aRD +aeV +aAG +bjP +aER +bep +bdU +qKM +bdo +jze +bcW +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +oTw +aWQ +aWQ +aWQ +oTw +aWQ +aWQ +aWQ +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(32,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aCg +aUe +aan +aNW +hfA +sQc +aWQ +aWQ +aWQ +aQI +bIG +aQI +gRx +aqR +lPu +aXy +aHK +ubM +qJE +qJE +qJE +fUE +ail +atS +atS +atS +atS +oes +oes +aeQ +adM +tuS +acv +aCc +oes +oes +bxT +pLt +bEy +bDC +olI +amv +qnS +mxJ +mKt +iqC +udH +aQt +vHX +qnS +bjD +abm +afh +agu +aWQ +agn +acC +acC +qyG +aXs +aEy +aTs +awB +awB +aUI +aML +mOL +aWA +anO +aRl +aUc +aXU +aXU +aXU +aXU +aUc +aXU +aXU +azn +lrm +qfj +aWQ +aWQ +aWQ +aWQ +aSx +rxo +azn +azn +rKk +idr +azn +azn +nIx +aRD +aeV +aAG +bfh +qWR +coB +qKM +qKM +bdp +jze +bex +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +fIQ +agS +lfe +aWQ +aWQ +aWQ +aWQ +bjA +bjA +bjA +bjA +bjA +bjA +bjA +aWQ +aWQ +aWQ +aWQ +oTw +oTw +oTw +oTw +oTw +oTw +oTw +oTw +oTw +oTw +oTw +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(33,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +wey +abO +abO +aUe +aLl +hwj +aLo +aLo +aDj +aWQ +aWQ +aWQ +mfC +vUb +spe +jXv +ahn +aoZ +anL +aWf +aRB +bCt +vFP +aRB +aRB +aRB +seS +tkZ +agR +aRB +atc +afu +aeY +adP +uPy +lTj +lNp +afu +sQT +bxT +aqQ +bEz +bAV +bzk +amv +eXC +avu +gwC +kdC +vYh +oJh +vOf +qnS +aDW +agG +aRw +aZW +aWQ +tgC +qyG +acC +acC +aDh +aYJ +aTs +axL +awB +awB +awB +xuE +pSh +aHu +atr +aua +aXU +dFk +aWQ +aoG +aXU +aXU +fYh +azn +lfm +lYc +prL +prL +oXo +rxo +rYm +azn +azn +qbK +tCX +wwB +liP +azn +nIx +aRD +oTw +oTw +bfi +qWR +ber +bgf +bfN +bdq +whg +bex +oTw +aTr +aWQ +aWQ +aWQ +rsU +aHy +fIQ +fnH +fIQ +fIQ +aMj +tUV +bjA +bjA +bjA +aQL +aQL +bjA +bjA +rMA +xyT +jcW +oTw +oTw +bbo +bbl +bdK +baZ +baR +baI +bay +hEO +aTj +aQs +oTw +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(34,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +abO +aUe +aUe +aUe +aUe +aLl +abq +wzj +xxP +aFQ +asH +ajs +ajs +xAv +asC +lMt +qQd +ahn +apj +afc +agF +agF +adm +agF +agF +agF +agF +agF +agF +agF +kjq +aHK +afu +smj +ouq +fIV +lGU +lNp +afu +bIF +bxT +aqQ +bEA +bxu +arV +amv +eXC +xMB +aAM +akA +jfY +hcW +cWi +qnS +qnS +ssP +afh +aZW +aWQ +afh +acC +acC +acC +aDh +aYJ +aVR +aHW +ati +awB +awB +awB +pTw +atr +aua +aXU +azK +aWQ +aWQ +gyp +eln +aXU +aXU +azn +hrk +gVr +djA +djA +and +mbW +azn +azn +azn +atP +lYc +prL +wwB +pNB +gUD +aRD +aeV +aAG +bfi +beO +hoI +bgn +qKM +bfE +whg +bcV +oTw +uWr +aWQ +fIQ +fIQ +nAP +olw +ani +fIQ +qGA +qev +byJ +eCl +aQL +aTI +sBG +nPu +nPu +eCl +aQL +sBG +aHO +fIQ +iae +xRs +qtq +bdX +bdR +msp +baS +bdj +baz +icT +sZb +aQO +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(35,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGH +aUe +aUe +aqo +aUe +tyT +aUe +aLl +aLo +aBg +aWc +aij +seA +apG +apd +aim +aLr +rwg +ahn +aJl +anP +wRH +wRH +wRH +wRH +wRH +wRH +ahF +wRH +wRH +ahf +agL +oes +bxn +bxn +grZ +acw +aNp +bxn +bxn +oes +bHi +dTs +bxu +bDD +arV +amv +eXC +aAq +tXF +hVO +aLD +mKt +adj +aQh +baa +arG +rze +awP +dXA +aJe +acC +aEA +iUQ +dLH +ane +aWn +aXU +aQx +aqv +axL +awB +aUI +cZF +aXU +cjx +aWQ +aWQ +aWQ +kZD +aXU +aXU +lYq +nOb +nOb +eKj +ngA +pFl +aiP +thd +azn +ako +azn +aPX +gVr +prL +prL +wwB +tgO +aRD +aeV +aAG +bfi +beN +bes +bdV +qKM +bfF +bdf +bcX +oTw +uWr +fIQ +nPu +aLY +fIQ +nPu +fIQ +qGA +nPu +nPu +ycQ +ksR +jsv +aMj +hKA +aPz +uit +aPB +uit +jhw +dHE +aPB +iae +amt +qtq +beE +tHK +bba +beE +beE +baA +bas +tiL +aRH +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(36,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bXo +fCT +atV +awK +xlZ +cmM +aWQ +aWQ +xlZ +aan +aLo +aLo +aLo +jIq +uMV +lGH +atI +azO +aRB +qvm +ahn +aJl +aXy +txW +spe +spe +spe +spe +rnk +spe +spe +aEt +ahn +agO +aHK +aLr +bxn +nZa +lMl +afu +bxn +bJP +bIF +bxT +aqQ +bxu +bxu +bCZ +amv +qnS +ebE +fIG +arg +rAe +aGW +avu +aQh +ciU +aBf +qUL +acC +acC +aEA +ayv +gvE +aWQ +ajs +ajs +aXU +aua +aNi +xTB +awB +awB +awB +qLT +qEW +aWQ +aWQ +aWQ +dsp +wdm +nTB +afx +llT +rfP +rfP +rfP +rfP +rfP +rfP +aAO +nOb +nOb +aPZ +alI +fJp +aXG +prL +oXo +rVz +aRD +aeV +aAG +bfj +qWR +uYQ +aVk +qKM +vnD +bdg +bcY +oTw +uWr +atk +qGA +fIQ +qGA +nPu +nPu +nPu +nPu +nPu +nPu +nPu +aqK +nPu +nPu +ndE +nPu +aqK +nPu +aPB +fIQ +fIQ +iae +xRs +qtq +kDF +dnW +kDF +bdx +dnW +baB +bat +bct +aRP +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(37,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +nLx +fVU +uBR +aBe +fHB +aWQ +aWQ +aqd +ybV +rEs +awA +axj +aLo +ajP +cAH +aDm +amg +akv +akv +akv +aqV +aJl +aXy +aHK +atS +atS +aWQ +aWQ +aLr +qIA +atS +aTx +ahn +agO +cMc +aRB +oes +kiZ +sND +aHK +oes +bJQ +aLE +bHk +aqQ +bxu +bDF +arV +amv +qnS +qpC +qnS +ggD +vWP +qnS +avu +aQh +uGn +svZ +vsC +bki +bxF +aZW +aTm +aWQ +aWQ +ajs +aTv +acx +aaN +asy +bcl +rWB +awB +awB +awB +aUI +aML +rYs +aWo +aML +afx +aAA +awB +rfP +rfP +rfP +rfP +rfP +rfP +qtj +rfP +rfP +rfP +rfP +rfP +rfP +aAO +aXG +jWi +fzD +mvQ +oTw +oTw +oTw +beg +hvo +hvo +hvo +bdr +bdh +oTw +oTw +oTw +fIQ +fIQ +qGA +nPu +fIQ +nPu +fIQ +nPu +qGA +fIQ +nPu +aBb +nPu +awo +fIQ +fIQ +avw +nPu +qGA +qGA +qGA +oTw +oTw +grD +bbb +bbb +bbb +baT +baJ +bcZ +sWI +aYc +aRR +oTw +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(38,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aPJ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +eIF +iWX +cyY +aFn +aWQ +aWQ +atV +xcJ +aSP +hvc +rnS +lys +akc +sXM +aDm +anP +wRH +wRH +wRH +ahf +aJl +aXy +aPc +aRB +aRB +aWQ +aWQ +aWQ +aLr +aLr +aTx +ahn +cqT +adm +agF +rrV +xhH +aUC +aHK +aTx +uxp +heI +bHl +xfs +dAr +dAr +qzQ +bzx +qnS +aQh +qnS +oju +abY +qnS +aQh +ahV +ahV +ljT +oiR +acC +acC +jys +aht +aHi +aWQ +aWQ +bzp +aaN +anO +aGd +aIb +abw +aHF +awB +awB +awB +awB +awB +awB +awB +awB +axL +axL +rfP +rfP +qtj +rfP +bda +esk +esk +wKU +rfP +rfP +syM +rfP +qtj +rfP +aHP +nOb +thd +ary +rwI +qSm +oTw +xRs +xRs +bdv +jmo +xRs +xRs +oTw +qAE +uWr +qGA +nPu +nPu +nPu +nPu +nPu +nPu +nPu +fIQ +aWQ +aQE +axu +axu +juR +aWQ +aWQ +fIQ +fIQ +nPu +qGA +qGA +iae +oTw +oTw +xRs +wAX +xRs +oTw +oTw +oTw +oTw +oTw +oTw +oTw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(39,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajt +aDi +lRk +aWQ +nDc +duI +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +iTy +oqI +fPl +aBg +ayE +aWQ +lzj +hxu +aDv +ahR +aSP +aaH +aLo +anl +wgz +bWj +uxp +apd +xAO +ahn +aJl +amg +akv +akv +lfc +sPj +aWQ +aWQ +aLr +abS +bCs +dMC +aWH +aWH +xNb +aJl +eIM +iOt +cwe +aoh +apd +xAO +ifo +hxt +fsv +aHZ +aHZ +bzy +aGE +sjH +aAu +bxQ +ajI +ahv +bxK +ahV +aDG +adW +aGw +mlW +acC +aCZ +izv +aHi +aWQ +aWQ +aaN +anO +anO +aRl +aUc +aVq +aAA +awB +awB +awB +awB +awB +axL +awB +awB +awB +fOM +aLn +esk +moy +esk +brl +azn +azn +eBs +esk +wKU +rfP +rfP +rfP +qtj +rfP +rfP +thG +byj +rwI +qSm +oTw +beQ +hTl +bgu +bfO +bfI +beR +oTw +bet +beq +aVX +nPu +fIQ +nPu +qGA +nPu +qGA +aPz +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +fIQ +nPu +qGA +cvr +tzo +oTw +gLJ +tzo +tzo +oTw +tzo +tzo +tzo +oTw +tzo +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(40,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajK +ais +aKh +aoU +abD +mrx +cWS +tVS +juW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +atV +gQx +aLo +aQd +aPx +iWX +ipj +hAt +ahR +ayF +aaH +aLo +aLo +apG +ohS +apd +apd +apd +idF +wRH +wRH +wRH +ahf +aXy +gkk +awq +crR +aTc +aTc +upu +crR +bIF +qtl +wdE +eWd +huk +jAa +rCU +akv +akv +akv +joP +hhG +bDH +bDG +bDH +aMg +aMg +aGc +aFz +aFq +bxN +bxM +bac +aZZ +bac +bac +bac +bac +bac +cls +aYQ +aWQ +aWQ +ajs +anO +anO +aRl +atr +aVq +uKo +awB +awB +iGw +aCK +aCj +qMR +aCj +gqO +mIS +hvT +brl +mXE +azn +azn +azn +azn +azn +hrk +azn +erd +ajW +esk +esk +esk +byl +rfP +rfP +rfP +aRD +dJH +qSm +ahA +amS +blD +bdF +bfP +nPu +nPu +bey +nPu +nPu +aPz +fIQ +nPu +nPu +nPu +nPu +fIQ +nPu +nPu +eCl +aWQ +aWQ +aWQ +aWQ +awR +mBB +aWQ +aWQ +aWQ +nPu +nPu +nPu +fIQ +fIQ +fIQ +fIQ +fIQ +nPu +qGA +nPu +qGA +nPu +kEK +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(41,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aJd +aJd +alD +ftv +ajK +azx +aPK +aPK +afj +abD +abD +abD +adl +adl +xVt +pRD +aWQ +aWQ +aWQ +atV +abq +aLo +tZF +neD +oqP +ipj +pjg +aSP +aSP +aaH +lhr +aWQ +ajs +ajs +aWQ +aWQ +aDQ +bCu +bMd +spe +aMc +ahn +aXy +vfQ +dEk +crR +npx +aIG +lkn +crR +bIF +ubj +eyT +eWd +eIM +oBu +xhH +ayc +ayc +iaR +ure +iES +axw +aIj +aIj +arT +arT +aaT +pAT +sLC +bxO +aZT +bxL +aaf +aaf +aaf +aZT +aaf +lOy +aYW +aGt +aPO +aWQ +ajs +ajs +lEz +nmF +byq +aoD +awB +axL +awB +aNC +uFL +aXU +aXU +avh +aaN +asy +aIb +syb +ako +azn +azn +azn +aDn +azn +azn +azn +azn +aAx +azn +azn +azn +ajW +wKU +rfP +aSy +aRD +rwI +qSm +aJs +aME +bdE +bgx +nPu +awo +awo +aiY +aqK +aJs +nPu +fIQ +nPu +qGA +qGA +nPu +nPu +fIQ +aaw +nPu +eCl +sBG +aMj +fIQ +nPu +nPu +fIQ +nPu +nPu +fIQ +avw +nPu +nPu +amx +fIQ +qGA +nPu +qGA +nPu +qGA +nPu +qGA +nPu +feu +agS +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(42,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aJd +aZx +xWn +aDf +aoT +jRO +abD +liG +abD +imO +abD +aHs +acz +adl +adl +abD +abD +acq +aWQ +aWQ +aWQ +diC +abq +aLo +aLo +tQv +pNU +pjg +aSP +aQb +tPs +abI +abO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +mtJ +aLr +aTx +ahn +rxT +crR +crR +crR +nIf +sMy +aLG +crR +bxo +bxo +bxp +eWd +mHL +nwX +gxi +rkJ +wRH +wRH +rgo +hhG +bDH +bDH +bDG +aHo +aMg +aGc +vzb +fcw +bxP +bad +bad +azu +bad +bad +aSA +aSA +aTn +aYW +aZW +arG +arG +aNT +ane +aTs +aAA +awB +awB +awB +awB +iGw +ach +aXU +aXU +aUc +aaN +anO +aWQ +aWQ +azI +tZY +awb +azn +azn +azn +azn +aWQ +aWQ +juu +sZr +hiI +azn +azn +azn +suy +esk +oXZ +mvQ +rwI +qSm +qGA +nPu +aiY +nPu +ayn +axi +aQE +axu +juR +ayn +axi +nPu +fIQ +nPu +fIQ +qGA +nPu +nPu +nPu +nPu +akr +nPu +qGA +nPu +nPu +nPu +nPu +qGA +qGA +nPu +nPu +nPu +nPu +fIQ +nPu +nPu +qGA +nPu +nPu +nPu +nPu +qGA +qGA +teX +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(43,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajK +nqV +ajK +aoU +abD +abD +oUd +abD +abD +abD +abD +abD +acz +aTh +cLB +aPK +aPd +gVU +aWQ +aWQ +aWQ +aBk +abq +aLo +ahU +pNU +pjg +aSP +aBL +cvh +aMd +wPq +anZ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +atS +aTx +ahn +aXy +hWD +crR +xQY +cpm +cUh +udT +azN +tfE +bxo +bxp +jTT +aWH +wQy +agw +crR +rcC +xYy +lAD +bFN +auR +auR +auR +bzz +aSn +aFW +aAu +fcw +aYW +mZQ +ayv +ouS +tFJ +ayv +ayv +apU +aEl +aYW +aab +aJL +aJL +axo +aYJ +aTs +awB +bhb +awB +ptp +aCj +ach +azK +aXU +aNi +aaN +anO +aWQ +aWQ +aWQ +aWQ +dDq +qDi +azn +azn +azn +adK +aWQ +aWQ +aWQ +aKH +kAG +qij +azn +ueh +azn +azn +azn +ary +rwI +qSm +nPu +nPu +bqW +ady +bdE +aQE +bjA +bjA +bjA +juR +ksR +nPu +nPu +nPu +nPu +fIQ +fIQ +nPu +qGA +nPu +nPu +nPu +aqK +nPu +qGA +nPu +nPu +fIQ +qGA +nPu +nPu +gPd +fIQ +nPu +fIQ +aXA +nPu +nPu +fIQ +nPu +nPu +nPu +fIQ +qGA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(44,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajK +aoT +awN +amW +amW +kWf +amW +amW +amW +ahs +ahs +ahs +ahs +ahs +ahs +sZH +fkm +aWQ +aWQ +aWQ +aWQ +aUe +aLo +aLo +pNU +pjg +axY +aaH +aCh +aDr +aMd +sPW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aNV +aTx +ahn +aXy +aHK +crR +aaW +wAI +kCK +sDM +mUn +crR +crR +crR +aTc +ukZ +pnH +aTc +bxo +lfA +uxp +bHm +tnp +ycg +bDI +bAq +bzA +aip +rWS +aip +rml +azl +aip +rWS +ouS +ouS +arG +arG +afh +aCI +aYW +acC +qyG +acC +aXs +aEy +mgx +axL +awB +gfm +xhY +ajv +aXU +aXU +aXU +aaN +anO +aWQ +aWQ +aWQ +aWQ +aWQ +qdX +qDi +azn +aAx +azn +epD +rWz +aWQ +aWQ +aWQ +aSx +dBl +lKN +azn +azn +juu +aWQ +aWQ +ajs +qSm +nPu +nPu +brd +bdF +fIQ +tUV +aWQ +aWQ +aWQ +sBG +aPB +fIQ +qGA +fIQ +aiZ +fWe +fWe +fWe +nPu +nPu +nPu +uEs +nPu +uEs +nPu +nPu +aCQ +fWe +fWe +nPu +uEs +fWe +fWe +nPu +uEs +uEs +nPu +uEs +uEs +uEs +ayn +aeC +qGA +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(45,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +fJm +aoU +auW +abD +abD +abD +abD +lHt +pBy +ajK +ajK +ajK +ajK +ajK +oXT +aBh +fyS +aWQ +aWQ +aWQ +aWQ +bww +aLo +aLo +ipj +hAt +aSP +aaH +atF +aDr +aDr +afY +aSX +aWQ +aWQ +aWQ +aWQ +aWQ +vJO +aTx +ahn +aXy +arS +aTc +aEQ +fXc +aIG +aCB +jpC +crR +wVP +ecj +sMy +svx +whD +atY +bxo +bxo +crR +bHn +aqQ +bEB +bxu +bAr +amv +aip +cQm +aip +wNd +atU +aip +uCe +aip +alw +arG +arG +afh +aCI +aYW +acC +acC +acC +aXs +aYJ +arP +iWZ +dRD +kQs +aXU +aXU +aXU +aXU +aUc +aWA +aWQ +aWQ +aWQ +aWQ +aWQ +atK +kNY +qDi +azn +pel +azn +arX +cWj +iIT +aWQ +aWQ +aWQ +aRy +wwB +pNB +azn +jcu +brN +aWQ +aWQ +aWQ +qGA +aHq +aJs +bdF +bfY +aWQ +aWQ +aWQ +ajs +vNc +awo +fIQ +nPu +nPu +nPu +cvr +tzo +fKy +tzo +tzo +tzo +tzo +tzo +fKy +fKy +fKy +tzo +tzo +fKy +fKy +fKy +fKy +tzo +tzo +tzo +tzo +tzo +tzo +fKy +fKy +oOq +nPu +fIQ +aXA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(46,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ais +aoU +auW +abD +abD +lHt +mEE +akd +ajK +ajK +ajK +ajK +ajK +ajK +ajK +aTK +aoU +ntp +aWQ +aWQ +aWQ +alx +aLo +aLo +lKv +dBf +aWQ +anV +amM +atF +aDr +aZM +gyD +stV +aWQ +aWQ +ajs +ajs +aLr +aTx +ahn +aXy +aHK +aTc +aEQ +uCw +aIG +kfb +acE +aTc +kCK +adD +xXi +dVi +gdP +vtU +aIG +aTc +abb +bHp +aqQ +bEC +bBa +bAs +amv +aip +aIU +are +vnL +aRh +ntg +azo +aip +aDW +abm +awJ +afh +aCI +aYW +aWQ +dIp +ayv +aNk +kgJ +tNj +arQ +ane +xAp +aXU +aXU +aXU +xAp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +akK +jQm +muj +azn +azn +azn +adX +aSx +agv +aWQ +aWQ +aWQ +uin +oXo +idr +rxo +jcu +ycu +aWQ +ayq +aWQ +nPu +nPu +nPu +nPu +bdE +bfJ +aWQ +aWQ +ajs +dhG +nPu +qGA +nPu +fIQ +gdR +uWr +axq +asL +aFx +aHC +aik +ckf +oKV +xlg +uUm +asL +aFx +aHC +aik +asL +aFx +xlg +aik +ckf +oKV +xlg +uUm +ckf +aFx +gIT +uWr +qGA +nPu +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(47,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +adl +abD +oUd +abD +pBy +ajK +ajK +ajK +aNI +ajK +akd +aMo +ajK +ajK +aem +aTK +fPd +abD +aWQ +wtz +wtz +aQw +iyV +aLo +aLo +akC +aWQ +aWQ +anV +abt +alZ +aLo +aLo +asH +abO +pRr +abO +aHI +aEv +aTx +ahn +rxT +crR +crR +dgg +vrb +eVQ +fBt +cQt +ngu +euW +ixI +hSN +qVO +lIH +awa +lkG +aTc +xXO +bHp +yar +bED +bDJ +bAj +amv +afP +hEa +jFL +eoR +abP +tMc +uCS +rWS +aDW +aHi +abm +afh +aCI +aYW +aWQ +aWQ +hfZ +edY +sjS +arG +aRK +akt +xAp +xAp +xAp +xAp +xAp +xAp +xAp +xAp +xAp +aWQ +aWQ +aGd +aDp +azn +azn +azn +azn +azn +aPV +aSx +aWQ +aWQ +aWQ +aWQ +uin +jWi +mbW +azn +azn +aWQ +aWQ +ayq +aWQ +qGA +nPu +nPu +bgz +nPu +aXA +beS +aWQ +ajs +bcF +nPu +fIQ +qGA +nPu +nPu +uWr +afZ +kGP +aXN +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aXN +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aXN +kGP +kGP +dYN +iae +nPu +fIQ +fIQ +aeP +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(48,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +adl +adl +acz +auW +aiU +ajK +ajK +ajK +ajK +ajK +ajK +ajK +akd +abr +ajK +ajK +aTK +ajK +aQq +wtz +wtz +doM +aUe +aLo +aLo +aTf +tXU +ahR +aWQ +aWQ +aSP +anV +nFR +aKJ +aKJ +agW +aLo +bCv +eHb +azO +mrR +ahn +aXy +aHK +aTc +ayL +aIG +wML +ntI +eoh +efF +ayL +aEQ +aey +lSZ +dDJ +acE +aeA +crR +apd +bHq +aqQ +bxu +bDK +bAj +amv +afP +mig +wMo +sVu +nYX +nhf +aUj +rWS +aDW +aHi +axh +aTN +aCI +aYW +rYe +aWQ +aWQ +vrT +aJL +aJL +aVB +xAp +xAp +bby +pNK +eSx +tJa +pNK +vKb +kyo +xAp +xAp +xAp +aGd +axz +aXU +azn +azn +azn +azn +vvo +aWQ +aWQ +aWQ +aWQ +djA +jWi +jYG +jcu +azn +iqp +ajA +aWQ +rEo +qSm +nPu +qGA +bwL +aBb +bga +fIQ +beT +aoQ +fIQ +nPu +fIQ +qGA +qGA +nPu +nPu +uWr +aQH +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +apE +iae +vNn +nPu +tVf +cyW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(49,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +adl +ntp +abD +auW +pBy +ajK +ajK +akd +ajK +ajK +ajK +aJO +atD +ajK +ajK +ajK +aTK +ajK +aoU +wtz +bwA +bwz +aJS +abq +aLo +pNU +hAt +ybz +ahR +aWQ +aWQ +aSP +aSP +aSP +ahR +aaH +iVs +uMV +mgi +atI +aix +ahn +aXy +kcg +aTc +aoB +aZI +kCK +hfp +acE +awU +aEQ +gNf +cZw +abG +ebR +adD +aeA +aTc +oVH +bHp +bFO +bxu +bxu +bAm +amv +aip +aGg +wMo +bue +tLr +lAZ +hYy +aip +aDW +aHi +agG +aYq +aEl +aEV +bac +bac +bac +bac +bac +bac +eUx +ipW +aAU +aRn +tDr +aOl +aTF +gqP +ffp +fjD +abc +ipW +aVQ +aRl +aiB +aXU +azn +azn +rYm +azn +azn +aWQ +aWQ +aWQ +nTD +bsg +wiJ +azn +azn +azn +veu +idr +ary +rwI +qSm +nPu +nPu +bdF +bdF +bdE +nPu +nPu +nPu +nPu +qGA +nPu +nPu +nPu +agl +gdR +uWr +azV +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aLu +iae +vNn +nPu +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(50,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +adl +soq +abD +aEI +ajK +ais +ajK +duI +ajK +ajK +alD +aJO +aJO +ajK +ajK +ajK +aTK +ajK +wNU +qlS +bwC +bwA +pna +alx +bcj +fOV +mQG +adk +ano +ano +rjW +alQ +vEJ +ezf +ano +vun +tuM +bis +aDm +amg +akv +aqV +eHL +aWQ +crR +jcR +qkI +kCK +jqT +acE +aTc +aIG +tUH +apW +aLx +adD +xXi +ahX +aTc +bIH +bHp +aqQ +bEE +bxu +bAj +amv +aip +aGo +fwm +tLr +aFh +aEM +elJ +aip +aDW +agG +aPO +afh +jWb +aYa +aYa +aYa +dKA +ojI +aaf +aaf +ylx +aBD +aTY +dCh +amC +uch +lBG +aNe +ffp +fjD +fjD +ipW +aiJ +aHu +aNR +aXU +lKN +azn +azn +byn +aPZ +eCq +nOb +nOb +thd +azn +kQA +nOb +nOb +nOb +nOb +nOb +byj +rwI +qSm +nPu +qGA +bem +bdF +bgc +nPu +awo +nPu +aBb +aUg +nPu +nPu +qGA +fIQ +gdR +uWr +aBj +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aXc +iae +qOg +nPu +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(51,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +adl +adl +aWQ +aWQ +alD +aoU +abD +abD +abD +aEI +ajK +qKa +ajK +ajK +ajK +ajK +adl +adl +adl +aWQ +aJd +ajK +aTK +ajK +bcs +wNU +jJi +beC +aWb +iCU +alx +abq +cgN +qbw +akE +akE +xjz +mjl +mjl +ave +akE +akE +akE +uTF +aDm +anP +wRH +wRH +awy +aWQ +crR +aVF +thx +kCK +aDC +aeA +crR +rEW +buZ +aVl +buT +uUu +xNJ +crR +crR +crR +bHh +aqQ +bEF +bxu +bDa +amv +aip +eht +bwE +nYX +xow +njx +wwS +ouS +clm +anI +arG +aYK +acC +acC +aEA +ayv +apU +auQ +oUz +bad +adi +ipW +pvm +acG +aDl +avZ +jOo +hFo +aGF +aZY +iVj +ipW +amO +aXU +amZ +aaN +aHV +wwB +qhh +nUx +gkN +uLB +alF +pJB +loA +gnO +nUx +alF +kEX +aCa +uLB +uLB +aLe +ezH +gpP +gpP +gpP +gpP +bgB +gpP +gpP +uDL +uDL +uDL +gpP +gpP +nPu +nPu +fIQ +mAm +iae +afZ +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +apT +iae +nPu +fIQ +aIq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(52,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +avA +jBJ +ajK +ajK +ajK +aoU +abD +abD +abD +aEI +ajK +ajK +nDc +lti +aHs +adl +adl +aWQ +aWQ +aWQ +pMK +aJd +gcc +ajK +aMo +aJO +aJO +bwB +aZB +bwv +afN +akU +abq +aLo +ajj +aLo +aQd +aJw +aXv +ahy +aPo +aLo +aLo +anl +wga +cwH +hzZ +gQt +aWQ +aWQ +crR +apA +vET +aIG +rtO +aeA +crR +lZI +crR +crR +crR +crR +crR +crR +qQa +vTu +bxT +jDt +bEG +bAv +bAj +amv +aip +aip +aFF +xxJ +dxF +dDN +aip +ouS +ouS +arG +aBf +aJe +acC +acC +azc +sII +afh +mSM +iXE +usj +xAp +xAp +hSF +acG +axC +ajx +mkb +tDr +uKw +skk +fAJ +xAp +xAp +aiB +aaN +anO +anO +oXo +xoc +bTo +vdn +aSW +asP +aFr +xXB +aWy +aWy +aXC +aKF +bgo +bgg +aSW +asP +aTk +fZM +fZM +fZM +fZM +qeK +kwK +aDu +qeK +fZM +atq +qeK +aid +qnV +fIQ +nPu +mAm +iae +aQH +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +qWb +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +apE +iae +nPu +jhw +aQE +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(53,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +adl +adl +adl +ajK +ajK +usx +ajK +ajK +ajK +aoU +wKS +abD +abD +adq +aDf +aJO +ajK +atD +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gcc +aJd +ajK +ajK +ajK +ajK +rrW +ayd +dxD +aCL +alx +abq +aLo +aLo +agV +vMg +wpo +aqi +nCw +ssh +aLo +aLo +kDT +hzZ +iYk +aWQ +aWQ +crR +crR +uzS +pnj +aZa +cWd +hHK +crR +crR +crR +bLO +bLH +bIF +bLn +crR +isR +bIG +bxY +aqQ +bxu +bDL +bAj +anT +bCz +aip +aFI +cmp +rKd +aip +aip +aJr +asm +nzu +afh +acC +qyG +gdj +aZW +aoc +afh +aAS +aAs +hnj +aRK +ipW +dxX +acG +axC +aOl +aOl +aTF +uKw +aOl +hJk +ipW +amO +aXU +aZr +anO +anO +jWi +aSI +nhi +bgH +wFZ +bgD +avP +uJo +aPA +ayC +oQt +dzd +avP +avP +avP +xvA +aml +yaV +yaV +yaV +gHI +gHI +bdZ +yaV +yaV +qGA +yaV +fZM +qeK +qnV +fIQ +fIQ +dvZ +iae +azV +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aLu +uWr +nPu +aBb +tUV +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(54,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +hbT +ybM +ajK +ajK +ajK +ajK +ajK +ajK +ajY +aIK +amW +amW +amW +bNU +ajK +cBs +adl +adl +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gcc +aJd +oGt +ajK +aNI +ajK +aoU +awE +eGQ +aGI +aQw +alx +abq +aLo +pXd +amo +aDP +aDP +aqi +ahm +aLo +jew +ajs +ajs +aWQ +aWQ +aWQ +aWQ +crR +aIG +mWe +fdH +vsk +mUD +pAW +crR +crR +crR +bIG +bIG +bIG +bKO +dsy +qZZ +bHq +aqQ +bEH +bxu +bAj +apK +aks +afP +agh +aVS +bub +rWS +aeg +asm +gaP +aBf +aJe +acC +acC +aEA +ajd +bjU +afh +auQ +kKG +aZW +aRK +ipW +aTy +upT +aPL +aBE +unW +bsz +tqL +dPn +pvm +ipW +amO +aug +aWA +aEL +aRl +aHu +eBs +aID +whK +aVN +eTD +eHu +anu +aCr +akW +rxz +nUm +pGd +nUm +aen +aDM +rwI +bwU +nPu +aqK +aPz +bdF +nPu +bfK +bej +bez +beu +otF +qeK +qnV +nPu +nPu +mAm +iae +aBj +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aXc +uWr +qGA +aaw +tUV +bjA +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(55,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acX +jJn +qTF +jOK +inE +ajK +ajK +aIn +ajK +yaK +aIp +abD +imO +abD +abD +auW +bSe +ajK +adl +adl +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ilR +gcc +aJd +lfS +aJd +ajK +bcs +bwx +acz +aWQ +aWQ +aWQ +fmu +aLl +aLo +ajj +aYF +arc +aWQ +aWQ +aDY +agW +aEK +axN +aWQ +aWQ +aWQ +aWQ +aWQ +crR +dUm +bmY +idy +cYa +aLG +aIG +rqp +eoJ +kUd +apd +apd +apd +bKP +xZj +apd +bBM +aqQ +bEI +bxu +bAj +apK +aks +afP +buz +aRg +aGK +rWS +baa +arG +aBf +aJe +acC +acC +qyG +aZb +aTm +aWQ +afh +mSM +cgU +qEd +aRK +ipW +agk +ahG +ttQ +aSJ +mzr +mzr +mzr +lPh +atN +ipW +afH +aXU +aKv +axJ +mCq +aXU +pqS +acu +uLB +alt +hGi +kDO +tuq +aWQ +aWQ +xUp +aIc +oGX +oGX +arr +aDM +rwI +qSm +nPu +bwQ +aiZ +fWe +bgd +fWe +bfc +beA +bev +otF +qeK +aAh +fIQ +nPu +mAm +iae +afZ +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +apT +uWr +nPu +iIy +tUV +bjA +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(56,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +utd +pUe +aei +aSd +byd +byd +aSd +aiS +aJI +ajK +ajK +ajK +ajK +aWM +abD +aWQ +aWQ +aWQ +auH +aIl +aIn +pFD +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aoN +aJd +gcc +aJd +aJd +aoN +aNI +ajK +aJO +rrW +acz +aWQ +aWQ +aUe +aLl +aLo +ajo +jLL +aWQ +aWQ +aWQ +ahR +aaH +sPW +aUe +aWQ +aWQ +aWQ +aWQ +aWQ +crR +lVi +rhB +rUO +cYa +iEf +aIG +htW +aTc +kUd +apl +abe +agg +kzi +bJR +bBQ +bBN +mCc +bEJ +bDM +bAj +bzn +byR +afP +fds +fsb +xcf +rWS +awV +aoR +afh +bxF +acC +acC +aEA +apr +aWQ +aWQ +avv +aAS +aAs +aur +xAp +xAp +xAp +aCd +aHa +dyw +eIi +aRu +ggv +lLs +xAp +xAp +xAp +xQm +jtn +vNy +aXU +aXU +aMa +aVZ +wUG +gBZ +aPE +tuq +aWQ +aWQ +aWQ +jua +qTZ +oGX +lhk +uEV +aDM +rwI +qSm +qGA +nPu +mAm +bgE +bge +bds +aup +beJ +bew +otF +qeK +qnV +nPu +nPu +nPu +iae +aQH +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +apE +uWr +qGA +ycQ +bbr +bjA +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(57,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +mnQ +aei +aei +aei +aei +aei +byd +pUi +aUV +aUV +aUV +aUV +fDp +aWQ +aWQ +aWQ +aWQ +aeh +aBF +aUV +aUV +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ahI +aQu +axA +aHY +aHY +aTR +aTR +aTR +alY +aBG +aWQ +aWQ +aWQ +aLl +aLo +aLo +aPS +aXB +aWQ +aWQ +aqi +xTO +aVO +rCc +xRj +aWQ +aWQ +aWQ +aWQ +crR +aOw +aUB +aUB +cYa +awk +kCK +efF +eoJ +kUd +aHK +dfW +xDL +bJT +njX +dbZ +bHr +aNQ +bEK +bAu +bDb +amv +aip +aip +aBA +fsb +afg +ouS +ouS +baa +aTN +acC +acC +bkf +aZW +aWQ +aWQ +aWQ +aTN +aCI +aYW +aur +agA +lav +xAp +ipW +afm +ipW +xAp +xAp +xAp +xAp +xAp +ane +aPU +aXU +adT +rEN +aNR +aiB +tbz +dwl +asP +bgF +nmt +tuq +aWQ +aWQ +tuq +dKm +klA +nRy +puG +aZg +hOu +dJH +qSm +nPu +nPu +abU +bec +bdL +aff +aJJ +yhE +fIQ +otF +qeK +qnV +nPu +fIQ +gdR +iae +azV +kGP +aXN +kGP +kGP +kGP +ibP +kGP +kGP +kGP +kGP +aXN +kGP +kGP +kGP +kGP +kGP +kGP +kGP +kGP +aXN +kGP +kGP +aLu +iae +qOg +nPu +izU +bbr +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(58,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aei +aei +byd +byd +byd +piW +aUV +scM +aFp +aUV +agy +aUM +aWQ +aWQ +aWQ +aWQ +aWQ +lvK +aMh +aUV +ciy +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +jvP +pOc +aBw +aBw +aBw +axO +axO +aHc +aZP +aWQ +aWQ +aWQ +aWQ +aLo +aLo +aLo +aPS +amF +aWQ +aDP +pKE +ami +sPW +qWS +aWQ +aWQ +aWQ +crR +crR +exE +kdy +kCK +aRV +tDh +dKU +crR +crR +crR +fTW +atS +aLr +bJU +qMh +aqQ +bHs +bFP +bEL +bja +bDc +aJp +bCz +aip +wNd +atU +aip +ouS +aJr +asm +afh +acC +acC +acC +aWQ +aWQ +aWQ +agG +afh +aCI +ajI +aZW +njp +aju +xAp +arq +wqx +hAm +aVB +aju +aju +aju +xAp +aYJ +kBu +byp +aXU +atr +axn +aHV +xbZ +apB +jxc +bgF +aAt +aWQ +aWQ +aWQ +wuZ +uHR +aSQ +aCX +kRT +kRT +aaY +rwI +qSm +nPu +nPu +aMD +ttf +ttf +bfL +sch +aac +nPu +ifz +fZM +qnV +fIQ +nPu +mAm +iae +gIT +sEB +oKc +afq +aRF +amk +oKc +kCf +efQ +amk +aum +afq +aRF +amk +aum +afq +aRF +amk +aum +afq +aRF +amk +aum +axq +iae +nPu +awo +jhw +ptj +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(59,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +anF +aOe +fZS +ljs +aUV +aUV +agy +aYL +aUM +aWQ +aWQ +aWQ +aWQ +aWQ +uaf +tRv +aUV +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aHY +aHY +aJa +aJa +ayK +ayK +jjm +aOH +aBG +aWQ +aWQ +aWQ +acn +aLo +aLo +aLo +axD +ajr +uKP +auB +lYs +gcY +aUe +aWQ +aWQ +aWQ +aWQ +crR +crR +aTc +aIQ +dvS +aTc +crR +crR +crR +vte +azO +aEv +wCz +bxS +oIQ +bII +bHt +soe +bEM +aad +aVT +aWu +aks +aXu +tOq +arE +aQX +aju +asm +aBf +aJe +acC +qyG +acC +aWQ +aWQ +agG +awJ +lIM +aEl +ajI +awP +vrT +aJL +aPe +mLO +cqh +ajI +awP +aJL +aJL +aJe +aXs +aYJ +avz +aML +aML +wGO +qiZ +aEL +pgk +apB +sNE +lYa +gjL +mpS +aWQ +tuq +dKm +aYf +mYe +kRT +kRT +cfH +aaY +ajs +aWQ +dvZ +bwR +bdF +bga +nPu +nPu +nPu +aqK +nPu +ifz +fZM +atH +fIQ +fIQ +mAm +oOq +tzo +tzo +fKy +fKy +fKy +fKy +fKy +fKy +fKy +fKy +fKy +tzo +tzo +tzo +tzo +tzo +tzo +tzo +tzo +tzo +tzo +tzo +tzo +tzo +cvr +vNn +aDK +aQE +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(60,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +llx +asd +lHf +agU +agU +emd +aVG +akj +aWQ +aWQ +aWQ +aWQ +aWQ +aQQ +auw +aFu +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bQM +beY +aHY +aTR +aZy +anR +aTR +aWQ +aWQ +aWQ +aWQ +aWQ +aLo +aLo +aBg +aAl +amo +lhN +xXq +ahy +agW +asH +aWQ +aWQ +aWQ +aWQ +dTo +gQc +bBu +kws +xlP +bDE +jah +lSZ +crR +crR +tVy +azO +atc +bxS +nqF +bBS +bHu +ybE +rlF +apK +wmO +wmO +aks +yhN +azp +ajI +awP +rYb +cnH +aJe +qyG +acC +acC +acC +awP +aJL +aJL +aJL +aVI +aCI +aEV +bac +bac +bac +bac +agQ +eoO +cUi +bac +bac +dGZ +bac +lrJ +auE +aBO +qsv +awB +aUI +pSh +aIb +aBY +aHd +uEg +ccj +gjL +akW +rAP +dKm +wvA +mYe +kRT +kRT +kRT +tel +bfR +ayq +aWQ +oTw +bwM +fKy +bhh +oTw +xpQ +cvr +nPu +nPu +ifz +qeK +qnV +nPu +fIQ +aMD +ttf +nPu +nPu +nPu +ttf +ttf +sch +dvZ +nPu +nPu +ttf +ttf +nPu +ttf +ttf +nPu +nPu +ttf +nPu +nPu +nPu +ttf +ttf +nPu +nPu +sch +iGv +aBb +xXJ +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(61,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aav +arO +aUV +aUV +aUV +abN +gKN +aYL +aWQ +aWQ +aWQ +aWQ +aWQ +aYL +aYL +aOS +aUV +akX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aHY +aGY +aKR +amf +axO +gAn +qrb +aoO +aZP +aWQ +aWQ +aWQ +aWQ +iqj +aLo +aqB +agf +ayx +alQ +aPx +aaH +sPW +aUT +aWQ +aWQ +aWQ +eZH +aIz +gGI +xXi +gme +ahd +bak +acE +ikd +crR +crR +crR +aHK +bxS +kgD +bIJ +bHv +rNy +bCF +apK +wmO +wmO +aks +yhN +otV +bQa +amY +aFg +aFg +amY +amY +aFg +aFg +aFg +aFg +amY +amY +amY +aFg +iKy +aaf +aaf +aZT +wFv +wFv +aaf +mKO +aWF +aWF +jik +jik +aWF +jik +aJc +amw +ajw +bhb +awB +aUI +xTI +aro +aCU +aOL +xIz +oqK +oGX +qTZ +aws +mYe +cfH +kRT +xlF +nUm +gxw +aWQ +ayq +aWQ +oTw +xRs +bdv +jmo +oTw +aQB +iae +nPu +aJs +nPu +fZM +nRI +qGA +nPu +bem +fIQ +nPu +nPu +nPu +aLY +nPu +fIQ +nPu +nPu +qGA +aqK +fIQ +nPu +qGA +fIQ +nPu +aCQ +fIQ +fIQ +nPu +qGA +kSy +nPu +nPu +nPu +bcL +bcB +nPu +tUV +bjA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(62,1,1) = {" +aay +aWQ +aWQ +aWQ +ajO +ajO +aDS +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +wUC +aUV +aCf +aUV +agy +auF +aYL +aWQ +aWQ +aWQ +aWQ +cED +aIW +veV +aOS +aUV +aUV +amJ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aHY +aJa +ayK +aTR +anR +aTR +aTR +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +fci +hmN +aPS +aDE +ahR +aSP +aaH +asH +aNW +aWQ +aWQ +aWQ +dTo +aXa +aGB +vtw +aVl +bve +ahd +mDJ +kCK +jeB +aTc +oVH +aHK +bxS +bJV +aqQ +bHw +aqQ +bna +apK +wmO +wmO +aks +yhN +azp +bae +aSA +bad +bad +bad +aSA +aSA +bad +bad +aSA +aSA +aSA +bad +bad +bad +bad +bad +bad +aSA +oHr +lLP +wbL +fMK +bad +bad +bad +bad +ygc +eqT +oVe +tSg +awB +awB +awB +aUI +kcR +aYw +qYN +uap +nwa +hIn +nRy +mYe +uuZ +kRT +aiC +aCr +aNt +aFX +aaY +aWQ +oTw +oTw +beU +beB +beg +oTw +oTw +oTw +nPu +nPu +ifz +fZM +qnV +qQH +qGA +nPu +nPu +nPu +nPu +fIQ +fIQ +nPu +fIQ +nPu +nPu +nPu +nPu +nPu +nPu +nPu +agT +qGA +nPu +fIQ +nPu +fIQ +nPu +eHa +nPu +bdt +bdi +bcM +kAD +awo +eCl +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(63,1,1) = {" +aay +aWQ +ajO +aWQ +ajO +ajO +ajO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gTM +aKo +aUV +aUV +aaK +agy +wfH +aUM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aYL +bpY +aOS +aUV +aaU +aZz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aHY +rzH +aTR +anR +aTR +aZy +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +xiW +aiX +aQd +aSP +aSP +aaH +aLo +khI +aWQ +aWQ +crR +crR +dXp +gNf +aVl +sMy +cdD +reo +bam +kCK +kHn +aTc +apd +aHK +bxS +nqF +bIL +bHx +deS +lfh +apK +wmO +wmO +aks +bro +rml +jzx +aEA +ayv +ayv +kbU +ayv +ayv +jvg +ayv +ayv +ayv +aOG +apU +acC +acC +aEA +ayv +ayv +aOG +apU +mLO +sNs +aYW +vka +ayv +ayv +apU +aDh +ebV +vet +aOK +pUT +aqt +aJY +aJY +aJY +aCU +apm +apy +odd +puG +mYe +kRT +cfH +kRT +aAt +tuq +jua +kla +aaY +aiG +aAG +bfk +oJd +beD +lEt +bdM +xRs +iae +nPu +nPu +otF +fZM +fZM +jDV +apY +uDL +uDL +qXh +lzT +uDL +uDL +uDL +gpP +gpP +qGA +qGA +gpP +gpP +gpP +gpP +uDL +uDL +uDL +uDL +gpP +nPu +qGA +bdH +baU +baK +icH +bau +dvZ +nPu +ksR +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(64,1,1) = {" +aay +aVv +ajO +xns +ajO +ajO +ajO +ajO +aWQ +aWQ +tlk +ajO +aWQ +aWQ +ajO +aZh +nky +kLo +asd +aUV +aet +aYL +aUM +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ftP +eiL +aUV +aZz +aZz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +nLu +aYv +aQv +aTR +anR +aTR +aeL +xYY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ipn +olM +aPS +aDE +ahR +anV +aGU +aLo +qvy +aWQ +aWQ +crR +ivx +gNf +qjp +aUn +bvf +adD +acE +aIG +crR +crR +crR +aHK +bxS +nqF +aqQ +bHy +aqQ +bEN +afk +bzc +bzJ +byR +tQt +qqm +blC +tQt +anI +tQt +pGO +pGO +pGO +acg +anI +itx +aBf +aJL +aJe +jvp +acC +aZd +acl +kcJ +iEm +mwB +aWC +cqh +azl +mwB +iEm +iEm +oWn +mwB +ebV +aru +seR +aNA +aJY +aJY +aJY +aqt +aty +xgS +aVb +kRT +kRT +kRT +kRT +kRT +kRT +avL +nYJ +wuZ +sjD +aaY +aiG +aAG +beN +beV +vIL +sZb +bdN +xRs +iae +nPu +axE +otF +fZM +fZM +qeK +qeK +kwK +qeK +kwK +qeK +qeK +qeK +aDu +qeK +qeK +fZM +qeK +bef +kwK +qeK +qeK +kwK +qeK +qeK +dvZ +fZM +qeK +nPu +mAm +bdD +bdu +baC +bav +vNn +aPz +lwZ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(65,1,1) = {" +aay +aVv +ajO +ajO +ajO +ajO +ajO +azj +pqy +vwb +vwb +auX +kcn +qKZ +nmJ +bye +rhn +ljs +aTd +aUV +mcl +eHH +thR +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aud +aYg +aMh +akY +adv +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aeO +aTR +anR +qrb +aaD +aWQ +hBg +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aiX +aQd +aSP +aSP +amL +aLo +aLo +aWQ +aWQ +crR +xxa +pwR +aVl +aVl +aKn +aVl +all +crR +crR +bLI +mtW +amX +bxS +nqF +bIM +bxu +bFQ +iQr +bDN +bAx +amv +tQt +tQt +asa +adu +tQt +tQt +tQt +bkK +bkB +rct +acg +acg +arG +afh +thi +gdj +nLS +ayk +arm +qEd +aRK +lav +mwB +bEQ +eqp +bEQ +mwB +mwB +mwB +mwB +mwB +hDj +aru +seR +auK +aIo +pUT +aJY +aJY +krE +jDE +aCU +kRT +cfH +kRT +kRT +kRT +kRT +asq +nYJ +wuZ +sjD +aaY +aiG +aAG +beN +bwS +tTc +bhi +bdO +xRs +iae +nPu +fIQ +rOJ +yaV +yaV +yaV +yaV +gHI +gHI +bRB +yaV +qGA +yaV +yaV +gHI +gHI +fZM +qeK +gHI +gHI +aKG +yaV +yaV +nPu +yaV +bdZ +dvZ +gHI +yaV +dvZ +baV +bdw +baD +baw +bcI +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(66,1,1) = {" +aay +aVv +ajO +ajO +ajO +ajO +ajO +aSg +auf +abE +agc +aUu +lep +ajO +ajO +byf +asd +hDJ +qfq +aUV +aet +auF +ajz +ajz +aWQ +aWQ +aWQ +aWQ +ajz +ajz +ajz +iWM +ajH +aCp +akY +ajz +ajz +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aNG +rUh +aaD +anR +aTR +aTR +aWQ +tGB +aWQ +aEx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQd +aSP +aSP +anV +whB +aKa +aLo +ajj +crR +uqR +hwr +crR +rFZ +dcE +crR +crR +crR +hqY +apl +amX +aLr +bxS +pWi +aqQ +bHz +bFR +bEO +bDO +bCF +amv +tQt +blX +bgj +blE +mjr +blh +mSF +mSF +mSF +aGD +hWG +acg +bkg +afh +gmX +ayh +bIw +aAz +ajV +aZW +mwB +mwB +mwB +vuC +aSU +aZc +bnU +iMH +xtW +fKl +mwB +mwB +atZ +qHw +seR +ubg +auK +aRS +anN +aHd +cDP +aCU +aNx +nUm +vpn +nZT +nUm +aen +aEF +rAP +dKm +kla +aaY +oTw +oTw +bfl +beW +beG +bhp +mWA +oTw +oTw +aJs +nPu +nPu +aMM +nPu +fIQ +qev +fIQ +qev +nPu +fIQ +nPu +nPu +fIQ +nPu +nPu +sUJ +qnV +fIQ +fIQ +nPu +aXA +fIQ +nPu +nPu +nPu +nPu +nPu +nPu +bdI +bdG +bax +unA +bax +bcK +fIQ +fIQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(67,1,1) = {" +aay +aVv +ajO +ajO +ajO +ajO +aSg +aZj +ddS +aiO +gec +rYa +aCv +fQy +aHG +gHd +uhq +asd +aUV +agy +aYL +auF +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +azb +aSl +aSl +aGZ +aGZ +aXt +aCp +msi +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aNG +aNG +aTR +anR +aTR +aFD +aTR +ahg +ahg +oRc +aIL +aEx +aWQ +aWQ +aWQ +aWQ +aWQ +mQF +aSP +aSP +aSP +xuj +aLo +aLo +crR +aTc +aTc +crR +aTc +aTc +crR +nsr +kCd +apl +amX +atS +atS +aBv +bJW +bIN +bHA +bFS +bEP +bzB +bqF +amv +sLg +aap +bkC +blF +yig +bkC +aor +aor +btK +pgC +bks +bkj +pGO +afh +wan +qov +btl +pgc +ajV +eBL +aRK +bEQ +btr +aqC +vWb +aOr +aao +tAK +qzn +jTY +aEJ +bEQ +jsb +seR +aPq +vvg +seR +seR +ooz +aIP +atp +euh +aUO +bcG +oGX +uIf +mpS +awn +ghX +btu +uHR +sjD +aaY +aiG +aAG +beO +uYQ +wxH +mDq +bdP +xvU +iae +aiY +aJs +qGA +nPu +nPu +qGA +aJs +dvb +aKb +aBb +qev +qGA +aXA +fIQ +fIQ +fIQ +bem +nRI +nPu +fIQ +fIQ +fIQ +fIQ +fIQ +aAC +fIQ +nPu +fIQ +nPu +btk +sch +sch +dvZ +dvZ +iGv +qZC +mTO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(68,1,1) = {" +aay +aVv +ajO +ajO +ajO +ajO +aSg +amR +nRU +pqy +pqy +elq +jYi +aSS +ajO +pqJ +bjB +aUV +aFp +aet +aYL +azZ +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +aCp +aCp +gyh +aGZ +aGZ +aGZ +aMn +ahu +ajz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aNG +aHp +aKN +anR +aTR +aTR +aCE +ahg +ahg +ari +aBG +aBG +aWQ +aWQ +aWQ +aWQ +cAP +ehk +atJ +aDE +aSP +anV +rfg +tcu +oYp +aLo +aLo +crR +hqY +mtW +crR +spe +tkc +amX +atS +atS +aBv +mrR +apd +apd +asR +aqQ +bER +bDP +uSK +amv +sLg +akf +bwK +blj +biw +blj +akf +akf +akf +aKt +bks +bkk +pGO +afh +qaq +kAk +tBF +aKm +sIN +aZW +agA +bEQ +hpX +aGN +ppk +kxh +acR +aEa +wKZ +lDI +dGs +bEQ +juH +jXC +seR +akO +aUS +aAf +bcz +aVZ +aNf +aCU +aIm +seR +vFA +aWQ +hHh +jua +xUp +oGX +oGX +sjD +aaY +aiG +aAG +bfm +uYQ +beH +lyW +bdP +bdv +iae +bem +nPu +nPu +nPu +qGA +alL +asY +awT +axu +juR +qGA +cyW +aal +fIQ +fIQ +nPu +ifz +fIQ +fIQ +fIQ +fIQ +jNk +jNk +jNk +jNk +jNk +jNk +quc +fIQ +nPu +otF +qnV +nPu +qGA +aWQ +oAj +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(69,1,1) = {" +aay +aVv +ajO +aWQ +aWQ +ajO +lPw +azj +aWQ +dSN +dGA +vZY +kFr +aWQ +aWQ +byg +asd +asd +aUV +aet +lef +aaQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +ajz +abZ +adv +aGZ +aud +aGZ +aGZ +aCp +tLf +ajz +aHY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aTR +aTR +anR +aCE +ahN +aCC +aBG +auA +qcf +aBG +aBG +aBG +aWQ +aWQ +aWQ +gmg +iWX +qqN +aQd +aSP +aSP +aSP +aSP +anV +nFR +aKJ +ajF +spe +wcx +atS +atS +atS +aLr +atS +atS +npb +vgh +apd +apd +gzz +bFT +bES +aqQ +bDd +amv +tQt +tQt +tQt +tQt +blt +aTq +qBl +bxs +bxs +wKB +aYx +bkk +pGO +afh +ciA +egq +bxH +nbO +vks +aZd +aRK +bEQ +vHS +vMf +bxD +gRP +mwB +qLS +vgw +dxa +mbC +bEQ +aIf +dVa +aAf +aMb +axp +aPa +rMe +qvJ +ozc +apo +aIm +pwb +aWQ +aWQ +tuq +tuq +jua +akW +oGX +sjD +aaY +aiG +aAG +bfn +kMw +bwO +dPB +bdQ +xRs +bff +nPu +qGA +aJs +nPu +nPu +aJs +aWQ +bjA +bjA +aKy +uAD +xAm +aWB +aWQ +uMq +vqK +iIA +aIN +vqK +uMq +uMq +uMq +aWQ +aWQ +aWQ +aWQ +uMq +uMq +uMq +vqK +iIA +aIN +vqK +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(70,1,1) = {" +aay +aWQ +ajO +aWQ +aWQ +aWQ +ajO +aWQ +aWQ +aWQ +adC +vkS +aWQ +aWQ +aWQ +aWQ +pyN +aUV +gOi +aet +aud +ahD +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +nwE +abZ +aCp +aXW +ahq +aGZ +aXt +aCp +aaU +aMn +aHY +aHY +aHY +aWQ +aWQ +aWQ +aWQ +aWQ +aTR +aTR +aeL +aJq +abV +aon +aon +aon +acS +tpd +aBG +aBG +aBG +aWQ +aWQ +aWQ +std +iWX +aLo +aPS +mEJ +aSP +ahR +aSP +aSP +aSP +aSP +aDm +atS +aLr +atS +atS +atS +atS +atS +aBv +aoh +apd +qPE +apd +bHB +bFU +bET +aqQ +bCF +amv +tQt +aIi +aOx +blG +blu +aTq +bkT +pGO +gbW +kWg +aYx +tQt +tQt +avj +apU +bxI +dAd +bxG +acC +iQN +mwB +mwB +wcl +gum +bxE +pLd +mwB +dkV +bsp +ayj +aoS +mwB +mwB +seR +apw +agP +aLJ +aJu +nJS +aEH +aCU +uuC +aIm +aWU +aWQ +aWQ +aWQ +tuq +tuq +jua +klA +sjD +aaY +oTw +oTw +tNQ +beX +beI +kkb +oTw +oTw +tco +nPu +nPu +nPu +nPu +nPu +nPu +aWQ +aWQ +aWQ +aWQ +kNR +jhu +aWQ +aWQ +uMq +bbu +iku +iku +bbV +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +eje +bbc +iku +baX +baE +uMq +uMq +uMq +uMq +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(71,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +orG +aaU +gMP +aaU +aGZ +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +rER +aCp +aGZ +aGZ +aXW +aGZ +eQY +exe +dqG +fGk +aHY +afb +aHY +aJA +aUW +aUW +aHY +awZ +aCE +ahN +aCC +aVU +aBG +aEx +aBG +aBG +oRc +qcf +aBG +aBG +aBG +aBG +aWQ +aWQ +aWQ +qMw +aMH +aiV +aPS +aDE +aSP +aSP +aSP +aTl +atJ +ajF +aRB +bLG +aRB +atc +atS +atS +atS +wvz +apd +lsn +bJX +aWQ +aWQ +arn +bxu +aqQ +edy +amv +tQt +blY +buo +blH +blu +blk +bkU +pGO +erD +kWg +aYx +tQt +uZf +tBX +xNn +agd +ayo +goY +bxF +acC +vOp +bEQ +kmZ +fTc +lOu +kuA +mwB +hlS +aEa +pkn +eLk +bEQ +seR +aqz +aMb +aLJ +aLJ +aJu +aNA +aCU +aCU +aCU +aou +ayr +agP +aWQ +aWQ +aWQ +tuq +wuZ +oGX +sjD +aaY +alG +oTw +hHu +hHu +hHu +hHu +oTw +aQB +cvr +apg +apg +apg +apg +apg +apg +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +bcc +iku +bbY +bHG +uMq +uMq +uMq +uMq +uMq +uMq +uMq +uMq +uMq +uMq +bbd +iku +iku +baE +uMq +wBs +bbL +bbL +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(72,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajH +aGS +oqO +ajH +ajH +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +jbX +aKO +aud +aGZ +aCp +aGZ +aZz +aGZ +aCp +aUR +aHY +aHY +aHY +aHY +aHY +aHY +aHY +aTR +ahN +aBG +aBG +aVU +aBG +aBG +aBG +oRc +aYb +qcf +aBG +aPw +aBG +aVt +aWQ +aWQ +aWQ +aWQ +arp +ddH +aLo +aAl +aDE +aSP +aSP +pvk +aLo +ajs +ajs +nUh +qZZ +cwe +atc +atS +atS +aTo +lAX +gXh +aWQ +aWQ +aWQ +bxu +bEU +aqQ +wot +amv +tQt +blT +jvi +blI +blu +aTq +hMu +bxs +bxs +bkx +aYx +tQt +tQt +arG +afh +oGF +aCx +srN +qyG +acC +vOp +fvH +oiP +mzB +gUf +atw +ayB +qww +aPs +riO +ayl +bEQ +seR +aOo +agP +aLJ +aLJ +aoo +rMe +aCU +aEP +tbN +aIm +aUS +agP +aWQ +aWQ +aWQ +aWQ +wuZ +oGX +sjD +aaY +mCA +oTw +ayT +ayT +ayT +ayT +oTw +atB +atB +atB +atB +atB +atB +atB +atB +ajs +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +uMq +uMq +baL +tlZ +iku +mzL +bbp +bbR +cbr +bbI +rEc +bbA +bbw +bbm +bbp +lkt +bbe +xca +baM +baF +tGe +any +any +baO +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(73,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUV +aCD +aUV +aet +aud +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +ajz +asI +aXW +aGZ +nKj +aeb +aGZ +aGZ +aaV +avk +tex +aHY +hDQ +aHY +qUY +aVh +arv +shN +qXs +aon +aon +aOy +aWQ +aWQ +aWQ +alW +aNG +aBG +pGz +aBG +afs +aTR +aWQ +aWQ +aWQ +eIF +oqI +aLo +aLo +aLo +vNr +aSP +aSP +aaH +aWQ +aWQ +aWQ +aWQ +atE +uqJ +azO +atc +atS +atS +aTx +dEo +aWQ +aWQ +aWQ +bxu +bxu +aqQ +bCF +amv +sLg +blZ +uPF +tQt +blv +ise +pYY +bkL +uPF +wKB +bks +bkm +aBd +aJL +jwQ +ckD +acC +aTe +acC +acC +ajk +bEQ +xOJ +pkg +jwj +jwj +tzE +jwj +bao +xSh +sAv +bEQ +biW +aAf +agP +aLJ +aJu +aXO +nJS +jXI +dqu +bFF +abT +aBz +kuU +aLJ +aWQ +aWQ +aWQ +dKm +vFA +sjD +aJn +ans +ans +ans +ans +ans +ans +ans +ans +ans +ans +ans +ans +ans +ans +ans +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +baW +baQ +bbu +baN +baN +bei +bbk +bbk +bbJ +bbJ +bbk +bbB +bbk +bbk +khx +bdW +bdJ +lMd +any +baG +uMq +bbH +vqd +nHQ +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(74,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUV +aZz +aUV +gMP +ahq +aGZ +aWQ +aWQ +aWQ +aWQ +aWQ +ajz +aGZ +aGZ +aXt +aqr +aaU +aCp +oHU +aaU +pmw +aHp +uOL +aTR +aTR +aeL +aTR +aTR +anR +alY +aBG +aBG +aWQ +aWQ +aWQ +aWQ +aWQ +aNG +aNG +aUZ +aBG +afs +aZy +aTR +aWQ +aWQ +aww +atV +wMW +ajj +aLo +kOv +aDE +aSP +vyr +bvK +aCh +aWQ +aWQ +aWQ +bLX +mtW +amX +aLr +atS +aTx +aWQ +aWQ +aWQ +aWQ +bFW +bEV +bDQ +uFu +amv +sLg +bma +qtn +tQt +hhz +opO +vvv +vvv +vvv +avQ +bks +bkm +pGO +acC +acC +ckD +acC +acC +aEA +hfc +mwB +mwB +mwB +adw +ajJ +ajJ +aNu +ajJ +ajJ +uKz +mwB +mwB +mwB +eAf +arJ +acm +aoo +xBP +nJS +aCU +aWg +aCG +aJY +aMf +aYy +arJ +acm +aWQ +aWQ +aOM +klA +jek +nUm +nUm +nUm +bZU +kRT +kRT +kRT +tel +nUm +nUm +nUm +nUm +kZZ +anu +beL +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +ueD +jxo +jTt +nrt +nrt +bbW +bbS +bbK +bbK +bbK +bea +lKe +bbx +lKe +any +any +lKe +qKz +baN +baH +uMq +qMn +uMq +paQ +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(75,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUV +acM +aTG +age +aIB +aBW +aYL +aWQ +aWQ +aWQ +aWQ +ajz +ajH +uEO +wWA +ajH +ajH +ajz +aXt +adv +aZz +aTR +aTR +aTR +aCE +awZ +aTR +aCE +anR +alY +aBG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +vtf +aCq +afs +aTR +aTR +aWQ +aWQ +aWQ +atV +okr +aLo +xyp +hwj +djo +aSP +anV +bVb +atF +wKz +aWQ +aWQ +ajs +aHK +atS +atS +aBv +aoh +ajs +aWQ +aWQ +aWQ +bFX +bEW +bzB +bCF +amv +sLg +wII +gJL +tQt +blw +ise +kKH +wII +wII +wKB +aYx +bkm +aBd +acC +acC +tzp +mxd +aUU +ppu +aTm +gLQ +tva +mwB +mwB +mwB +mwB +mwB +mwB +mwB +mwB +mwB +aYJ +axR +aIm +amj +bsQ +seR +seR +exl +aBV +aCO +aCU +aJY +aJY +abT +vLJ +aXO +aWQ +aWQ +aWQ +oGX +oGX +oGX +bFv +oGX +sjD +kRT +cfH +tel +hBY +oGX +oGX +oGX +vFA +kDO +tuq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +eZq +nVm +jcX +bbC +bbT +bbT +kDQ +bbC +bbC +bbC +ukH +bbC +bbT +bbs +bbn +bbj +myp +kRv +fkU +fLq +uMq +whc +ihl +saz +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(76,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUV +aUV +aUV +aTG +asd +aFp +gMP +aYL +aYL +aWQ +aWQ +aWQ +ajz +aXt +aaU +aCp +aUV +aZz +ajz +ajz +ajz +aBH +aCE +aTR +aKN +aTR +aTR +aTR +aTR +aez +aBG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +lFy +aBG +aVt +aTR +aTR +aTR +aWQ +aWQ +gqX +aLl +aLo +mdf +aWQ +bws +qUk +aSP +anV +aKd +aSH +ajo +ajs +ajs +ajF +qDo +kHC +ajF +ajs +ajs +aWQ +aWQ +aWQ +bFY +bEX +deS +bDe +amv +tQt +aIi +kEv +bsY +kSf +aTq +bkV +bxs +bxs +wKB +bks +tQt +tQt +ayv +apU +aXd +apI +sIN +aZW +aKI +wYO +aLc +mwB +mWM +aqq +tmd +mwB +aLc +agG +qrx +mwB +aYJ +axR +aIm +seR +seR +seR +hKa +afl +awj +ats +apo +adn +aJY +aJY +abT +aBz +bwV +aWQ +ebO +gYK +oGX +rGD +amE +nRy +akI +kRT +kRT +oxq +ycE +oGX +oGX +vFA +kDO +tuq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +uMq +uMq +uMq +uMq +ibO +uMq +uMq +uMq +uMq +uMq +uMq +uMq +bbz +vZi +iku +iku +pfE +osB +baQ +fhf +qIO +any +any +xlp +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(77,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +age +age +avo +aUV +aUV +aUV +gMP +aEr +aeh +aYL +aWQ +aYL +akk +aES +age +aUG +aCp +aWQ +aWQ +aWQ +aWQ +aWQ +ehV +deb +aMy +aTR +ahN +aCC +aVU +aBG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aBG +afs +aTR +aTR +aTR +aTR +aWQ +aWQ +kNs +aLl +aLo +aWQ +aWQ +aWQ +tyK +aSP +aSP +aLQ +aLo +aLo +aYt +adY +aji +aSP +aSP +aQb +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bEY +bDR +mlc +amv +tQt +bmb +blO +blI +apZ +aTq +bkX +pGO +gbW +kWg +bks +tQt +awJ +pDn +afh +aXd +aKm +inI +aVH +eCK +bBH +wpz +aJL +aJL +aJL +aJL +bpZ +aSV +tJi +aVI +aDh +aYJ +axR +abT +ant +axU +aFd +aFd +spU +aEH +aCU +deJ +aJY +aJY +aqt +aJY +aIm +seR +oGX +aMX +oGX +phQ +rfK +jYq +aEU +kRT +kRT +kRT +rGb +oGX +oGX +oGX +aYE +rAP +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uMq +bbZ +wcP +bbU +nMl +bbP +bbM +bbF +uMq +uMq +bbt +iku +iku +kqF +baY +nwd +lFC +uMq +vyI +vyI +vyI +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(78,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aZs +aUV +aUV +aUV +aUV +aUV +aUV +aUV +gMP +aEr +aYL +aYL +aYL +aWP +aUV +gcP +aWQ +aWQ +aWQ +aWQ +aWQ +eIL +alU +aZU +iFt +aii +aon +aon +aJR +aBG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +afs +aTR +aTR +aZy +aTR +aWQ +aWQ +fqB +iCv +aLo +aWQ +aWQ +aWQ +bvv +aDE +aSP +anV +aLi +agW +aij +agV +aSP +aSP +aQb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bFZ +bEZ +aqQ +unT +amv +tQt +blT +aOx +blI +apZ +aTq +bkY +pGO +erD +kWg +bks +tQt +tQt +abm +aYT +aXd +aKm +apJ +cAo +acC +vnt +anr +anr +iWO +anr +cAo +rMX +vnt +anr +anr +eWk +iyh +akG +gNs +gNs +aOX +aRI +aCU +pLf +aCU +aVb +aCU +aPI +djU +aJY +aJY +abT +aDb +puG +aJy +hoC +puG +puG +mYe +kRT +kRT +aLk +nUm +hBY +oGX +oGX +oGX +oGX +xUp +wye +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +aWQ +aWQ +aWQ +aWQ +uMq +bca +jTt +bbN +bee +beb +vfP +bbG +psD +fsD +oGb +iku +iku +bbg +uMq +gqa +hsB +uMq +uMq +uMq +uMq +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(79,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aGq +aGq +aGq +aUV +aUV +abN +aUV +aUV +aUV +aFp +gMP +aYL +aYL +aYL +aMh +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aBG +lOp +awx +aBG +aBG +aBG +aVU +aBG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +azs +aWQ +aWQ +aBG +aBG +rrz +aTR +aHp +alW +aWQ +aWQ +aMW +aLl +aLo +fks +aWQ +aWQ +aLo +tzc +aSP +aSP +aSP +cYs +iqQ +aji +aSP +aSP +aaH +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bBB +bxu +byQ +bCF +amv +tQt +tQt +tQt +tQt +kSI +aTq +boE +bxs +bxs +bky +bks +bkn +pGO +axh +hRP +aFt +aAc +aKm +apJ +lOv +ayo +gHl +bKx +aAc +aKm +apJ +lOv +ayo +aKm +apI +apI +aSh +aqH +aOm +uEg +bgZ +itZ +svP +aCU +aVb +aCU +awF +aIm +aVW +tkh +aJY +aJY +aJY +aJY +tWK +acp +kRT +kRT +kRT +cfH +kRT +gjL +jSB +awn +uIf +csa +oGX +bFv +oGX +oGX +uQf +aWQ +aWQ +aWQ +aWQ +ddx +ddx +ddx +ddx +ddx +ddx +aWQ +aWQ +uMq +uMq +bbX +tJk +bbf +bed +aPf +obu +bbD +asV +bbv +bdY +olL +ugI +lFC +mgK +eAU +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(80,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aGq +aBT +aQm +aGq +aGq +aGq +asX +aUV +abN +aUV +gMP +aYL +aYL +aYL +agx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +xdW +aNS +aBG +aVU +aBG +aWQ +aWQ +aWQ +aBG +aBG +mTh +ahz +aZU +aWQ +aBG +afs +aeL +aTR +aHp +alW +aWQ +aWQ +aqo +aLl +aVO +aWQ +aWQ +aWQ +aWQ +aPS +acJ +aSP +ahR +aSP +bmI +aSP +aSP +aQb +axd +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bxu +aqQ +aJC +amv +sLg +ebb +axb +axb +axb +axb +axb +axb +axb +adc +bks +bko +pGO +axh +aLU +apU +xCu +aVf +aVf +aVf +aVf +vBk +aWQ +xCu +lQR +aVf +aVf +aVf +aVf +aVf +qiJ +azm +dEx +bhc +oUr +aCU +aDc +aCU +aCU +aCU +bgI +gYO +aIm +acI +uTQ +pUT +aJY +aJY +aJY +aJY +cfH +kRT +kRT +kRT +kRT +kRT +gjL +uIf +aym +eRi +bFv +phQ +oGX +mpS +oGX +oGX +sjD +iJt +aWN +aVE +knu +tWI +tWI +tWI +tWI +tWI +bdA +aWQ +aWQ +uMq +uMq +lML +ukH +bbQ +bbO +ukH +bbE +baQ +yaX +iku +iku +glP +krq +bPy +fBZ +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(81,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aGq +aBT +aGq +aGq +aUV +aUV +asv +agy +aYL +gpm +aYL +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aBG +aHz +aBG +aVU +aBG +aWQ +aWQ +aWQ +aBG +aBG +aFc +aFy +ckx +aBG +aBG +aVt +aqM +aTR +alg +aWQ +aWQ +aWQ +aUe +aLl +aGM +aCh +cem +aDr +aWQ +adY +aji +aSP +aSP +aSP +aSP +ahR +aSP +xTO +ajj +bkS +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bFa +aqQ +mPI +amv +sLg +aap +bkC +bkC +bkC +btT +qqs +bkC +btL +pgC +aYx +bkp +pGO +axh +asr +gSm +cjR +acC +acC +tst +glX +aWQ +aWQ +aWQ +ayv +woG +rZw +woG +ayv +bxC +aDh +aYJ +axR +aPI +aRS +aKE +aIo +aRS +pUT +aqX +bgJ +aUQ +aIm +seR +seR +auK +ygn +pUT +aJY +aJY +kRT +kRT +tel +aUp +kRT +kRT +gjL +aWQ +hHh +hHh +jua +blU +bFv +oGX +oGX +ycE +sjD +iJt +aWN +aVE +cTJ +afp +qlE +vsc +oTV +uck +vsc +vIy +aWQ +aWQ +uMq +uMq +uMq +uMq +uMq +uMq +uMq +uMq +trn +adp +keq +trn +uMq +uMq +uMq +uMq +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(82,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aGq +aGq +aGq +aUV +aUV +aUV +aet +aYL +aYL +aYL +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +anW +aBG +aVU +aBG +aWQ +aWQ +aBG +aBG +aBG +aBG +hhh +aEW +aEW +aVt +aTR +aTR +aTR +xxX +aWQ +aWQ +aWQ +aUe +aUo +aSi +atF +wKz +wKz +aZM +fRj +aSP +aSP +aQb +aDE +aSP +aSP +aSP +anV +wiq +aPg +aWQ +aWQ +aWQ +aWQ +aWQ +bFV +bFc +aqQ +omt +amv +tQt +bmc +blP +blj +akf +bln +akf +akf +akf +lxh +aZu +acg +bkg +nyK +sCj +aJL +oVS +acC +acC +acC +awP +usJ +aWQ +aWQ +aPO +aTm +baf +hZR +arG +her +hZR +aYJ +axR +aIm +aDt +seR +seR +seR +aYV +aIP +bgK +aCG +aMA +seR +seR +seR +seR +auK +alv +aRS +fZB +nUm +hBY +lkR +kRT +kRT +aQz +aWQ +aWQ +aWQ +tuq +jua +ydF +qSn +puG +puG +mYe +iJt +aWN +aVE +oll +jly +jly +rao +jly +aJv +bFb +wzr +viw +aWQ +aWQ +teB +aWQ +aWQ +teB +aWQ +uMq +uMq +nLd +cJi +cJi +cJi +uMq +uMq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(83,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aZs +aGq +aUV +umG +aUV +aet +aYL +aYL +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +vkO +akS +aBG +aVU +aBG +aBG +aBG +aBG +xlm +aEW +aVt +anR +aTR +aTR +aTR +aTR +aTR +aWQ +aWQ +aWQ +aWQ +aFj +akL +aLo +aBg +ajc +acB +ahU +sqw +aji +aSP +aQb +tTT +aPS +acJ +aSP +aSP +ahR +nCw +agW +aUe +aWQ +aWQ +bAB +bHC +bGa +bBs +bBf +bCF +amv +tQt +tQt +blQ +adu +tQt +tQt +tQt +bkN +bkD +auU +acg +acg +mjG +aJe +acC +acC +acC +acC +qyG +acC +acC +acC +acC +awP +tKW +aht +hZR +hZR +aSZ +auk +hZR +hZR +axR +aIm +seR +ayr +aMb +aPa +seR +aLT +azz +aGa +aHf +seR +ovA +seR +seR +aAf +aMb +axp +aPa +bFv +aWQ +aWQ +akx +akx +aoE +asS +aWQ +aWQ +aWQ +aWQ +akm +mYe +kRT +kRT +kRT +iJt +aWN +ixi +ozt +ozt +ozt +ozt +ozt +ozt +ozt +aAB +qXr +xUQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +apS +wxr +ozt +ozt +ozt +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(84,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aGq +aUV +uai +aUV +agy +aYL +aYL +aYL +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +rst +tix +akS +aPw +aOp +agz +arH +swW +aVt +aTR +aaJ +aTR +anR +aTR +aTR +aqM +aWQ +aWQ +aWQ +aWQ +aWQ +vJf +ccR +tiO +aLo +ajo +aLo +aBg +adY +aji +aSP +aSP +aaH +aLo +aLo +aPS +qxB +aDE +aSP +ahR +eqx +asH +ajy +aWQ +aWQ +bHD +bGb +bFd +bDS +bAA +aJp +bCz +tQt +pGO +pGO +tQt +aHi +tQt +pGO +pGO +pGO +acg +aBf +aJe +qyG +acC +bxF +aEA +ayv +ayv +ayv +apU +acC +acC +acC +awP +hZR +hZR +hlM +lPO +eDr +hzW +hZR +hZR +haj +seR +seR +arJ +aoo +aGn +aVZ +aCU +aAD +aDt +aIf +seR +aAf +aXO +aMb +aLJ +aLJ +aWQ +aWQ +aWQ +aWQ +aLV +akx +akx +aGs +aGs +aWQ +awi +aLv +kRT +kRT +kRT +cfH +kRT +iJt +kWI +xCe +ozt +ozt +wxr +ozt +ozt +ozt +ozt +ozt +sBg +jly +nQL +bAU +aWQ +aWQ +aWQ +aWQ +aWQ +azr +nvm +wxr +ozt +dZP +eBA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(85,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +aUV +aUV +aUV +aUV +aet +aYL +aYL +aBN +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +tij +tix +aTR +akS +aBG +aBG +aVt +aTR +afB +axO +axO +axO +axO +avO +aKN +obY +aHY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aan +aLo +aLo +wvf +ajj +adY +aji +aSP +aSP +aQb +aBS +aLo +aNJ +aWQ +aMd +hYB +aDE +aSP +anV +exy +ajy +vuK +bIO +bHE +bBC +bFe +bCF +aad +aWu +kCn +dFo +awJ +aKI +aLc +aLc +byt +byr +aAP +eZv +aJL +aJe +acC +aEA +ato +kAR +aaC +aWQ +aWQ +aWQ +tJD +apU +acC +qyG +acC +acC +fVL +uIc +aqS +kQy +wTK +auk +aLJ +aPa +aAf +seR +hKc +aXw +nJS +aYw +awS +aeG +seR +seR +aGy +aGy +aMb +aLJ +aLJ +aWQ +aWQ +aWQ +aWQ +aCR +aNY +qHS +akx +icS +ceZ +aok +akx +daz +kRT +kRT +tel +nUm +aWQ +frJ +aWN +xCe +ozt +ozt +ozt +ozt +dZP +hWi +bOQ +wxr +ozt +ozt +cjI +knu +tWI +ddx +aWQ +aWQ +aWQ +aWQ +mah +wxr +ozt +drR +udE +mrI +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(86,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aGq +asv +aUV +aUV +aUV +aet +aYL +aWP +miE +aUV +asX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aZO +aBG +afs +aTR +aFD +anR +arA +aTR +aTR +aTR +aHY +aHY +aHY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLo +aLo +aLo +aLo +ajo +aQd +aSP +aSP +aQb +afK +aLo +hJe +aWQ +aWQ +aNj +ajj +mCR +aSP +aSP +olF +ajy +exa +atX +bBP +bGc +faa +bAA +apK +wmO +aaq +abp +hPr +aep +aSV +bpZ +sCj +cba +aJe +acC +acC +acC +xsP +apr +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +qAD +apU +acC +acC +acC +auk +dUU +aqS +bsj +mZA +auk +aLJ +aJu +seR +seR +seR +seR +nJS +aCU +aCU +xUS +aMB +seR +aqz +aMb +aLJ +aLJ +aWQ +aWQ +aGs +aGs +pYx +dPr +aLV +aPD +beK +akx +akx +aPD +akx +akx +tel +nUm +asl +aWQ +aWQ +aWQ +aWN +hTn +pbf +dMZ +dXH +dLr +tJO +aSp +hWi +ozt +ozt +ozt +sBg +aON +cTJ +knu +ddx +aWQ +aWQ +aWQ +kFX +ozt +ozt +drR +cHY +lmu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(87,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUV +aUV +akX +agy +agx +aYL +aYL +aWP +aUV +aEY +aUV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aBG +aBG +afs +aTR +aTR +anR +aZy +aTR +aHY +xGH +bwl +hfw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +xRj +hxV +aLo +aLo +aLo +fTJ +aYp +aji +aSP +ahR +aaH +aPg +aWQ +aWQ +aWQ +aWQ +aNj +lre +aQd +ahR +aSP +aaH +anp +hfm +aqQ +bHF +aqQ +bCF +aad +aWu +wmO +wmO +abX +aBs +aJe +acC +acC +acC +acC +qyG +acC +acC +rtg +apr +aHi +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +fiW +her +acC +acC +aEA +auk +blx +xJJ +aQN +aNs +auk +aLJ +aoo +seR +seR +seR +seR +nJS +aCU +aCU +apy +aBz +aMi +act +agP +aLJ +aWQ +aWQ +aWQ +aGs +lNY +ajZ +aLV +akx +akx +aJz +jWQ +jWQ +yiV +yiV +aOJ +hBY +vFA +uHR +kDO +aWQ +aWQ +aWQ +aWQ +tdQ +aWQ +aWQ +aWQ +iKr +vjA +tTs +hWi +ozt +ozt +ozt +sBg +bJo +lQC +knu +tWI +shw +hDw +ank +ozt +ozt +drR +oTV +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(88,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +aRf +azQ +aQY +aRT +aRT +aRT +aiR +akh +akh +akh +aYG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aeW +axt +ahj +abR +aLw +fvK +aLw +akQ +akQ +akQ +aUv +aHE +ale +aWQ +aWQ +gvg +wrQ +anp +fty +aCk +aHT +ahi +aKu +bnM +aNw +aNw +aNw +aQc +aIe +aWQ +aWQ +aWQ +aWQ +aWQ +aqD +asf +pWS +aNw +aNw +acW +aXb +vFu +aqQ +bxu +bGd +bCF +apK +wmO +wmO +xtF +ahK +plA +qyG +aoJ +acC +acC +acC +acC +aEA +ayv +nff +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajs +aed +acK +acK +axW +hZR +aCJ +eci +wyb +cjq +hZR +hZR +aGy +seR +aAf +xgz +aDt +nJS +aCU +aEP +aph +aIm +seR +seR +arJ +aLJ +aWQ +aWQ +aWQ +aGs +aHB +aLL +akx +akx +mLn +fJj +kzj +udt +odw +bdy +aRO +oGX +qTZ +kDO +tuq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +vjA +pte +aWx +ozt +ozt +ozt +ozt +arC +bqV +pKw +vSx +ozt +ozt +ozt +ozt +drR +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(89,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +oiQ +afL +aRf +azQ +aQY +aQY +aWQ +aWQ +aRT +aiR +akh +akh +akh +aYG +aYG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ahW +asT +ahx +inK +aLw +aOs +fvK +akQ +akQ +bhU +bwp +bwm +bwg +ale +ale +aWm +aEm +aEm +aEm +hir +aKu +aKu +aAi +aNw +aNw +aNw +afC +aNw +fhL +aCk +aWQ +aWQ +aWQ +aWQ +iKv +cMs +aQi +aCm +aNw +afC +kkY +aCk +bJZ +bIP +bxu +bBD +cny +apK +wmO +wmO +abX +bvg +afh +acC +aEA +ayv +apU +acC +aEA +aaP +aPO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajs +aIR +aVj +aIR +aIR +hZR +hZR +auk +auk +hZR +hZR +aGQ +sug +seR +seR +aTT +seR +nJS +aqX +akJ +aCG +aIm +seR +seR +aLf +arJ +aWQ +aWQ +aWQ +aGs +mCx +bra +akx +fMl +lJu +iOd +aOT +rzT +cof +aTO +oaX +sCp +xUp +nYJ +tuq +tuq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +gpx +psz +qqb +ozt +ozt +wxr +ozt +ozt +ozt +ozt +ozt +ozt +ozt +ozt +srj +sqa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(90,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +aRf +azQ +aQY +aQY +aWQ +aWQ +aWQ +aRT +aiR +akh +aki +aLp +aYG +aYG +aYG +aYG +aWQ +aWQ +aWQ +aWQ +ahW +ahW +aox +uWK +aLw +aLw +aLw +fvK +akQ +akQ +arF +bwi +aKq +aOh +ayM +ajp +aAa +nXq +aCk +sar +aAi +mqc +iZa +iZa +iZa +iZa +iZa +iZa +arw +aAa +kUf +aWQ +aWQ +aWQ +anp +ewW +aCk +wte +doV +aNw +aNw +oMe +aCk +bJZ +arx +bHH +bGe +bFf +apK +wmO +bzT +bCB +kaw +afh +acC +aZW +arG +afh +acC +rDG +arG +aRr +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ajs +xXW +aTt +aTt +wDW +uJT +hZR +aZS +alC +hZR +cKj +idE +seR +seR +oUE +seR +seR +nJS +aCU +azz +awv +hoi +seR +seR +seR +aJf +bKK +aWQ +aWQ +aGs +aaR +aYm +akx +aLV +ylq +xlK +aWJ +hYG +dIc +kzj +ftt +oGX +aih +rAP +tuq +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +bdA +xuN +vSx +ozt +ozt +ozt +ozt +ozt +bcH +ozt +aIk +tcv +igM +aEs +fbE +kFc +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(91,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +apV +aRf +aRf +aRf +aov +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aRT +aIT +akh +akh +aYG +axk +aYG +aYG +aYG +akh +akh +aps +acs +ahP +aBp +aas +aLw +aLw +aBi +fvK +akQ +bwt +atm +bwq +aOE +bwh +ajp +atm +oKj +aAa +avF +aCm +mqc +dhp +aDk +aDk +aDk +aDk +aDk +aDk +qUs +arw +acW +kvd +aWQ +anp +ewW +agt +aCk +aPy +aJX +msz +aNw +acW +taQ +bJZ +aqQ +bHI +aqQ +aci +apK +wmO +bCA +ajs +ahL +bwF +bwG +aPW +ahL +bwF +bnQ +aPW +ahL +ajs +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aCP +aLN +aUK +aUK +aYA +afy +aOi +alC +aiE +aGL +sNT +aEu +seR +lwT +aMb +aPa +act +rMe +aCU +aCU +aAD +seR +seR +seR +aAf +seR +nzN +iFL +aWQ +aGs +nbz +bEh +aLV +akx +akx +aPD +akx +aWJ +dVT +aEX +aCA +oGX +alN +xUp +aWQ +aWQ +aWQ +aWQ +aWQ +shV +aWQ +aWQ +aWQ +knu +bdA +lzO +vSx +ozt +ozt +ozt +ozt +lCD +jwm +aZw +kEs +eZj +aAR +nCs +aaL +vsc +iKr +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(92,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +qYX +aRf +afL +aRf +azQ +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +akh +aYG +aYG +eWB +asb +aYG +aIJ +jYu +arW +tIj +ash +aUl +uWK +aLw +pFP +aLw +gJR +auh +auh +xyw +apO +ePy +aqs +aqs +aQT +aRm +aNw +aAa +otQ +xdm +aDk +aDk +aYe +aNE +aNE +bxt +aDk +aDk +avm +bnc +agt +aCk +xkK +vZg +aKu +aKu +aKu +aAi +aNw +aQc +rZf +iyA +bJY +aqQ +bHJ +bGf +bCF +apK +wmO +bCA +ajs +aIR +aVj +aIR +aIR +aIR +aIR +aVj +aIR +ajs +ajs +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ieb +iSa +aWQ +aWQ +aWQ +aPr +aUK +aUK +aUK +aFl +aaZ +aEu +aEu +aEu +aEu +aEu +aBQ +aMb +aLJ +aLJ +aPa +nJS +aYw +hsx +aAD +seR +seR +aWd +seR +aAf +tPO +aWQ +aWQ +aGs +aGs +asF +riH +aLV +akx +akx +beK +iUO +rDo +gDH +cBw +xUp +oGX +oGX +qTZ +aWQ +frJ +aWN +aVE +nnY +lmu +aWQ +aqY +aeH +vsp +aJk +ozt +ozt +ozt +srj +auP +aQJ +aWQ +aWQ +aWQ +aWQ +lmu +vjA +aFV +htf +bAU +ddx +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(93,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +irH +aRf +aRf +azQ +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aRT +aIT +akh +akh +aYG +aYG +aYG +aYG +aYG +aIJ +aLw +abu +ags +aBp +uWK +aLw +aLw +aLw +cGw +aLw +aHE +bwr +aVr +eYx +oKj +qhn +aNw +aLy +aNw +aNw +aNw +xdm +aDk +aYe +aYe +yfn +yfn +bxt +bxt +wUV +avm +aKw +aKu +rzp +aAi +aNw +aNw +aNw +aNw +aNw +aNw +afO +axP +aHT +bJZ +vDc +bzU +aqQ +gku +apK +wmO +bCA +ajs +uJT +bwJ +bwI +aTt +aTt +aTt +bwD +aut +uJT +ajs +aWQ +aWQ +aWQ +aWZ +jVt +tej +nBI +aEu +geB +aWQ +aWQ +aWQ +hoc +aUK +aUK +amm +aEu +aEu +aEu +aEu +aEu +bxB +aMb +aLJ +aLJ +aLJ +aoo +aeS +aIP +bgL +mpW +bJw +aXO +aMb +aPa +act +seR +iBy +aWQ +aWQ +aWQ +aWQ +aWQ +riH +akx +akx +akx +ogh +aGs +aWQ +aSY +jua +bFv +oGX +oGX +sjD +iJt +aWN +aVE +lmu +lmu +hhK +imh +ozt +ozt +ozt +wxr +ozt +xGW +aNb +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +gpx +oTV +eGy +bAU +ddx +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(94,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +ape +aRf +aRf +azQ +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +aAk +akh +aYG +aYG +aYG +aYG +aIJ +aLw +arW +adt +aYj +aeW +aNH +adI +aLw +hpG +aLw +aLw +ale +bvT +xni +asu +asu +abJ +aLy +aNw +aNw +aNw +xdm +aDk +aNE +nAC +mrQ +bnN +aRt +hsA +aDk +avm +aNw +aNw +aNw +aNw +afC +aNw +aNw +aNw +aNw +afC +aNw +aAa +axP +ggI +bIQ +bxu +bGg +bCF +apK +wmO +bCJ +gbE +jBM +alq +aUK +aUK +aPl +aUK +aUK +ftz +rXq +pFc +aWQ +aZS +aZS +dsz +anw +aUK +otA +lSF +aEu +aWQ +aWQ +aWQ +aWQ +aUK +aUK +aKD +aQo +amB +aEu +aEu +aEu +aTS +aLJ +aLJ +aLJ +aoo +aGy +aKs +qaZ +iYN +aph +aIm +aMb +aLJ +aLJ +aPa +aGy +seR +qZw +aIf +pVZ +aGs +asS +bIK +fDD +aNq +akx +akx +aGs +aWQ +aWQ +tuq +gxO +vFA +oGX +ael +iJt +aWN +fxW +aZp +avt +vSx +ozt +ozt +ozt +ozt +srj +tnv +aNb +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +bdA +vsc +cTJ +bAU +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(95,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +aRf +azQ +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +akh +akh +aYG +aYG +aYG +aYG +aqx +aLw +amI +aUH +ahW +dNs +aeW +aNH +aLw +auC +aLw +aBU +ale +ale +eIg +aCk +aCk +axf +dRt +afC +aNw +boC +xdm +aDk +aNE +bon +bob +bnO +kme +hsA +aDk +cbl +iZa +iZa +bmV +aNw +bmL +anJ +bhk +nAn +cAx +aNw +aNw +aNw +acW +vFu +aqQ +bHK +aqQ +bCF +apK +wmO +wmO +aaq +bvz +aBM +ahe +iSj +aUK +aUK +aUK +aBu +mub +adg +eUy +azH +aWD +kGs +aUK +aUK +aUK +aYA +agN +amB +aWQ +aWQ +fjE +aUK +aUK +aUK +aUK +tWb +lfk +aEu +aEu +aOi +aLJ +aLJ +aoo +aGy +aAf +nJS +aYw +aRz +aUQ +aIm +arJ +aLJ +aLJ +aLJ +aPa +aAf +seR +bsx +szu +aFO +seR +uHR +oGX +kyp +kRT +cfH +kRT +aWQ +aWQ +tuq +dKm +oGX +xwq +mYe +iJt +aWN +bnL +ozt +ozt +ozt +ozt +ozt +srj +bRs +lxF +htf +knu +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +bdA +kFc +lmu +pbu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(96,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aJU +aEi +azQ +aQY +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aIT +akh +akh +akh +aYG +axk +aYG +aqx +aox +amI +ahW +ahW +ahW +aDF +ahj +aLw +tDz +aLw +aLw +aWQ +aWQ +oOD +aCk +aPy +edS +aPj +aNw +boG +aNw +xdm +wUV +aYe +boo +bnq +bnP +veA +aNE +aDk +aDk +aDk +aDk +qUs +arw +acW +afI +asf +msC +afQ +ago +aNw +afC +aAa +bKa +aqQ +bHL +aqQ +acb +apK +wmO +wmO +wmO +abX +twM +aWY +aGC +auj +aUK +aUK +aUK +aYA +aba +asB +eXB +aUK +aUK +aPl +aUK +aUK +aUK +aUK +aPn +auI +auI +asB +aUK +aUK +aUK +aUK +aUK +aYA +amB +aEu +nPA +arJ +aoo +aGy +brH +seR +auK +aIP +aTi +aUQ +ayD +ayr +arJ +aLJ +aLJ +aoo +seR +seR +aqz +aeU +kCy +seR +seR +oGX +jek +bZU +kRT +aJY +aWQ +aWQ +aog +mPK +snf +dAG +kRT +iJt +aWN +aol +ozt +wxr +ozt +aXX +xpl +aHA +lmu +lmu +lmu +cTJ +xUQ +aWQ +aWQ +aWQ +ddx +tWI +bdA +oTV +lmu +ulQ +oZg +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(97,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +azQ +aQY +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +akh +akh +aYG +aYG +aYG +aYG +aHl +aWQ +aWQ +aWQ +aWQ +aWQ +aeW +aNH +aLw +cOV +aBi +aWQ +aWQ +fXB +imP +aCk +cMs +aPj +aNw +aNw +aNw +xdm +aDk +aNE +azJ +boc +bvp +bnF +aYe +aNE +aNE +bxt +aDk +aDk +avm +acW +aWQ +aWQ +aXJ +aXJ +afQ +cAx +aNw +aNw +bKb +aqQ +bHN +deS +jui +apK +wmO +wmO +wmO +abX +aIt +aZS +aZS +hRr +asO +aUK +aPl +aUK +aUK +aUK +aUK +aUK +aUK +aUK +aUK +aUK +aUK +aUK +aUK +aPl +aUK +aUK +qfW +aVp +aVp +bhO +jJZ +aUK +aFl +aEu +aEu +seR +seR +aAf +seR +xti +rPw +aVZ +aTi +aUQ +tHh +seR +aAf +arJ +aoo +aGy +seR +seR +seR +byk +seR +seR +nyc +seR +seR +aNB +pUT +aJY +aJY +ubt +mav +kRT +kRT +kRT +kRT +iJt +aWN +aol +ozt +ozt +srj +aKQ +lmu +lmu +lmu +lmu +vuu +lmu +cfa +hOS +cTJ +knu +bdA +kFc +lmu +oOe +lmu +lmu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(98,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +agb +agb +aSq +aUz +aUz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +akh +akh +akh +aYG +aYG +aYG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +agM +aeW +aNH +aLw +aLw +aWQ +aWQ +aWQ +aPT +dhI +aCk +aPj +aNw +afC +aNw +xdm +aDk +hsA +bnF +bnF +kme +bnG +iZC +bnp +aUb +bxt +bxt +aDk +avm +acW +uXn +aWQ +aWQ +aWQ +aqD +ceX +ago +aNw +bKb +bIR +bxu +bxb +bCF +apK +wmO +wmO +xtF +asz +aMP +aZS +aZS +tIS +aea +aUK +bkE +aUK +aUK +aUK +aUK +abL +kia +axy +uja +agm +yjA +aqk +aUK +aUK +aUK +aUK +aCy +aRo +bic +bhP +aNZ +aUK +aYA +aQo +auI +aFd +auY +ant +aFd +aFd +adN +aYw +aRz +aUQ +qzt +aKs +aFd +iBA +aFd +agj +aKs +aFd +tCa +aFd +aBz +aqz +seR +aKs +aFd +nZO +ajG +aJY +aJY +acZ +aJY +aqt +kRT +kRT +kRT +iJt +aWN +aol +ozt +ozt +afw +sCk +rao +jly +jly +jly +bFb +nnt +jly +jly +jly +vsp +vsp +anc +aCt +ahS +lmu +lmu +nZY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(99,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +aRf +azQ +aUz +aUz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aiR +aCM +aCM +aCM +akh +aYG +aYG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aeW +aeW +qHa +hpG +adI +aWQ +aWQ +aWQ +gYS +slM +taQ +aPj +aNw +aNw +aNw +box +wUV +aYe +bnv +bod +bnR +bnH +bnz +bnq +twN +kce +aNE +aDk +avm +avi +aQi +aWQ +aWQ +aWQ +aWQ +ahi +aAi +bmJ +bKc +xfs +bHO +dAr +bNG +but +bzW +bmh +byU +bvR +aTw +aOi +aZS +vog +aUK +aUK +aUK +abL +aGj +agm +uja +aam +aWQ +aWQ +aWQ +aiE +pul +aOV +aKU +aUK +aIS +aUK +aCy +aZD +bid +bhQ +ruh +aVp +bcd +bhj +aVp +aVp +aVp +aVp +aVp +aVp +aOO +aQU +aoq +bgG +rfk +agK +iyx +aXl +rwv +aEE +mfv +iyx +aXl +rwv +hEn +aRQ +lUY +aTA +iyx +aXl +aXl +aXl +aXl +aXl +aXl +aXl +ayZ +ayZ +ayZ +aRW +nLj +tQB +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +atQ +aKT +tBT +oaS +pvW +ayZ +ayZ +mLY +ain +lmu +lmu +cri +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(100,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aJU +aov +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aIT +aCM +akh +akh +njw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ark +aeW +ahj +fvK +aLw +aWQ +aWQ +aWQ +aWQ +aCk +aCk +loP +abJ +aNw +aNw +xdm +aDk +abh +vYo +bnt +bnS +bnt +bnv +bnr +bng +ath +abh +aDk +mTD +acW +enZ +msC +aWQ +aWQ +bzq +avS +afC +aNw +aQG +bMS +bMS +bMS +bMS +akP +akP +akP +akP +ahp +arK +aqF +aRM +aOV +hcZ +aUK +aUK +ama +bpS +aaZ +aTS +aWQ +aWQ +aWQ +aWQ +aOc +aHh +aNM +aOV +aYX +kcw +aUK +aCy +bim +aZD +aZD +bhG +aZD +aUw +aAL +aAL +aAL +aaj +aRo +aRo +aRo +sCw +ayU +mZf +xEm +hgH +ayU +tjj +aFw +saX +axZ +aQU +aoq +aFw +saX +aMk +aMk +aMk +aMk +aEG +aFw +aFw +bdS +aFw +aAg +aec +aec +aqh +aer +aer +bci +lZp +bci +bci +aer +arl +awt +awt +awt +aEO +aer +aer +nws +mSf +mSf +wUp +mWQ +xRD +aer +xxt +xfi +aLR +lmu +lmu +eal +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(101,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +fyl +aov +asE +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +aKr +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLw +aku +aeW +aeW +alj +aLw +aWQ +aWQ +aWQ +aWQ +adh +asf +ooQ +aUX +ilw +avT +boy +aDk +abh +aCo +bnt +anm +bvo +kme +bns +bnh +amN +bmZ +aDk +avm +aKM +afI +akB +aXJ +aWQ +aCk +cuE +aNw +aNw +aQG +aGA +bBw +bBw +bBw +anj +anj +anj +anH +ahp +qoB +aQD +aQD +aQD +aWl +aWl +aWl +arK +aJH +adg +aTZ +aWQ +aWQ +aWQ +aWQ +aWQ +aZS +aHh +qpr +asB +aUK +aUK +aCy +aZD +aRo +bhR +aUw +aMJ +aPu +eiQ +amz +aJb +ald +aMJ +aMJ +bgU +aPu +aQU +aQU +aiD +ayP +aQU +ewd +aVu +aVu +auz +rEi +cTm +aVu +aVu +aVu +aVu +aVu +aVu +aVu +aVu +aqh +aFw +fPr +ayP +aQU +aQU +ewd +aEw +bck +bck +jGC +aRE +aRE +qQI +aZf +tJt +wZZ +fdz +nCW +aqO +aqO +aZf +tJt +oqz +nCW +aqO +aJE +aEO +aXE +aVx +drR +lmu +lVv +eFF +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(102,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +mwF +aQY +aQY +aUz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aiR +akh +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aOs +aku +aeW +aeW +aNz +aLw +ass +aWQ +aWQ +aWQ +cra +aCk +ayQ +aCm +aNw +aNw +xdm +aDk +abh +azJ +bnt +bnS +bnt +bnv +bnt +bni +bne +ogy +bmW +bmR +acW +mIH +akB +aWQ +aWQ +nTm +aLg +aNw +aNw +aQG +aGA +bBw +bBw +bBw +anj +anj +anj +anH +ahp +aUy +aUy +aUy +aUy +aUy +aUy +aUy +afX +atW +akw +aTZ +aZS +aWQ +aWQ +aWQ +aZS +aZS +aAw +oqa +aUK +aPl +aUK +aCy +aRo +aRo +aZD +bhH +pAO +fRU +ala +aEu +auK +ebs +aRS +qEv +aRS +rDm +aWa +aMk +awl +akz +aRS +aRS +ebs +rnw +aRS +aRS +aRS +qEv +aRA +adr +ygn +aRS +aRS +aRS +aVV +aNn +aFw +lgw +ahk +alz +alz +gFu +mnp +hZR +auk +auk +aSZ +hZR +sUH +xpl +amT +lmu +wMH +bRs +xpl +mtQ +xpl +aaL +wMH +xpl +xpl +aYk +omf +bYS +nsn +drR +bwN +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(103,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +aVg +axa +aQY +aUz +aUz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aRT +aiR +akh +aSu +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWh +aJK +aku +aeW +aeW +aNz +aLw +fQu +aWQ +aWQ +aWQ +aWQ +aCk +ayQ +lvZ +aNw +afC +eEz +aDk +aYe +bvy +bog +bnt +bnI +bnA +bnv +bnj +kce +aNE +aDk +avm +aUh +weo +web +aWQ +aWQ +wTt +aCm +afC +aNw +aQG +aGA +bBw +bBw +bBw +anj +anj +anj +anH +ahp +aej +xYf +xYf +xYf +aXh +aXh +aXh +irD +auI +mvc +aTZ +aZS +aZS +aWQ +aWQ +aZS +aZS +vog +aUK +aUK +aUK +aUK +pje +aMJ +aMJ +aMJ +ddw +aFl +aEu +aEu +aEu +aUS +aMb +axp +aPa +aGy +nJS +aNn +aFw +aFk +aIm +gQZ +seR +seR +seR +seR +seR +aXO +aMb +axp +aPa +ejp +seR +seR +aDt +nJS +aNn +aFw +lgw +alz +alz +aZE +aRY +hZR +hZR +tcP +scC +niY +hZR +abn +lmu +lmu +vsc +lmu +lmu +lmu +lmu +lmu +lmu +lmu +wDy +lmu +ayi +omf +aer +aWe +drR +eWC +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(104,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +agb +alS +aUz +aUz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +vqW +vqW +arD +aYh +dMh +dMh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLw +aku +aeW +aeW +aNz +aLw +ass +aWQ +aWQ +aWQ +aWQ +kbX +ayQ +aCm +aNw +aNw +xdm +aDk +hsA +kme +boh +bnT +bwZ +bnD +cwx +clZ +bxt +bxt +aDk +avm +acW +asQ +aJG +aWQ +aWQ +aWQ +aCm +aNw +aNw +aQG +aFN +aFN +aFN +aFN +apq +apq +apq +apq +ahp +azU +aEu +aCP +aGL +aOV +aqk +aUK +aUK +aUK +tWb +alr +aZS +aZS +aWQ +aWQ +aZS +aWZ +atj +aUK +aUK +aUK +abL +agm +agm +agm +agm +agm +ala +aGL +aEu +aEu +ayr +agP +aLJ +aLJ +aPa +iuc +aNn +aAg +aUa +tHh +seR +seR +seR +seR +seR +aMi +aMb +aLJ +aLJ +aWQ +aWQ +aGy +aqz +seR +nJS +aNn +aFw +lgw +alz +aZE +alz +aZE +aax +fVL +sMN +phC +vPy +auk +abn +lmu +eGy +lmu +lmu +lmu +fCl +lmu +lmu +lmu +lmu +nLq +lmu +jZH +woF +aEO +aWe +mQv +aub +aga +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(105,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aov +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aRT +aND +aYh +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLw +lBO +aeW +aeW +aZX +ayA +aBi +ale +aWQ +aWQ +aWQ +qJa +ayQ +axf +abJ +boC +xdm +wUV +hsA +kme +bvs +bnV +bnF +aYe +aNE +aNE +bxt +aDk +aDk +avm +afM +awI +aWQ +aWQ +aWQ +ahi +wjn +aNw +aNw +bKd +bIS +bHP +bGh +bum +qxF +drK +tgP +bCC +bya +aEu +akw +aEu +aEu +kfU +aOV +ahe +aUK +aUK +aUK +mVJ +aOi +aWQ +aWQ +aWQ +aWQ +dsz +asB +aUK +aUK +abL +bJb +aEu +aEu +iFJ +aQe +aRM +aEu +aEu +sIT +aEu +aqz +arJ +aLJ +aLJ +aJu +aNA +aNn +ase +aQU +aIm +seR +aDt +seR +dlE +aGy +aMb +aLJ +aLJ +aWQ +aWQ +aWQ +aWQ +aWQ +seR +nJS +aNn +rSt +lgw +aZE +alz +alz +alz +aax +auk +oXd +aQg +vPy +auk +abn +oYQ +lmu +lmu +lmu +lmu +lmu +lmu +lmu +kyO +aWQ +lmu +lmu +jZH +epS +aMs +ado +ali +aFf +knu +aeR +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ktj +aKz +aWQ +aWQ +aWQ +aWQ +aay +"} +(106,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ape +axa +asE +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acy +aRT +aiR +akh +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aYn +aeW +aeW +aeW +alj +aLw +ale +ale +aWQ +aWQ +kvd +ayQ +aCk +hZx +boD +xdm +aDk +aYe +gOx +boj +bvq +gCj +aNE +aDk +aDk +aDk +aDk +eNn +hLf +bmM +aWQ +aWQ +aWQ +aCk +aCm +aNw +aNw +aQc +bCh +bIT +bHR +bBG +bAa +apK +wmO +xtF +ahK +byb +kMF +sUb +fNW +bNY +bNY +awO +aOV +alJ +hWb +aUK +aYA +lPE +aWQ +aWQ +aWQ +aWQ +aPr +aUK +aUK +wfw +aXQ +dVf +aEu +aiE +aTS +aOc +aHh +dfw +aEu +aEu +aEu +seR +aGy +arJ +acm +aoo +dyj +aNn +saX +gRu +aIm +seR +seR +aqz +aMb +axp +aLJ +aLJ +aLJ +aWQ +aWQ +aWQ +aWQ +aWQ +aMi +nJS +aNn +rSt +lgw +fwE +jSv +alz +dgl +hZR +hZR +gdE +uKu +hwa +hZR +uZk +lmu +lmu +lmu +lmu +lmu +ebk +eGy +aWQ +aWQ +aWQ +aWQ +sRv +mMV +aKT +aKT +vzE +yaC +aJM +aoi +knu +aMx +bdA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aqa +pPQ +mGo +aaA +aWQ +aWQ +aWQ +aay +"} +(107,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +aJU +aov +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aRT +omW +akh +aAN +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ale +aNr +aeW +aeW +ajD +iCi +aLw +amI +ale +aWQ +aWQ +aWQ +ayQ +adh +afI +kfz +box +aDk +aNE +aCo +bok +bnW +gCj +aNE +aDk +eNn +jCJ +jCJ +hLf +aNw +acW +aCk +agt +aCk +aCk +aCm +aNw +afC +acW +fXY +bIU +bHS +avc +bWo +apK +wmO +abM +aWQ +aEZ +jmx +rAT +kfU +cGo +frS +fWd +aWk +rIZ +jbF +aUK +aUK +hXH +aEu +aWQ +aWQ +aWQ +aLN +aUK +aUK +anf +gVE +aQj +aWQ +aWQ +aWQ +aZS +aZS +aHh +grS +aEu +aaZ +seR +seR +aqz +aXO +ayr +lwW +aNn +aFw +aFk +aIm +seR +aMb +axp +aLJ +aLJ +acm +aLJ +aLJ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +nJS +aNn +rSt +lgw +wGU +xMm +alz +wGU +ajh +hZR +hZR +hZR +hZR +hZR +gjI +oTV +lmu +lmu +lmu +tQp +ovH +aWQ +aWQ +aWQ +ddx +bdA +mcT +jZH +dLg +tBT +amb +aJg +qlE +qlE +aOU +aoi +lmu +lmu +nLq +aoe +tqK +ajs +ajs +ajs +alH +vwO +vwO +aGO +lzW +aWQ +aWQ +aWQ +aay +"} +(108,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aov +aQY +aQY +aQY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRT +aRT +aRT +aSs +akh +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ale +ale +aGl +aeW +aeW +ahj +aYH +azB +aWQ +aWQ +aWQ +aWQ +ayQ +msC +qNx +kxU +xdm +aDk +aNE +xMA +bol +aRe +bnJ +hsA +aDk +bnk +hVE +aNw +aNw +aNw +aAa +aKu +aKu +axP +ahi +aAi +aNw +aNw +acW +kIx +bIV +bHT +avc +fdT +apK +wmO +abM +aWQ +aWQ +tJp +aGO +srT +aGO +aGO +arR +aSb +aPG +asn +asg +aUK +aYA +awX +aWQ +aWQ +tgX +aLN +aUK +aUK +aFl +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aZS +aHh +dfw +aEu +seR +seR +seR +seR +seR +nJS +xza +bgM +aFk +aIm +uMz +agP +aLJ +aLJ +aoo +aGy +arJ +aLJ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +xMm +icz +rSt +lgw +bXI +xMm +alz +byh +tVA +hZR +aSL +pin +cQn +hZR +dPx +gYl +lmu +lmu +lmu +lmu +aWQ +aWQ +aWQ +ddx +bdA +eWC +uck +jZH +aKT +ahT +aJh +aKB +jly +aeJ +jly +jly +hWE +jly +aLF +fac +atM +utb +aII +avg +rLZ +nuE +orP +aUs +ycx +yib +aZn +alM +aay +"} +(109,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +akp +aov +aQY +aQY +aQY +aUz +aWQ +aWQ +aWQ +aWQ +aWQ +vqW +vqW +aRp +arD +akh +akh +aYh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLw +asJ +tei +ahj +aLw +auC +aWQ +aWQ +aWQ +aWQ +ayQ +akB +jnD +oEr +xdm +aDk +aYe +aYe +uio +iEy +bxt +bxt +aDk +avm +izd +aNw +afC +aNw +aNw +bmJ +aNw +aAa +aAi +afC +aNw +aNw +acW +bJZ +avc +bHU +bGj +bCF +apK +wmO +abM +aWQ +aWQ +aWQ +acO +bWi +acO +acO +acO +aGO +anS +apC +aUK +aPl +aUK +aFl +aiu +pEy +vQR +asB +aPl +aUK +aFl +aEu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWZ +aRM +sNT +aqz +seR +oYU +aMi +aqz +jgy +aXe +bgN +aFk +aIm +seR +arJ +acm +aoo +aXO +wos +ejp +arJ +aLJ +aWQ +aWQ +aWQ +cea +hua +xMm +icz +rSt +lgw +wGU +xfV +alz +wGU +eUh +xfV +aGT +aET +xCe +drR +pYK +lmu +lmu +lmu +lmu +aWQ +aWQ +aWQ +ddx +bdA +kFc +lmu +lmu +fuL +aKT +axe +qZU +ayZ +ayZ +atQ +aMt +uiG +ayY +pvW +mYQ +aLj +baP +avJ +aoA +anB +aPR +wjv +wjv +gwY +mYO +mYO +awh +ahQ +aay +"} +(110,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +aSq +asA +asA +asA +aUz +aUz +aWQ +aWQ +aWQ +aRp +aRT +aRT +aRp +aND +dMh +dMh +aYh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +amI +aLw +aGl +aeW +aco +ayA +aar +aWQ +aWQ +aWQ +aWQ +ayQ +akB +aXJ +oEr +xdm +aDk +aDk +aYe +aNE +hsA +bxt +aDk +aDk +avm +aQc +asu +asu +asu +asu +abJ +aNw +aNw +mvl +aNw +aNw +aQc +aIe +vFu +avc +bHV +avc +fyv +apK +wmO +abM +aWQ +aWQ +lKb +aWr +agp +aUf +acO +nzY +nzY +wRr +aSF +ahJ +asg +asg +aYA +amB +awf +ool +aUK +aUK +aUK +aFl +atW +wXp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +akw +dfw +seR +seR +seR +seR +pBM +okA +aTA +aoq +aFk +aIm +djn +aGy +ayr +aUS +vZH +aIf +eQL +aMi +arJ +acm +aoo +aGy +seR +jcl +xMm +icz +rSt +lgw +cMk +xMm +alz +xLh +bTb +dbA +aGT +pin +ixi +drR +lmu +lmu +lmu +lmu +oWY +aWQ +aWQ +ddx +bdA +nGf +hbh +lmu +lmu +ogt +cSy +koN +awt +agD +aUd +aLa +nWG +nWG +azf +reO +aIM +aLt +afr +aWs +aMl +aKS +aaO +uaE +lHW +ava +ava +jjc +jjc +qje +aay +"} +(111,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +aSq +aQY +aQY +aQY +aQY +aQY +aQY +aUz +aRp +aRp +aRT +aRT +aXI +akh +akh +akh +aAN +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +amI +aLw +aLw +asJ +ahj +fvK +aRG +aYI +aWQ +aWQ +aWQ +ayQ +web +ejT +nrv +ciI +paZ +aDk +aDk +aDk +aDk +aDk +aDk +utx +hLf +acW +hVM +bvr +aWQ +aCk +axf +asu +abJ +aNw +aNw +bCr +aIe +apM +bJZ +bIW +bHW +bGk +eFV +apK +wmO +abM +aWQ +aWQ +aWQ +gsO +xWN +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aOV +aLZ +aUK +aUK +aYA +asB +aUK +aUK +aUK +pyY +ala +aEu +aEu +dfw +aEu +lyZ +jAF +aWQ +aZS +aWZ +avy +aEu +prq +seR +aqz +seR +aqz +nJS +aWa +aEG +aFk +qPo +aFd +aFd +aFd +aBz +abQ +gfl +aKs +aFd +aFd +hfb +aFd +aFd +hXO +rhc +ouw +icz +rSt +lgw +koV +xMm +alz +jSN +nJB +xAG +aGT +pin +xCe +drR +lmu +lmu +vsc +lmu +sRv +qlE +knu +bdA +eWC +hbh +mcT +lmu +lmu +oaC +rag +aKT +tBT +aNc +nCW +aqO +aqO +aqO +atl +pVB +dvP +cHy +aTM +tZo +amh +abf +aKl +aIO +cgv +kVb +hOF +aLW +aLW +aFJ +aay +"} +(112,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +axa +asE +aQY +aQY +aQY +aQY +aQY +asA +aRT +aRT +aRT +aiR +dMh +akh +aKr +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLs +aGk +ajn +aWQ +aWQ +ale +ale +aLw +asJ +qHa +aNm +apQ +aWQ +aWQ +aWQ +aWQ +ayQ +iia +fnt +axf +xPN +ciI +jCJ +bop +jCJ +jCJ +aja +jCJ +hLf +aQc +aIe +aWQ +aWQ +aWQ +aWQ +aCk +aCk +axf +abJ +aNw +aAa +axP +ajy +bJZ +khC +bBI +bBJ +bCF +apK +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aEu +iDv +aUK +aUK +aUK +aUK +aUK +aUK +abL +ala +aEu +kpP +pul +aEu +pul +arb +iFJ +aOi +aby +alC +pul +aEu +aqz +seR +seR +seR +seR +auK +aNn +aFw +saX +aXl +aXl +aXl +rwv +aEE +aRQ +aRQ +aTA +iyx +aXl +aXl +aXl +aXl +qkH +qkH +qkH +ufT +rSt +lgw +wGU +xMm +aZE +aWQ +kZR +kTz +aGT +pin +xCe +tto +mNx +lmu +lmu +lmu +lmu +psz +cTJ +kFc +vsc +lmu +lmu +lmu +lmu +wMH +aIg +twH +jwm +dXH +xpl +xpl +qeb +xpl +dXH +xpl +aUE +aiH +dYx +aTU +bxZ +avr +aOA +fzL +xQp +kKq +aoM +aVY +aoM +cTU +aay +"} +(113,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +aRf +aov +aUz +aUz +aQY +asE +aQY +asA +aRT +aRT +eMN +arD +aYh +dMh +dMh +dMh +aYh +aWQ +aWQ +aWQ +aYh +aYh +aYh +aYh +aLw +aod +ajn +aFA +ale +ale +aLw +aBU +ahj +aLw +aLw +aWQ +aWQ +aWQ +aWQ +ayQ +aCk +aCk +afI +lzE +aNw +aNw +aNw +aQc +xFr +bhk +asu +oIV +aIe +awI +akB +aWQ +aWQ +aWQ +aWQ +aCk +yjn +mzk +afC +aNw +fhL +hWr +egx +avc +bHX +bGl +bCF +apK +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aZS +aZS +alC +avy +bpS +aLN +aUK +aUK +aUK +aPl +aUK +jpj +ala +aEu +aEu +aEu +aEu +aEu +aEu +aEu +aEu +pul +aiE +aEu +aEu +aEu +seR +seR +seR +ayr +seR +seR +sPU +aFw +aFw +aFw +aFw +aFw +saX +aMk +aMk +aMk +aMk +aEG +aFw +aFw +aAg +ncA +ncA +ncA +hnk +rSt +rSt +lgw +wGU +eyA +alz +aWQ +aWQ +rgH +aGT +pin +xCe +hID +vjA +htf +vuu +lmu +kFc +lmu +vsc +lmu +hOS +lmu +lmu +cTJ +lmu +oTV +iKr +ddx +ddx +vjA +eWC +lmu +aQW +lmu +lmu +lmu +lmu +aoe +qTi +sxm +aFR +aZK +mCI +bEf +pWT +aGO +aGO +aGO +aWQ +aWQ +aay +"} +(114,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +agb +alS +aUz +aUz +aQY +aQY +aQY +asA +aRT +aRT +aRT +arD +aYh +akh +akh +akh +aYh +aYh +akh +akh +aYh +aYh +aYh +aYh +aLw +aLw +aPF +aeW +ahx +gel +akq +aeW +ahj +aLw +aOR +adI +aWQ +ale +eIg +ayQ +aQS +ahi +aKu +aAi +aNw +afC +aNw +jHw +qNx +xJc +slM +aCk +aCk +aCk +akB +aWQ +aWQ +aWQ +aWQ +aWQ +sGM +axf +abJ +aNw +dtg +ajy +tbT +bIX +bBI +bGm +gnb +apK +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aZS +aZS +aby +alC +aiv +aqF +aEu +aLN +aUK +aUK +aUK +aUK +aqm +ala +aEu +bpS +aEu +aEu +pul +aEu +pul +aEu +aEu +aEu +aEu +aEu +gVy +aRq +alA +alA +alA +alA +alA +bnd +cWF +bgO +aVu +aVu +aqh +aFw +aFw +aFw +aFw +aFw +aFw +aFw +aAg +caA +mje +aHn +aPC +niq +vLh +caA +caA +tZl +wGU +xMm +alz +aWQ +aWQ +uFg +aGT +pin +xCe +amG +ddx +sVP +cTJ +lmu +lmu +lmu +dKo +lmu +lmu +tcC +eWC +iKr +vjA +aHM +knu +ddx +ddx +ddx +vjA +aZQ +qlE +aBa +lmu +eGy +aIA +lmu +pSb +bLS +ajs +ajs +aWQ +aWQ +aWQ +aWQ +aFP +kKv +sfN +aWQ +aay +"} +(115,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aov +aQY +aUz +asA +asA +aUz +aUz +aRT +aRT +aRT +aXI +akh +akh +akh +aYh +aYh +aYh +akh +aKr +dMh +akh +akh +aYh +aLw +qOS +aUA +aGl +aeW +ake +ahx +aeW +aeW +aNH +aLw +abR +ale +ale +aCk +auD +aKu +otQ +aNw +aNw +aNw +afC +aNw +fIc +aXJ +aXJ +xJc +iyA +agt +aCk +akB +aXJ +aWQ +aWQ +aWQ +aWQ +aWQ +aCk +aCm +bOr +pjD +msC +aWQ +axr +bHY +bGn +bFg +apK +wmO +abM +aWQ +aWQ +aWQ +aWQ +aZS +aZS +alC +iFJ +aCP +aRM +aEu +aAJ +aLN +aUK +aUK +abL +aLP +aVw +aEu +aEu +aEu +aEu +mfB +rLT +aWQ +aWQ +aSM +aRq +aRq +aRq +aRq +aWT +aSM +kzu +brw +kzu +kzu +kzu +kZJ +tFR +aRS +aRS +epd +pft +aFw +aFw +aFw +aFw +aFw +aFw +aFw +aFk +qCl +gpt +sCP +vLc +fTX +jAq +jAq +jAq +jAq +beF +xQo +alz +aWQ +aWQ +nUC +aGT +pin +jUu +amG +ddx +ddx +vjA +qlE +lmu +lmu +lmu +nLq +lmu +oTV +iKr +ddx +ddx +vjA +nwp +knu +ddx +ddx +bdA +iKr +lZF +vjA +jQC +lmu +lmu +lmu +vDl +inR +ajs +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +pTs +aWQ +aWQ +aay +"} +(116,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +axa +aQY +xCX +aQY +aQY +aUz +aUz +aRT +aRT +aiR +dMh +akh +aKr +akh +aYh +aYh +akh +akh +akh +dMh +akh +aBI +dMh +aLw +aLw +aUA +aLw +ahx +oiY +aeW +aeW +aeW +ceN +auC +amI +bvT +bwc +tNd +aKf +aNw +aNw +aNw +aQc +abJ +aNw +aQc +nEJ +web +aXJ +aqD +aCk +aCk +aPy +web +aXJ +aWQ +aWQ +aWQ +aWQ +aWQ +aCk +hcT +aNw +acW +akB +aWQ +bIY +bEZ +uqA +fMa +apK +wmO +abM +aWQ +aWQ +aWQ +aZS +aby +alC +aKV +aTS +aOc +aHh +aNM +awf +asB +aUK +abL +amP +aEu +aEu +aEu +gVy +aRq +aWQ +aWQ +aWQ +aWQ +aWQ +aSM +aSM +hdK +aSM +hdK +aSM +aSM +dXc +aHL +rkF +aHL +kzu +mkC +alA +alA +bnd +aBc +aNn +aFw +aFw +aFw +bgy +aFw +aFw +bgh +aFk +eBJ +qlt +bTb +tcH +hXO +hXO +hXO +jlH +qUe +hXO +jYw +alz +alz +alz +alz +aGT +pin +xCe +fII +tWI +tWI +rqc +nwp +lmu +sRv +lmu +lmu +kFc +aag +ddx +ddx +ddx +ddx +vjA +aZA +knu +bdA +iKr +ddx +ddx +ddx +vjA +aio +aic +lmu +lmu +pbu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(117,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUq +aRf +aov +aQY +aQY +asE +xCX +xCX +aRT +sFu +aND +aYh +aLq +akh +akh +dMh +akh +akh +akh +aYh +aYh +akh +akh +dMh +aLw +aLw +aUA +axt +acs +uMe +aGl +aGk +aeW +hCS +nmr +vyp +bwi +bvX +ajp +urK +aNw +afC +aQc +aIe +aCm +aNw +cMn +aCk +iia +fca +aCk +afI +aCk +aCk +slM +web +aXJ +aWQ +aWQ +aWQ +aWQ +aCk +aCm +afC +acW +akB +aWQ +bxu +bHZ +aqQ +hPm +apK +wmO +aaq +byZ +byM +aOi +alC +jyi +aMO +aTS +aZS +aZS +aWQ +aMG +aLN +aPl +aUK +aFl +bpS +saN +aEu +aqF +pNa +aFs +aFs +aFs +aFs +aFs +aFs +aSM +wzp +ttR +ayy +qyR +kly +aWS +aIu +kzu +kzu +qKJ +kzu +kzu +kzu +kzu +hOe +nJS +aNn +aFw +aFw +aFw +bgy +aFw +aFw +aFw +lgw +xtt +lgs +jlH +jYw +alz +alz +alz +alz +alz +alz +alz +alz +alz +aZE +alz +aGT +aET +xCe +cHX +irQ +uck +nwp +lmu +lmu +lmu +lmu +qlE +iKr +ddx +ddx +ddx +ddx +ddx +shw +cwL +xXx +eeA +knu +ddx +ddx +ddx +ddx +vjA +aeM +aQW +aJM +lmu +lmu +ciO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(118,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUq +aRf +lOx +aQY +aQY +aQY +aQY +aQY +aRT +aSs +aYh +aYh +aAN +akh +akh +dMh +akh +akh +akh +aYh +aYh +akh +aKr +dMh +aLw +aLw +aUA +amI +aYj +ahP +aLw +aLw +aGl +jgL +nKf +atm +ajp +bwd +ajp +aSC +fkC +aXZ +jgl +aKX +vdH +aYo +ahw +aWQ +aWQ +cSg +wPi +aKX +bZg +aKX +aKX +tyL +avd +fuY +aWQ +aWQ +aWQ +aKX +aXS +aYo +acW +aWQ +aWQ +bGs +bIa +lsT +wLK +apK +wmO +wmO +abX +cRM +jSt +aRM +lIj +aTS +aZS +aWQ +aWQ +aWQ +aWQ +jyj +aPl +abL +ala +aEu +gVy +aRs +aRq +bte +aFs +biR +bLK +biM +aSv +vcC +aSM +arN +qqk +iVY +uqg +aXR +aOP +aIu +nHL +kzu +aMY +djp +aus +acT +kzu +qsU +mCd +ayu +aVu +aVu +aVu +jIJ +jIJ +aVu +caA +jHy +alz +alz +alz +alz +alz +aZE +alz +alz +kYD +alz +gFu +jAq +ckN +jAq +jSv +aGT +pin +xCe +drR +lmu +lmu +lmu +lmu +kFc +jQC +oTV +laB +bYg +ddx +aWQ +ddx +ddx +shw +sNl +ozt +ozt +sBg +wzr +knu +ddx +ddx +ddx +gpx +jQC +dKo +sRv +aeM +lmu +lmu +bUh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(119,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aUq +aRf +axa +aQY +kDt +aQY +aQY +aQY +aBK +akh +dMh +akh +akh +akh +aYh +aYh +akh +akh +akh +akh +dMh +akh +akh +aYh +sIK +aWQ +aWQ +ale +fDR +avH +amI +aLw +aLw +aGl +awL +aUv +xTv +dIB +ajp +aLm +aKX +aKX +aKX +aKX +aXS +aYo +tOD +wuS +aWQ +aWQ +wYu +aKX +aKX +glT +aKX +aKX +dBW +avd +iJs +aWQ +pqx +bOZ +aXS +aYo +ahw +aWQ +aWQ +bIZ +bIb +aqQ +htj +afk +alo +wmO +abX +aYM +aEu +aaZ +rLJ +aWQ +aWQ +aWQ +aWQ +aWQ +aJN +aPl +aUK +aqg +gVy +aRq +aWT +aFs +bjI +bjI +aFs +biS +biG +aFs +aJT +kJH +avs +dEn +kNI +lYV +qGH +aEj +aSM +iTw +iDJ +kzu +ylT +aYC +kzu +bNp +kzu +rEu +alV +alv +rJb +aqt +aJY +aIm +qYw +aZE +alz +alz +gFu +jAq +qAZ +jAq +pDs +jAq +jAq +jSv +alz +aZE +xLh +hua +jBi +hua +xMm +aGT +pin +ixi +drR +lmu +lmu +lmu +qlE +iKr +aWQ +aWQ +aDJ +lVx +aWQ +aWQ +ddx +bdA +asN +ozt +ozt +wxr +ozt +azT +htf +knu +ddx +ddx +bdA +lmu +lmu +lmu +lmu +lmu +lmu +vsc +nwp +rUx +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(120,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +aRf +aef +aRf +axa +aTC +aQY +aQY +aeB +akh +akh +dMh +akh +akh +akh +aYh +aYh +akh +aKr +akh +aAb +dMh +akh +akh +aYh +aWQ +aWQ +aWQ +ale +ale +oiY +amI +axt +aLw +aLw +aLw +aKk +atm +aVr +bvW +aOv +akZ +aKX +aKX +fJR +aev +aZJ +aYo +ahw +aWQ +aWQ +aWQ +aKX +eAd +bpj +aKX +aKX +aKX +xVz +nEz +aKX +nEz +auu +abd +aYo +ahw +aWQ +aWQ +bxu +bIc +bGo +bFh +bCE +afk +alo +byV +aYM +aJm +aEu +aEu +aEu +aWQ +aWQ +aWQ +abj +aUK +aUK +abL +bkc +fTS +qxj +aFs +aFs +bju +bjj +biZ +axc +biK +aFs +aFs +aYR +aSM +qQY +dHI +aqA +oIO +bkl +aSM +aSM +raz +kzu +lky +lky +kzu +acT +kzu +aWQ +aLJ +aPa +iuc +aJY +aJY +qwy +xMm +bgp +gFu +iZT +beF +lFz +biB +biB +biB +fOB +fWn +xMm +alz +gFu +beF +hua +hua +hua +xMm +aGT +pin +xCe +cjI +lmu +chq +eWC +iKr +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +rMi +bqt +sOG +obQ +ozt +bOQ +ozt +rhp +nHS +lfN +rMi +knu +bdA +eWC +mcT +lmu +lmu +uck +lmu +oTV +ahb +iKr +ddx +ddx +aWQ +aWQ +aWQ +aWQ +aay +"} +(121,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +aRf +aRf +aRf +aRf +aRf +axa +aeB +aRf +akh +aYh +aYh +aFU +aKr +akh +dMh +akh +akh +akh +akh +akh +aYh +aYh +aYh +aYh +aWQ +aWQ +aWQ +aWQ +aWQ +bxA +bxy +bxv +bxv +abR +aLw +amI +aUv +dSM +bvX +bvT +atm +akM +aKX +aKX +aky +aEB +aYo +ahw +aWQ +aWQ +aWQ +aKX +fZh +rFD +tzw +nEz +aKX +aKX +kGV +rFD +tzw +aXS +aZJ +aYo +kYL +aWQ +aWQ +bJa +bId +bGq +bFi +bDW +bCE +apK +abX +aeu +aEu +atu +aEu +aEu +fKd +aWQ +aln +aPl +aUK +aUK +aRb +pNa +aFs +aYY +aPM +bjH +bjf +bjf +bjo +biT +biL +axc +biu +aYR +ePh +acQ +amD +htm +gId +qtG +aYz +aOP +rRM +wSj +azd +efp +azd +slU +kzu +aWQ +kZR +dnN +fea +jAq +jAq +aqZ +hXF +jAq +beF +cIR +lFz +eQf +aFH +aFH +aFH +kZm +fOB +xMm +alz +wGU +gdn +gdn +npM +ieu +cpW +aGT +pin +vYE +aWQ +aWQ +uck +iKr +ddx +ddx +ddx +aWQ +aWQ +aWQ +aWQ +ddx +vjA +aMK +vSx +wxr +aJx +ozt +mRi +hID +lZF +aWQ +aWQ +nwp +cTJ +cTJ +avY +uck +aRv +uck +eWC +iKr +ddx +ddx +ddx +aWQ +aWQ +aWQ +aWQ +aay +"} +(122,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +aRf +aRf +aRf +aRf +aUq +aRf +eUl +app +akh +aYh +aYh +akh +akh +akh +dMh +akh +akh +akh +akh +akh +aYh +aYh +aYh +aYh +aWQ +aWQ +aWQ +aWQ +bxx +bxx +aLw +adI +aUA +aLw +aLw +abR +qOS +amI +ale +ale +aWQ +kVJ +dux +dTf +dMQ +aXS +aZJ +ahw +aKX +aWQ +aKX +aKX +rFD +fuY +mGX +aKX +aKX +tyL +rFD +fuY +bie +aXS +aYo +aYo +ahw +aWQ +aWQ +aWQ +aWQ +bGr +bEP +bDX +hPm +apK +abX +byc +aEu +aEu +afa +auI +auI +anw +aPl +aUK +aUK +abL +amP +bkd +aFs +aFs +aFs +aFs +bjw +bjk +bjb +biA +bjb +bjy +biv +aDU +vcY +aSD +wXw +wXw +kxN +aTQ +gKf +avs +map +krv +wQL +wQL +tpY +nnC +kzu +aWQ +aWQ +lsL +ksj +ksj +ksj +ksj +ksj +ksj +ksj +qDY +tQj +aFH +aFH +aDw +aFH +aFH +uuA +xMm +alz +wGU +iIn +eOL +cjO +nJB +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +ddx +ddx +aWQ +aWQ +aWQ +aWQ +ddx +gpx +oaC +ozt +ozt +ozt +apu +lCD +aQJ +ddx +aWQ +aWQ +aWQ +aWQ +ydH +oTV +chq +iKr +lZF +lZF +ddx +ddx +ddx +bdA +htf +aWQ +aWQ +aWQ +aay +"} +(123,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +aRf +aRf +eUl +aVg +aVg +eKI +aRf +aEi +akh +dMh +akh +akh +jGU +aYh +aYh +akh +aAb +akh +aAN +akh +dMh +akh +akh +akh +akh +aWQ +aWQ +bxz +bxz +bxx +bxx +bxw +aNv +aLw +aLw +aLw +aLw +akQ +ale +aWQ +aWQ +aWQ +nil +aMR +nRs +aXS +aYo +aUt +vbp +aKX +dux +rFD +fuY +iJs +bie +bKf +xVz +rFD +fuY +bie +auu +abd +aYo +tlF +iyn +aWQ +aWQ +aWQ +aWQ +bBK +bFj +bDY +iXn +apK +aaq +aca +aYM +osn +asB +aUK +aPl +aUK +aUK +aUK +abL +aam +aqF +aFs +bjY +dFW +oDA +bjI +bjx +bjl +bjc +biU +biN +tgh +biG +aYR +iTk +dwB +ovc +dVM +njk +ejz +oFk +aSM +kzu +iTD +wQL +wQL +wQL +tKV +kzu +aWQ +aFH +aFH +bry +awe +awe +awe +awe +awe +awe +aFH +aFH +aFH +aDw +aDw +aDw +aFH +hbl +xMm +alz +xtt +fjg +sOk +kZR +lNf +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +ddx +bdA +aWQ +aWQ +aWQ +aWQ +ddx +ang +aSk +ozt +ozt +ozt +lCD +aQJ +ddx +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +ddx +bdA +nwp +qlE +aWQ +aWQ +aWQ +aay +"} +(124,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +anK +aRf +aVg +aVg +aUq +aRf +akh +dMh +akh +akh +akh +aYh +aYh +akh +akh +akh +akh +akh +dMh +akh +akh +aKr +akh +aTp +bxz +bxz +bxz +bxz +bxx +bxx +aar +aWQ +aLw +aLw +akQ +aql +akQ +aWQ +aWQ +aWQ +aWQ +iAa +tzw +bNj +aYo +aYo +ahw +fZh +rFD +fuY +bie +aKX +aKX +aKX +aKX +avd +bie +tyL +aXS +aYo +ajS +iyn +fuY +aWQ +aWQ +aWQ +aWQ +bGs +bFk +aqQ +bzV +apK +wmO +abX +goF +aLN +aUK +aUK +aUK +aUK +aUK +abL +aTW +aTS +aOc +aFs +bjZ +nCF +biA +lMH +bjy +bjn +bjR +aFs +tnb +aFs +btx +aYR +iNI +fYj +qCG +aqA +rNA +awC +ahl +aSM +azy +avD +mVK +hDL +kzu +ums +kzu +aFH +aFH +deu +aMq +aMq +aMq +aMq +aMq +aMq +aMq +bsq +aFH +aFH +aFH +aDw +aFH +aFH +uuA +xMm +alz +aZE +dDQ +gdG +lNf +eKC +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +tWI +tWI +bdA +lmu +lmu +aWQ +aWQ +ddx +ddx +tdA +nWe +ozt +wxr +lCD +aQJ +ddx +ddx +bdA +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +tWI +bdA +lmu +kFc +lmu +aWQ +aWQ +aWQ +aay +"} +(125,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aEi +aRf +aRf +agb +aRf +aRf +aRf +aYh +aYh +akh +akh +akh +dMh +akh +aKr +aYG +aYG +aYG +aYG +aGi +aGi +akh +akh +akh +akh +akh +bxz +bxz +bxz +bxz +bxx +aWQ +aWQ +aWQ +akQ +akQ +akQ +akQ +aPN +aWQ +aWQ +aWQ +fuY +fuY +tzT +aMv +aZJ +aUt +vbp +avd +bie +aKX +aWQ +aWQ +aMV +aKX +aKX +auM +aKX +aXS +aYo +eJq +rUW +fuY +aWQ +aWQ +aWQ +aWQ +bGt +bFl +bDZ +tly +apK +xtF +qOZ +cCa +aLN +aUK +aPl +abL +aLP +agm +apX +aTS +aZS +aWQ +aFs +bka +xMc +bjQ +bjI +bjz +bjo +bjd +tnb +beh +fCZ +biG +sjX +syN +aAp +aof +jDr +aXH +why +gcu +aSM +gid +wYm +aHe +doX +iOF +asp +buM +nKQ +oZB +aHk +aAd +asj +utt +boL +brn +asj +asj +amn +aFH +aia +gZr +aFH +aFH +jow +aya +xMm +alz +lLI +xLh +kcG +eKC +eKC +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +rMi +rGs +aWp +aha +qrJ +rMi +xrC +knu +ddx +aFi +aIw +ozt +ozt +fII +tWI +tWI +bdA +lmu +lmu +aWQ +aWQ +aWQ +aWQ +bjS +aWQ +aWQ +aWQ +rMi +eVi +jvU +nHH +lfN +psi +rMi +aWQ +aWQ +aay +"} +(126,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +aRf +agb +aRf +mBh +aRf +aYh +aYh +akh +aKr +akh +dMh +aYG +aYG +aYG +aYG +aYG +aGi +aGi +aGi +aYG +mAl +akh +akh +akh +akh +bxz +bxz +bxz +aWQ +aWQ +aWQ +aWQ +akQ +uma +akQ +akQ +akQ +aql +aWQ +aWQ +aWQ +fuY +fuY +lFD +aYo +aYo +ahw +aKX +aKX +aWQ +aWQ +aWQ +aWQ +gdI +aKX +aKX +xDo +abd +aZJ +ahw +avd +fuY +fuY +aWQ +aWQ +aWQ +bGu +bFm +aqQ +bCF +apK +abX +bCw +aEu +aLN +aUK +aUK +aFl +aRM +aMz +aTS +aZS +aWQ +aWQ +bkd +aFs +aFs +aFs +aFs +bjC +biG +bje +tnb +beP +apt +bjJ +aYR +gWk +oOp +aBr +amA +bzs +nAX +orn +aSM +bLj +kJN +wTl +aux +aRx +aEb +aCH +aCe +aBP +aAI +avG +asj +abv +jAz +bBX +ncX +aAd +amn +elc +khZ +khZ +elc +uiD +vBm +hXO +jYw +aZE +gFu +pcW +dLI +eKC +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +cPl +lPT +lmu +lmu +hOS +psz +srH +knu +shw +wfm +ozt +ozt +mbG +aWQ +qlE +htf +lmu +lmu +viw +aWQ +aWQ +aPQ +aVn +ukS +aWQ +aWQ +lmu +htf +lmu +lmu +jKL +xsM +wvb +aWQ +aWQ +aay +"} +(127,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +aRf +aRf +aVg +aVg +aRf +aEi +aRf +dMh +akh +aYG +aYG +aGi +aGi +aGi +aGi +azW +azW +aGi +aGi +aGi +aGi +aYG +akh +aCM +aCM +akh +akh +bxz +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aCN +akQ +aHE +atC +akQ +axt +aWQ +aWQ +aWQ +fuY +noa +els +aYo +cbq +aKX +aKX +jQS +aWQ +aWQ +aWQ +aWQ +aKX +auu +abd +aYo +aYo +ahw +nEz +tDt +fuY +aWQ +aWQ +aWQ +bGs +bxu +deS +bCF +bkv +aHU +cRM +aEu +aLN +aUK +aUK +aFl +aEu +avW +aWQ +aWQ +aWQ +aFs +aFs +eaR +bjV +oDA +bjI +bjv +hzs +biA +lMH +bjy +bwT +aKY +aYR +aOP +bag +aSM +aSM +aOP +fxe +aSM +aSM +alb +xbb +aoV +pHh +gsy +drW +mlO +nKQ +oZB +aHk +axv +lBy +eHt +bBX +vBD +mjK +aAd +amn +elc +khZ +aje +kzh +mek +alz +alz +alz +gFu +beF +djC +nGb +dLI +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +xRe +lPT +sRv +lmu +lmu +lmu +lmu +mXF +jZH +ozt +ozt +ozt +drR +aWQ +aWQ +jQC +kFc +lmu +lmu +hOS +eve +eve +eve +lUW +eve +lmu +lmu +lmu +lmu +pLu +cPl +aVK +iKe +aWQ +aWQ +aay +"} +(128,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aVg +agb +agb +aVg +aVg +aRf +aRf +aRf +azW +aYG +aYG +aYG +aGi +aGi +aGi +aGi +aYG +aYG +aGi +aGi +aGi +aYG +aYG +aYG +aCM +aCM +akh +akh +akh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +akQ +akQ +aHE +acs +avx +aYj +aHE +aWQ +aWQ +aWQ +aWQ +seY +kWA +aYo +aUt +kFf +aKX +kNj +agC +aWQ +aWQ +bvi +auu +abd +aYo +aYo +ajS +aiM +dux +rFD +fuY +aWQ +aWQ +aWQ +bxu +bFn +bEa +gHA +bzo +aDw +eEE +aEu +aLN +aUK +aUK +aqg +aho +aWQ +aWQ +aWQ +aFs +aFs +aFs +dRm +bjW +biA +lMH +biA +cgC +bjf +aFs +tnb +tnb +aFs +aFs +nCp +afS +kzu +aOd +xeV +iOF +aYB +iOF +aHS +gsy +prG +aOj +ahh +feU +mlO +nKQ +oZB +aeX +axK +asj +brs +fwT +aCs +vla +aAd +amn +elc +aje +aje +hFu +mek +alz +alz +eYI +beF +ebp +eTn +pbW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ltR +lPT +lmu +lmu +lmu +lmu +lmu +nLq +fuL +ozt +ozt +ozt +aWL +iKr +aWQ +aWQ +vjA +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +hOS +lmu +pLu +cPl +cPl +aWQ +aWQ +aWQ +aay +"} +(129,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +aVg +aVg +agb +xUq +aAe +aGi +aGi +aYG +aGi +aGi +aGi +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aIx +aYG +akh +akh +aTp +aKr +akh +aWQ +aWQ +aWQ +aWQ +aWQ +adt +adt +avH +aEn +apP +aEn +ahP +yaz +aWQ +aWQ +aWQ +xqq +aXS +aYo +aYo +aUt +aMe +aMe +aMe +aMe +aMe +aMe +abd +aYo +aYo +ajS +aiM +aKX +rFD +fuY +fuY +aWQ +aWQ +aWQ +bxu +bBz +bEb +vjy +bzo +aDw +aDw +iGU +iGU +aMw +iGU +iGU +aYR +aFs +aFs +aFs +aFs +sEF +aFs +bka +bjX +bjQ +bjI +bjE +bjp +avf +lZT +biO +rId +rId +udv +aze +wLm +kzu +joX +xJb +qQo +rMJ +obw +dSU +ask +aoV +rog +kzu +aaI +aaI +aFH +aFH +tbO +ayI +aYN +aYN +kBO +kBO +kBO +kBO +cvI +aFH +tKQ +tKQ +jao +xXu +uGN +uGN +loN +hua +aDB +lnM +eTn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +mqb +run +lmu +ofw +ofw +ofw +lmu +lmu +dod +ozt +wxr +ozt +sBg +aoC +ddx +ddx +gpx +kFc +lmu +lmu +lmu +mcT +fCl +lmu +lmu +lmu +lmu +lmu +sRv +pLu +cPl +cPl +aWQ +aWQ +aWQ +aay +"} +(130,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRf +aRf +aRf +aRf +afE +atn +atn +atn +aAe +aGi +aGi +aWQ +aWQ +aGi +aGi +aIx +aYG +aYG +aAV +aYG +aIx +aYG +aQy +aYG +aYG +aYG +akh +akh +akh +akh +akh +aYh +aWQ +aWQ +aWQ +aWQ +akQ +akQ +aHE +acs +aAF +aYj +aAX +aWQ +aWQ +aWQ +aWQ +tzw +pDo +aYo +aYo +aYo +aYo +aZJ +aYo +aYo +aYo +aYo +aYo +aZJ +aYo +ahw +nEz +nRs +rUW +fuY +aWQ +aWQ +bJc +bIe +bGv +bFo +bEc +bCF +bzo +aDw +blR +aqe +buf +bqT +bla +bla +bhg +aFs +aGe +hiY +bRp +pGV +aFs +aFs +dHn +aFs +aFs +bjF +bjq +cbD +aIX +cbD +cbD +cbD +pkN +hFY +fcO +kzu +kzu +akT +gsy +gsy +gsy +bNm +dZV +dZV +utY +kzu +aRJ +aRJ +aFH +aFH +aFH +azt +xPP +xPP +awe +awe +awe +atb +atb +atb +hFu +gNX +atb +atb +bDg +qTw +lOg +aWQ +aWQ +qid +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bsS +tkM +blN +aaF +cPl +aie +cyN +kFc +iIt +hWi +ozt +ozt +ozt +fII +tWI +tWI +bdA +lmu +lmu +htf +cTJ +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +pLu +bQO +aWQ +aWQ +aWQ +aWQ +aay +"} +(131,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +aRf +aRf +aRf +atn +atn +atn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aYG +aGi +aYh +aYh +dMh +dMh +aYh +aYh +aYh +aWQ +aWQ +akQ +akQ +aCN +akQ +akQ +aHE +akQ +pRW +aWQ +aWQ +aWQ +fuY +ush +oXa +aYo +aYo +aYo +aZJ +aYo +aZJ +aYo +aYo +aYo +aYo +aYo +ajS +aiM +dux +rFD +fuY +aWQ +aWQ +aWQ +bJA +bIf +bGw +axm +bBl +bCG +kPA +bCD +blR +btC +btR +bla +bla +bla +bhg +aFs +bkz +mME +epe +pGV +pGV +epe +epe +epe +hXk +rId +bjr +bjg +biV +bjg +bjg +pfy +udv +aze +wAV +aRx +mdu +sNY +mIM +anh +vBV +ofW +wKh +hba +tkw +kzu +aRJ +aRJ +aFH +adR +vyW +azG +sfJ +iju +iju +iju +ast +bFM +grU +cMQ +iqE +iqE +atb +atb +atb +atb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +pbu +lmu +pLu +aWQ +aWQ +aPh +aZN +qKO +vjA +hWL +xSo +ozt +ozt +aRU +aZv +lmu +lmu +lmu +uck +iKr +lZF +vjA +jQC +lmu +lmu +qlE +uck +uck +lmu +pLu +air +aWQ +aWQ +aWQ +aWQ +aay +"} +(132,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +acA +acA +aRf +aRf +atn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ard +aiL +aiL +sew +aiL +aiL +aYG +aYG +aYG +aoy +aYG +aGi +aYh +aYh +akh +akh +akh +aYh +aYh +aYh +aLw +aLw +akQ +aFC +aHJ +aHJ +grn +aHJ +akQ +aWQ +aWQ +nWR +tRE +abd +aZJ +aYo +aYo +aYo +ajS +aXZ +aXZ +aXZ +aXZ +aXZ +xWS +aXZ +lEo +uxd +dux +rUW +aWQ +aWQ +aWQ +aWQ +aWQ +bxu +bGx +bFp +bCG +aad +aWu +abX +adz +aqe +bug +bla +bqT +bla +bhg +aFs +aFs +aZH +wMS +bke +epe +yjY +aFs +aFs +aFs +aFs +aFs +bin +bin +bin +bin +aFs +aFs +ckM +rsi +kzu +kzu +sSi +qkg +gsy +gsy +cFI +gsy +hWz +lSr +kzu +bri +bri +aFH +abK +brz +aAr +atG +brt +auZ +atG +ata +uZn +aDR +aBZ +aDR +cvO +qXj +fUo +vzg +atb +aVi +aVi +aVi +aVi +aVi +aVi +aVi +aVi +aVi +aWQ +aWQ +aWQ +aWQ +aWQ +uEw +lmu +lmu +lmu +aWQ +aWQ +aWQ +aWQ +ajq +ddx +vjA +jZH +ozt +ozt +ozt +alE +lmu +lmu +eWC +iKr +ddx +ddx +ddx +vjA +lmu +htf +eWC +iKr +vjA +vsc +tnu +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(133,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ard +aiL +aiL +aiL +aiL +sew +ard +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aXx +adV +aPi +aPi +aiL +aYG +aYG +aHb +aYG +aYG +azW +akh +akh +akh +akh +aKr +akh +akh +akh +aLw +aLw +akQ +akQ +akQ +akQ +akQ +akQ +aWQ +aWQ +qCw +dai +aYo +aYo +aYo +ajS +aXZ +aXZ +aiM +aKX +aKX +cSg +aKX +aKX +aKX +aKX +glT +dux +kGV +aWQ +aWQ +aWQ +aWQ +aWQ +bJe +bIg +aqQ +vDF +aad +aWu +wmO +abX +bCx +aqe +buh +buc +bla +bla +bkO +sXs +aFs +aFs +aFs +aFs +aWW +aFs +aFs +btm +btj +aFs +qIq +aqP +aqP +aqP +aqP +aqP +aFs +pGV +cPP +kzu +aZF +xJb +rxl +qyP +ask +jII +seu +aoV +qjw +aaI +bqq +brD +aFH +xVJ +bgC +hOI +fpp +fpp +aeT +fpp +tGg +bFM +mLl +cKq +fcR +eHC +apD +fzS +kta +biH +uZb +uZb +bdk +aVi +bcN +bcC +bcC +bcu +aVi +aVi +aWQ +aWQ +aWQ +aWQ +oZg +lmu +lmu +lmu +fHw +umH +aWQ +aWQ +ddx +ddx +gpx +mMV +ozt +ozt +ozt +aXP +lmu +chq +iKr +ddx +ddx +ddx +aWQ +aWQ +aWQ +chq +iKr +ddx +gpx +jQC +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(134,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWt +aWt +aWt +ada +pAF +aLd +aLd +aLd +aLd +aLd +aLd +aLd +aLd +aLd +aXx +aXx +aXx +adV +aPi +aiL +aYG +aYG +aYG +aYG +aIx +azW +aYG +akh +aTp +akh +akh +akh +akh +akh +aLw +aLw +gmy +akQ +akQ +akQ +aWQ +aWQ +aWQ +aWQ +aWQ +aXS +aZJ +aYo +ajS +aiM +qCw +aza +ryF +fzW +nzx +mJN +nzx +nzx +nzx +mJN +mJN +mJN +mJN +aza +aza +aWQ +aWQ +aWQ +aWQ +bxu +bGy +bCF +apK +wmO +wmO +aaq +aca +blR +bui +bud +btU +bfA +bjG +bif +bif +bif +bif +bif +bif +bkb +aOf +aOf +aOf +qAr +aOf +aOf +aOf +aOf +aOf +aOf +lOe +bif +bhS +kzu +abA +aCW +oLj +crJ +ask +gsy +jKz +ljV +aQp +aaI +brF +bql +aFH +vAB +fWg +ayb +wnh +evO +aeT +faE +fpp +atb +vnM +wwd +uBm +cOa +apD +aje +tzA +asK +lLU +bcw +oRP +xTl +bcO +bcw +lLU +bcv +bcm +aVi +aWQ +aWQ +aWQ +aWQ +ahc +lse +lDM +lmu +bgv +aDa +tkM +uck +knu +ddx +gpx +jZH +ozt +ozt +ozt +vdg +nLq +htf +knu +ddx +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ddx +ddx +gpx +lmu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(135,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWt +ada +aXx +aSB +bai +aSB +aSB +aLd +aLd +aLd +aLd +aLd +aLd +aXx +aSB +aXx +aXx +adV +ard +nGS +nGS +aGi +aGi +aGi +aGi +aYG +akh +akh +akh +acN +akh +aAk +akh +aLw +azB +aLw +akQ +akQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWR +aWR +wGq +aWR +aWR +aza +aza +atx +vuX +gQU +mJN +aTg +bmS +aqL +aEc +atx +azM +pnv +aLM +aza +aza +aWQ +aWQ +bJf +bxu +bGz +vjy +apK +wmO +wmO +wmO +abX +oKu +bbq +aRJ +btV +blb +bgw +bgw +bgw +bgw +aDZ +bhW +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +biX +biQ +biD +bgV +bgV +aSt +aMZ +kzu +ogW +lye +avI +aUr +ahh +ahh +qmw +kzu +kzu +kzu +aqe +brf +aFH +aFH +yhc +snR +yhc +aFH +brv +aFH +aFH +atb +hlA +fwR +muE +rsk +bqR +omU +tzA +aEh +gtn +gtn +bcP +bdb +bcP +gtn +gtn +lLU +kMP +aVi +aWQ +aWQ +aWQ +aWQ +aXn +ajM +alP +ahc +ahc +aGu +eGy +lmu +nwp +knu +shw +wma +ozt +wxr +ozt +sBg +hCE +lmu +nwp +knu +bdA +jQC +aWQ +aWQ +kFc +aWQ +ddx +ddx +bdA +kFc +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(136,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ada +aXx +amK +aSB +aSB +aSB +aSB +aSB +bai +aSB +aHN +aHN +aHN +aSB +aSB +aXx +aXx +aXx +aWQ +aWQ +aWQ +aGi +aGi +aGi +aYG +aYG +aKr +akh +akh +akh +akh +aCM +aCM +aJD +aJD +aJD +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +asM +lAk +dus +gog +gog +gog +pRB +boP +aJF +raF +bnb +aEq +aSE +ahY +dkC +alk +aAK +qpJ +hQB +ovD +kjk +iEu +aza +bKQ +bKe +bJg +bIi +bGA +bFq +apK +wmO +wmO +wmO +abX +blR +bqq +bbq +btW +btN +pbj +bqT +btG +btF +bkq +bkh +beM +bha +btt +btn +bha +uyn +aSc +aSc +nYc +nYc +aSc +bsP +bhl +big +bhT +kzu +kzu +aaI +aaI +kzu +kzu +aaI +aaI +kzu +brG +aqe +aqe +aqe +bqz +aFH +kqs +pDI +kqs +aFH +tZJ +tZJ +tZJ +atb +spr +afD +aBC +aAT +uEA +omU +tzA +agr +lLU +bcw +bcA +ilp +tsc +lQY +bnB +bcw +bco +aVi +aDw +cKD +hhR +hqm +aZt +lsw +aPk +aPk +ajM +alP +ahc +ahc +aGu +aYr +aSK +aEz +ozt +ozt +ozt +iWI +aJt +lmu +lmu +qlE +kFc +lmu +xUQ +wDy +qlE +qlE +knu +bdA +qlE +lmu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(137,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +jNe +aXx +anb +aXx +ech +aXo +aLb +aSB +aSB +aSB +ajl +aWE +aWE +aSB +aSB +aSB +aXx +aLd +aLd +aWQ +aWQ +ict +aGi +aYG +aYG +azY +akh +aAk +akh +akh +aTp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +tXt +tPz +dus +gog +gog +gog +nyk +nzx +ulw +aCF +bzu +vhz +aAK +nVR +dZY +bmN +ryF +ahY +lrg +uSQ +uAM +rOL +aza +bKR +bKg +bJh +dOt +bGB +bFr +apK +wmO +wmO +wmO +abX +aSO +arB +bts +btX +btO +aSc +aSc +bKt +nIV +pta +lkC +nIV +bKt +bKt +bKt +aQZ +aSc +aSc +mtu +hkX +qwR +aSc +aSc +bhv +big +bhT +kzu +bsl +brf +aqe +kzu +kzu +brk +brK +kzu +aqe +aqe +brA +aqe +bqy +bhv +bfr +lSP +bfa +fVG +bth +xXw +eqU +atb +atb +atb +aMN +nIg +jdU +aje +wCb +biH +tsc +bdz +bcR +aVi +bcQ +ulc +bcD +rJj +tPu +aVi +aDw +nMw +nMw +atv +atv +atv +atv +atv +lsw +aPk +aPk +ajM +alP +aGu +aSz +ygK +auV +auV +auV +aSa +aPb +lmu +lmu +lmu +lmu +eGy +lmu +lmu +lmu +lmu +vsc +lmu +lmu +lmu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(138,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aSB +aXx +aXx +apb +aXo +aXo +aXo +aLb +aXx +aSB +aWE +aWE +aSB +aSB +aSB +aSB +aSB +aLd +aLd +aLd +aWQ +aWQ +ard +aXT +aXT +gBq +gBq +aBn +aXT +aXT +aVc +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +uyg +iRK +tPz +tPz +tTE +jTS +ghT +gog +irC +nyk +mJN +piP +kld +bnl +yko +xVC +ppT +efe +xIE +mJN +xou +axI +jAJ +aiN +aJB +aza +aqQ +bKh +aqQ +bIj +bCG +aad +aWu +wmO +wmO +wmO +aaq +aca +blJ +bhd +bgY +bgY +aSc +aSc +cJB +aMS +mnr +aUm +txX +qQh +sis +bKt +abz +aSc +aPm +aPm +xqf +nSY +wQF +rPN +bhv +big +bfa +bsr +aqP +bsc +aqP +cEk +aqP +aqP +aqP +brI +aqP +aqP +aqP +aDI +aqe +bhv +bfr +lSP +bfa +aFG +kqh +bql +bbq +aRJ +aRJ +atb +atb +elc +als +gNX +oWl +atb +aVi +aVi +aVi +aVi +aVi +ulc +bnB +bcn +aVi +aVi +aDw +udB +udB +xZh +aul +aul +aul +aul +aVM +atv +atv +lsw +ajM +dWi +avN +hxF +nEr +nEr +xZE +qAk +aGV +lmu +lmu +lHP +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +lmu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(139,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +wQB +aSB +aXx +aOI +aXo +aXo +aXo +agY +jAK +aXx +aXx +anb +aXx +anb +aSB +aSB +aSB +aHN +aHN +aLd +aLd +aWQ +aWQ +aWQ +aYu +aYu +ayt +aTH +aFL +aVc +aVc +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bvM +gKw +buQ +tPz +tPz +buQ +dus +bvD +gog +gog +tEY +nyk +mJN +kht +uAM +slv +wqX +mJN +aza +aza +aza +mJN +sSk +ryF +hyA +mJN +mJN +bLo +aqQ +bKi +bJi +bqF +mjb +aWu +wmO +wmO +wmO +wmO +wmO +abX +blJ +bhg +bKt +aYO +bKt +vTY +mNa +aHR +xad +aIZ +aIZ +sbS +emA +bKt +abz +aSc +ssV +fJr +aBl +lKp +ffC +aSc +bhv +big +bhV +aOf +aOf +aOf +aOf +aOf +aOf +aOf +aOf +aOf +aOf +aOf +aIE +aFG +brC +bhv +bfr +lSP +bfa +aFG +pEZ +bqz +bql +bbq +bri +atb +ciw +bfy +bfo +trZ +tPt +rPB +aWQ +aWQ +aWQ +aWQ +aVi +jMo +bnB +qam +aVi +aWQ +aWQ +aWQ +aWQ +qtZ +obv +aFE +aFE +ksC +ahr +aul +aul +aVM +lsw +aPk +ajE +rWN +adQ +adQ +adQ +jRt +xyD +oMU +ahc +ahc +ahc +lse +lDM +lmu +lmu +eGy +sRv +lmu +iRw +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(140,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aLd +wQB +fRL +anb +aXx +aOI +aXo +aFo +aWt +owd +aXx +aXx +aXx +jNe +aXx +aXx +aSB +aSB +aWE +aHN +aLd +aLd +aWQ +aWQ +aWQ +aTH +aTH +axX +aFL +aqJ +aqJ +aLd +aWQ +aWQ +aWQ +aWQ +aWQ +jzu +fwi +tPz +tPz +tPz +tPz +tPz +bvG +gog +gog +gog +tEY +nyk +mJN +eYf +bQU +bnm +wGe +mJN +azh +azM +akR +aEc +aJF +azM +aVJ +nzx +buG +tra +bKS +bCk +aqQ +vjy +apK +wmO +ayW +bzc +bzc +alo +wmO +tkp +blJ +bhg +bKt +qTH +bKt +kkz +aTL +aXM +oIb +yfb +ait +ipr +bKt +bKt +afA +aSc +nSH +axG +azX +lKp +aWO +daF +bhv +aDL +bhW +bFG +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgS +xJV +brE +aqP +bhm +bfr +lSP +bfa +aGR +aqP +aqP +aqP +btc +uYS +brg +bqX +bfq +lIT +beZ +bqG +bqH +aWQ +aWQ +aWQ +aVi +aVi +ulc +bnB +bcn +aVi +mdd +aWQ +aWQ +amp +aXf +eyW +eyW +eyW +aNd +tse +aFE +ksC +ahr +aVM +atv +atv +alm +aLS +adQ +adQ +amq +aPk +aPk +aPk +aPk +aPk +ajM +alP +ahc +ahc +ahc +aGu +lmu +nRT +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(141,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aLd +aSB +bai +aSB +wQB +aqn +aWt +aWt +dVK +aWt +aWt +aWt +aWt +aWt +wQB +aXx +anb +aSB +bai +aSB +aLd +aLd +aLd +aLd +aWQ +aqJ +upG +upG +aqJ +aqJ +aYd +aLd +aWQ +aWQ +aWQ +aWQ +buQ +rDf +tPz +bvE +lte +bvP +tPz +ewT +jYR +teK +gog +gog +bvu +nyk +iFH +ajT +bnC +bvl +ara +mJN +mYg +bmT +jLh +tso +ajT +kQh +ara +aow +iTY +ucG +buw +wQe +cJx +xva +apK +wmO +ayH +bDf +bCE +afk +alo +abX +gDX +bhg +bKt +etQ +bKt +vqf +btH +cBR +aHN +btb +btb +aHN +bKt +wUZ +ccV +aSc +aSc +aDz +aue +jfo +gNL +daF +bhv +big +bfa +bss +bha +bha +bhl +bqI +pbj +pbj +pbj +brJ +pbj +bfr +aIH +aHx +asc +asc +fGy +hlf +bhZ +asc +asc +asc +asc +asc +asc +bfS +bfG +tFS +bGV +beZ +bqH +pDk +bhF +aWQ +aWQ +aVi +mKC +drO +bcD +bcx +bcp +mdd +aWQ +aWQ +amp +sRx +cpv +pdc +rXk +rXk +rXk +aKK +aNd +pJS +tEl +mwr +mwr +aFb +adQ +adQ +adQ +uDq +atv +atv +atv +atv +atv +lsw +aPk +aPk +aPk +ajM +alP +oMU +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(142,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aLd +aLd +aSB +aSB +aXx +esz +aWt +pNh +rNu +csI +wQB +wQB +aWt +aWt +aWt +owd +apb +aXo +aHm +aSB +aSB +aLd +aLd +aLd +aLd +aYd +aYd +aqJ +hSj +aYd +aYd +aLd +aLd +aWQ +aWQ +khv +tjc +tPz +rEp +buX +bvU +aWQ +aWQ +vRB +tPz +dus +gog +ghT +tEY +nyk +mJN +ajT +aTu +aCF +drf +aAK +nWA +lIc +iyJ +wop +mHX +qvP +azv +aow +ejn +jQf +aSo +bKj +aqQ +bIk +apK +wmO +ayH +ctJ +bCK +bCE +apK +abX +buj +bhg +bKt +aiA +bKt +cuI +afG +pKP +aHN +uuD +pdP +aHN +pKA +kmc +aOC +cNW +aSc +aSc +aSc +fod +aSc +aSc +bhv +big +bfa +bst +bsm +bhu +bhm +bhd +bgY +bgY +bgY +bgY +bgW +bgT +bft +bgQ +bgw +bfZ +bfZ +bgw +bgw +bgw +bgw +bgw +bft +xxd +bfZ +bfT +bfz +bfz +bfp +beZ +ajB +bek +aqe +cdz +aWQ +aVi +bcS +bcw +bcE +bcw +bcq +mdd +aWQ +aWQ +eoW +aLz +lXR +eyW +bPs +fRr +arh +yja +eyW +rWI +azg +bLB +bLB +azg +vHc +adQ +adQ +wdi +jxs +aul +aul +aul +aul +aul +aul +aul +aVM +lsw +ajM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(143,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aLd +gSE +gSE +gSE +gSE +gSE +gSE +aQl +gSE +aQl +gSE +aQl +gSE +aWt +aWt +abx +aXo +aXo +aXo +aHm +aSB +aYd +aYd +rLS +aYd +aYd +aYd +aqJ +aqJ +lhA +aYd +aYd +aLd +aWQ +aWQ +buQ +tPz +tpE +buX +buy +aWQ +aWQ +aWQ +aWQ +aWQ +sJK +ghT +gog +tEY +nyk +mJN +aqE +axI +efe +aai +mJN +aGp +axI +yfW +mJN +ajT +ara +mJN +mJN +bwa +jQf +aqQ +bKk +aqQ +jNW +apK +ayW +bEd +bDh +bCL +bCF +apK +abX +blJ +bhg +bKt +fhk +ewH +rAU +uZe +tlq +hhg +kzy +bkZ +aHN +mXt +aEf +arI +uDy +rpF +odT +ceR +att +abz +tCw +bhv +big +bfa +aFG +rcu +bhv +bqI +brV +apL +apL +apL +apL +bgX +brp +bgq +bgR +pbj +apL +apL +pbj +brx +pbj +pbj +brp +bgq +bgi +xZT +bfU +pbj +bqS +bfq +beZ +ajB +aFG +aqe +aWQ +aWQ +aVi +bcT +bcw +bnB +bcw +bcr +mdd +aWQ +lAI +nUX +idw +jfI +aWQ +aWQ +jyt +jfI +oPv +rXk +bsy +azg +kgb +axs +bLB +adQ +aLS +aLS +ayp +qyq +tse +aFE +aFE +aFE +aFE +aFE +rvh +ahr +aul +gEs +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(144,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +apN +arM +aRX +aRX +hgk +aRX +aRX +aRX +aRX +arM +aQl +aWt +aWt +aXo +aXo +aXo +aXo +aXo +aSB +aYd +aYd +aYd +lcJ +aYd +aqJ +aqJ +aqJ +aYd +aYd +aYd +aLd +aWQ +aWQ +nSd +tPz +ina +bvV +buy +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ghT +gog +tEY +nyk +mJN +bXP +bXP +mJN +mJN +mJN +mJN +mJN +mJN +mJN +aHr +rjT +hwB +bmw +bLw +jQf +oBJ +bxu +bJj +vjy +apK +ayH +bDf +bDi +bCM +bCF +apK +aUF +blJ +bhg +nIV +enW +cxz +aHR +xPd +agI +hhg +mNL +aaa +aHN +bKt +bKt +anx +bKt +bKt +bKt +bKt +bKt +bKt +bKt +bsF +bsA +bfa +aFG +rcu +bhv +phd +apL +apL +tOX +pPl +apL +apL +tzh +acH +gNV +tzh +apL +apL +apL +apL +apL +apL +apL +oJL +tzh +apL +brb +pOu +pbj +bfr +bfa +pbj +bqu +bqm +aWQ +aWQ +aVi +aPP +bcw +bnB +anY +kMP +mdd +aWQ +rem +rXN +idw +aWQ +aWQ +dQc +aDd +aTV +eyW +eyW +aUN +azg +inF +qKT +bLB +dQP +agX +agX +aRN +dZw +rXk +rXk +rXk +rXk +cpv +aKK +aNd +aFE +aFE +tse +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(145,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +awQ +dpa +axB +arM +axB +aDo +urH +nWN +ucs +arM +wWv +aWt +aWt +aXo +aXo +aXo +aXo +aXo +aXx +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +amV +aqJ +rLS +aYd +aLd +aLd +aWQ +aWQ +aWQ +bvP +tPz +mid +bvY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ghT +gog +tEY +nyk +bXP +boO +alu +bXP +kyy +aDV +fOq +mJN +xjc +byL +suK +xwE +aza +aza +bLy +bLq +aqQ +vdP +bJk +bCF +apK +ayH +aJi +bDj +bCN +bCG +apK +abX +buk +bhg +nIV +aun +aHR +aKp +aTL +tlq +hhg +aob +aaa +aHN +vFy +aFa +llX +yfv +aUk +yfv +jic +xCi +noH +bKt +bhv +bsB +bfa +aFG +rcu +bsh +bsd +brO +apL +bQZ +wXS +lIy +pHG +tPV +boQ +bpa +boQ +nuI +hrw +aiw +fmz +vpf +szW +apL +rMl +wnc +apL +apL +auL +bqT +bfr +bfa +pbj +bqv +aWQ +aWQ +aWQ +aVi +oij +lQY +bnB +qhd +bcm +mdd +aWQ +bur +vEu +idw +nee +dQc +aDd +aTP +lXR +aNX +aNX +fmU +azg +aCY +azg +azg +jXu +aMT +aMT +aMT +avM +hJq +oPv +eyW +eyW +eyW +eyW +rXk +rXk +rXk +aKK +amp +amp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(146,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +awQ +lCv +gSE +gSE +gSE +awQ +woz +oOA +lYQ +ivF +riM +aPi +aWt +fFC +aXo +aXo +aXo +agY +apx +aKW +mDB +aKW +mDB +aKW +aqJ +aqJ +aYd +aYd +aYd +aLd +aWQ +aWQ +aWQ +aWQ +tPz +tPz +isf +xyA +buy +aWQ +aWQ +aWQ +iua +nnU +gog +gog +tEY +aza +aza +bXP +bXP +mJN +hJP +bnb +aEq +kIK +hgq +ykA +bzu +aEq +aza +aza +aBB +aVy +aqQ +bKl +aqQ +bxf +apK +ayH +axg +bDk +bCG +aad +aWu +abX +blJ +bhg +nIV +enW +cxz +aKp +aTL +aHX +aHN +qea +rIw +hhg +clB +ula +tmS +pLp +nCC +ocf +lDg +vPB +end +bKt +bsG +bsC +bfa +bsu +bsn +bsi +bse +brO +apL +vcS +mYS +jKG +rML +rOt +bpz +rOt +ahO +apL +riE +kXi +xfv +aiw +qHb +abF +iGs +aAn +aQR +apL +iki +pbj +bfr +bfa +pbj +bqw +aWQ +aWQ +aWQ +aVi +aVi +bcJ +bcD +iCg +aVi +mdd +aWQ +aWQ +awD +idw +wVN +jfI +bPS +jfI +eyW +aJW +aJW +aJW +eyW +eyW +aAy +lhH +anq +atR +aMT +aMT +axQ +gIa +aNX +aNX +eyW +aKe +aVe +oPv +alc +eyW +jqD +amp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(147,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +bcy +wzk +arM +arM +aMu +aUP +pvj +arM +lkz +aMu +bLC +aPi +aPi +aWt +fFC +aXo +aFo +aWt +aWt +aTH +aTH +aTH +aTH +aTH +apf +chj +aYd +aYd +aYd +aLd +aWQ +aWQ +aWQ +aWQ +tPz +bvP +tPz +rFF +adS +aWQ +aWQ +bvN +sHG +ghT +gog +gog +tEY +aza +hkt +uUW +aHD +fjZ +hYj +iTz +rSE +aAK +gBL +alR +amQ +jLh +aza +aza +bLy +jQf +bKT +bxu +aqQ +bxl +apK +bFt +aVT +aVT +aVT +aWu +wmO +tkp +blJ +bhg +bKt +dFd +yfb +iNC +afG +aJV +aHN +brW +wIR +hhg +ifi +tPB +tKS +aMF +sMj +bKt +uYT +aQa +hNY +daF +bsH +big +bfa +aGR +aqP +aqP +bsf +brY +apL +apL +lhQ +apL +apL +apL +acH +ndu +oku +apL +apL +apL +apL +apL +apL +apL +kpK +azk +kXz +tzh +iki +pbj +bfr +bfa +bqI +aFG +aWQ +aWQ +aWQ +aWQ +aVi +rXc +ahB +mOY +aVi +aWQ +aWQ +aWQ +aWQ +ccD +eyW +eyW +eyW +eyW +eyW +aTP +eyW +eyW +eyW +aLh +anD +ssC +blW +aMT +aMT +aMT +aMT +rGo +aJW +aJW +eyW +aEk +eyW +eyW +eyW +azw +oFr +amp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(148,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +jpU +urH +sDQ +qcT +cfR +woz +arM +juY +qFe +arM +aQl +wQB +aPi +aWt +aWt +aWt +aWt +aXx +aWt +aTH +aTH +aTH +aTH +aTH +apf +aqJ +aYd +aYd +aLd +aLd +aWQ +aWQ +aWQ +aWQ +agE +tPz +tPz +tPz +buJ +bvP +tPz +tPz +dus +gog +ghT +gog +tEY +bHj +atx +yfJ +aaE +iXv +cnL +gtC +aEq +ryF +uIS +mKM +efe +gcZ +mJN +fyR +bLz +jQf +bKU +bKj +bJl +mTj +apK +wmO +wmO +wmO +wmO +wmO +xtF +qOZ +blJ +bly +bKt +aiA +bKt +tiZ +kBm +ghv +aHN +qea +rIw +hhg +aZV +bto +tCR +nCC +bKt +bKt +bKt +wYU +wYU +daF +bsI +big +bhX +bhI +bgY +bgY +bgY +brZ +iRZ +mbj +rzG +nxG +ufv +iXm +kdN +reN +pjR +kSL +wFt +vxP +awG +pTQ +apL +apL +rYU +lJx +aSe +tzh +iki +pbj +bfr +bfa +pbj +aFG +bqn +aWQ +aWQ +aWQ +aVi +veb +ajR +lFd +aVi +aWQ +aWQ +aWQ +aWQ +hQx +aZR +eyW +aNX +eyW +eyW +eyW +fRr +eyW +aLB +eyW +eyW +xWm +auN +aMT +aMT +aMT +atR +oJb +eyW +eyW +fRr +eyW +qYv +aNX +aNX +aNX +aNX +amp +amp +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(149,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +aQk +dcG +axB +htF +axB +axB +arM +yiM +mjZ +aoP +aQl +gSE +wQB +aPi +aWt +aWt +aXx +anb +aXx +ajL +ajL +ajL +aTH +aFL +aqJ +aYd +aYd +aYd +aLd +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +lEh +dps +tPz +tPz +tPz +tPz +tPz +dus +gog +gog +gog +tEY +ajU +emF +tqh +efe +efe +aqp +aqp +aqp +mJN +aSE +qxn +hLw +boP +mJN +bLy +buJ +jQf +bKV +bxu +aDe +bCF +apK +wmO +wmO +wmO +wmO +wmO +abX +pTn +blK +bhe +bKt +etQ +bKt +afe +oHB +nAl +hhg +mNL +aaa +aHN +aDx +btp +tmS +eau +emC +bKt +aAQ +kxr +lCS +bKt +bhv +big +bhT +alp +apL +apL +tzh +tzh +apL +apL +apL +nlB +apL +apL +lYF +igo +axH +riL +vGw +aoI +igo +vre +aQM +apL +apL +nlB +apL +apL +iki +pbj +bfr +bfa +beM +bqx +bqn +aWQ +aWQ +aWQ +aVi +lpa +aaz +ugE +aVi +aWQ +aWQ +aWQ +aWQ +eTC +eyW +eyW +adG +atT +bce +eyW +eyW +eyW +eyW +eyW +vlV +adU +vgO +aMT +aMT +aMT +aMT +vEO +kVu +eyW +eyW +eyW +eyW +aJW +aJW +aJW +aJW +eyW +eyW +qvs +awM +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(150,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +gSE +aQl +aQl +aQl +avq +sPS +wWv +bLC +gSE +aQl +avE +wWv +avE +gSE +gSE +gSE +gSE +uWv +aXx +aXx +aSB +aXx +ajL +ajL +ajL +aTH +aqJ +aqJ +lhA +fue +aLd +aLd +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bwj +qzx +buP +tPz +tPz +buQ +rDf +jYR +teK +gog +gog +xpf +mJN +mJN +aGm +wKN +rSW +mJN +hRm +bmz +bmz +bmO +arL +bmE +pPN +buW +buU +buK +jQf +aqQ +bKm +aqQ +auo +apK +wmO +wmO +wmO +wmO +xtF +asz +uFh +blL +bKt +bKt +etQ +bKt +xld +qVi +vzP +hhg +aob +aaa +aHN +aoH +tPB +bqp +aWI +wHP +aeI +aXV +cMj +aXV +nIV +bhv +aDL +qwL +bhJ +oVB +gsP +egp +aZi +skz +oDS +acH +aRi +soX +apL +bsU +aOa +axH +aQM +aQM +oIq +aIa +gka +aQM +gxs +fhy +ocm +ocm +scH +iki +pbj +bfr +bfa +bqJ +bqy +bqo +aRJ +aWQ +aiy +aiy +heg +qQc +aMp +aVi +aWQ +aWQ +aWQ +aWQ +aqG +aOu +aqG +aqG +rzm +eKi +eyW +eyW +eyW +awu +eyW +dob +gIm +atR +aMT +aMT +atR +aMT +atR +auq +alc +eyW +aVe +eyW +jfI +grK +jnK +eyW +eyW +eyW +eyW +sAf +aiF +aWQ +aWQ +aWQ +aWQ +aay +"} +(151,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +jYg +cSp +aQl +aQl +pfq +qWq +mUb +qWq +avE +arM +aRX +arM +aRX +aRX +hgk +aLO +gSE +sdV +aXx +fRL +aSB +bai +aqJ +aTH +aTH +aFL +ekd +aYd +aYd +aYd +aLd +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +pVP +bvP +tPz +tPz +tPz +buQ +dus +bvB +gog +ghT +bnX +bnK +bmz +bmz +bmz +bmz +bms +tPz +bvP +qyi +bmK +bmF +bva +buX +buy +buv +buD +aqQ +bKn +bJn +bIl +apK +wmO +wmO +wmO +wmO +abX +bCy +occ +bKt +bKt +bKt +dAg +bKt +gmd +aOb +gmd +aHN +fzN +atg +aHN +gcT +ula +cBV +afJ +kuK +aCV +vVa +kbA +cMj +nIV +bhv +big +bhY +bhK +pwo +avV +amy +nTN +acH +gcG +nqc +acH +tWP +apL +sGs +afT +pfV +nkE +axH +axH +aXm +cvP +aQM +atd +ocm +aEo +apL +apL +iki +pbj +bfr +bfa +aFG +bqz +bqq +bbq +aRJ +aiy +aiy +xEu +rbs +bab +aVi +aWQ +aWQ +aWQ +aqG +aqG +acL +kxn +aqG +atR +axQ +aqb +ajf +aGJ +aGJ +aGJ +aGJ +aGJ +afW +afW +afW +afW +afW +afW +afW +aGJ +aGJ +aGJ +aGJ +aGJ +aGJ +aGJ +aGJ +aGJ +nhl +eyW +anG +xYA +aWQ +aWQ +aWQ +aWQ +aay +"} +(152,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +wIy +taC +hEZ +nyV +jfS +jWK +cSX +mou +avE +arM +tqn +fwb +tqn +woz +tqn +adf +aFT +aXx +aXx +aSB +wQB +aSB +aqJ +aqJ +aTH +apf +aqJ +aYd +aYd +aLd +aLd +aWQ +aWQ +nuH +nuH +nuH +nuH +nuH +aWQ +aWQ +aWQ +nuH +ncS +ncS +ncS +ncS +jJV +tdX +gog +gog +gog +xpf +vXr +tPz +akD +tPz +tPz +seM +xoR +aWQ +bmK +bmF +bvb +buy +buv +buL +bml +fbg +wqs +xfs +iTs +but +bmh +bzW +bzW +bmh +byU +bus +jNx +nIV +sFy +oJe +aXV +aiT +dFd +vJy +cTP +hhg +naI +fPk +aHN +erX +aQa +aop +tTi +bKt +bKt +cyE +hpM +cMj +bKt +bsJ +big +bfa +beM +aDw +aDw +aDw +aDw +apL +ana +mWa +acH +vFw +apL +sDN +vTf +frI +aoI +aoI +axH +auS +pgB +aQM +apL +nlB +apL +apL +brc +bfH +bqT +bfr +bfa +aGR +bqA +bqr +bql +aiI +aiy +liX +qss +uWY +tNl +aWQ +aWQ +aWQ +aWQ +aqG +aOZ +inF +inF +aSf +aMT +aMT +aOg +svm +aNP +aFe +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aFe +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aFe +aNP +alK +eyW +eyW +aMQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(153,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +nAm +lns +vHU +piS +xdO +qbu +xdK +bhn +aQl +jzI +axB +eNu +arM +cdR +axB +aoP +gSE +oGB +aXx +aXx +aSB +aSB +ekd +aqJ +aTH +fud +aqJ +aYd +aYd +aLd +aLd +aWQ +lQU +nuH +bqe +bpW +boU +nuH +aWQ +aWQ +aWQ +nuH +nuH +nuH +nuH +bxa +bxa +rhb +gog +gog +ghT +gog +bvn +buJ +ovw +tPz +buJ +bvh +aWQ +aWQ +bmK +bmF +bvc +buY +buV +jTS +iOB +bmi +aXj +aXj +aXj +aXj +aIv +aIv +aIv +aIv +bmf +rxy +alp +nIV +amH +hru +cMj +wQK +aWK +afG +gVA +aHN +hhg +hhg +aHN +bKt +dAg +bKt +bKt +bKt +bKt +nIV +aOW +nIV +bKt +bhm +big +bfa +aFG +aGP +tnA +nAK +aGP +afF +lsq +jip +qFB +iAg +gCZ +aNy +vTf +bsZ +uVF +jkF +aqT +auS +apL +apL +kar +poR +eFU +apL +iki +btF +bqU +bfr +bfa +pbj +bqB +bqs +aiI +aiI +aiy +sUq +aQC +aQC +aQn +pUB +aWQ +aWQ +aWQ +aqG +bch +bcg +inF +aOu +apv +aMT +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +eyW +gGR +azP +aWQ +aWQ +aWQ +aay +"} +(154,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +hWM +txk +arz +nNF +aoL +toU +bnu +eeM +aQl +bqY +sxO +qoY +arM +gSE +aQl +aQl +gSE +aWt +abx +aLb +anb +aXx +aAZ +aTH +aTH +apf +acf +aYd +aYd +aLd +aWQ +aWQ +lQU +nuH +bqf +bpX +nuH +nuH +nuH +nuH +nuH +nuH +boU +boH +vbc +boz +bxa +lhf +gog +gog +gog +gog +xpf +bvm +wnm +wnm +wnm +aWQ +aWQ +aWQ +bmK +bmG +bmx +bmx +bmx +ruc +xUw +iNT +eaL +eaL +eaL +eaL +vxQ +vxQ +vxQ +vxQ +nIs +rxy +bif +aOt +cMj +aXV +rnz +lpi +arU +wPY +biI +mEO +nrn +imU +qYc +iHy +iHy +vfX +khh +vfX +iHy +kHp +afG +edj +aOt +bio +bih +bfa +bsv +aGP +bGR +aaa +aGP +whb +gWL +skz +jKP +skz +wUB +lNi +dPW +hAg +xEI +brB +aqT +aom +wFt +aKx +lUP +lUP +gzt +tzh +iki +bqT +pbj +bfr +bfa +bqK +bqC +bqn +aRJ +aiI +aiy +nWZ +wpH +aQC +aCi +aCi +aWQ +aWQ +aWQ +aqG +aRa +eJp +rAq +aqG +aKi +atR +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +eyW +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(155,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +jGt +boe +hnV +vwl +jfM +gDP +ekP +qWq +gSE +aMu +nNG +aZL +arM +aAH +gSE +aSB +jNe +xgW +aXo +aXo +aLb +aXx +aTH +aTH +aTH +ajL +ajL +aYd +aYd +aLd +aWQ +aWQ +aWQ +nuH +bqg +bqa +qYq +bpJ +bpE +pZN +pZN +bph +boV +boI +pZN +qXt +bov +bos +boq +bmP +bmP +bmP +bmP +pld +bmP +bmP +iHN +bmP +bmP +bmP +iHt +aqu +aqu +aqu +aqu +bmt +pJb +wCa +bah +bah +bah +bah +adH +adH +adH +adH +pbH +aVA +qwL +qUo +vVa +lGy +vVa +nug +oPd +aRZ +mRa +aJj +wWY +arZ +nhX +aJj +aJj +gPE +nhX +arZ +aJj +uwy +efT +aJj +qUo +bip +leu +bfa +aFG +aGP +bSW +vQx +aGP +xxb +tvy +kfa +nBX +iAg +gCZ +aNy +vTf +hAg +aUL +nsm +bsZ +auS +apL +apL +kvc +akl +azE +tzh +iki +pbj +bfA +bfs +bfa +rGl +aFG +bqn +aRJ +aiI +aiy +aiy +aCi +aCi +aCi +aCi +akN +aWQ +aWQ +aqG +aqG +aqG +aOu +aqG +nMY +aMT +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +fbo +ioI +aWQ +aWQ +aWQ +aWQ +aay +"} +(156,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +nQe +hnV +hnV +hnV +nAZ +sDQ +sDQ +uNd +jRJ +cFG +eCf +iHv +aIy +gQF +aQl +aSB +aXx +aOI +aXo +aXo +aFo +aWt +aTH +aTH +aTH +ajL +ajL +aYd +rLS +aLd +aWQ +aWQ +aWQ +nuH +bqh +bqb +adJ +bpK +rSI +bpu +bpo +bpi +boW +boJ +rSI +boA +adJ +bot +wLG +bmy +bmy +bmy +bmy +bnw +bnn +bmy +bmy +bmy +bmy +bmy +bmy +bmy +bmy +bmy +bmy +bmu +uVl +iNT +eaL +eaL +eaL +eaL +vxQ +vxQ +vxQ +vxQ +nIs +rxy +bfZ +aOt +cMj +aXV +cMj +wYe +aWK +dEu +bkt +gVA +aHR +aHR +aTL +aHR +afi +aHR +aTL +aHR +tvr +ecT +iUX +gVA +aOt +biq +bii +bfa +aGR +aDw +aDw +aDw +aDw +apL +ana +uQB +acH +mQK +apL +qpm +mIt +nET +axH +aoI +dvV +rCG +aYD +apL +abB +uEE +afV +apL +iki +pbj +bfB +bft +bfa +pbj +bqD +bqn +aRJ +aRJ +aiy +aVa +aCi +aCi +aCi +aVd +aWQ +aWQ +qsc +qum +fIj +idw +eyW +awM +aEe +atR +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +ajb +vEu +aWQ +aWQ +aWQ +aWQ +aay +"} +(157,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +dwR +hnV +xWv +wgv +euU +gBf +rjj +pNE +gSE +rLI +hWX +dvg +aIy +ivF +aQl +wQB +aXx +cWl +aOI +aFo +aWt +aWt +aTH +aTH +aTH +ajL +ajL +lhA +aYd +aLd +aLd +aWQ +aWQ +nuH +bwu +kdx +qYq +bpL +dGt +bpv +dGt +dGt +boX +boF +boF +boB +bow +bou +bor +gog +gog +gog +gog +bmK +bmF +gog +gog +gog +gog +gog +bvd +qgJ +gog +irC +evQ +teK +iOB +bmk +aHQ +aHQ +aHQ +aHQ +ban +ban +ban +ban +bmg +rxy +xZT +nIV +cMj +aXV +cMj +rHI +cNl +uwo +ivX +gVA +aHR +tQD +afG +gVA +gVA +gVA +wUr +tcl +bKt +bKt +nus +bKt +bKt +bsL +aDL +bhZ +bhL +kIu +gCh +skz +egp +egp +awg +acH +acH +mYy +tzh +vCL +kYu +ykc +dez +nON +aqT +nCT +rcM +tzh +hMM +aQF +gVC +tzh +iki +pbj +pbj +bfu +bfa +bqL +bqE +aRJ +aRJ +aWQ +aiy +wRI +jAR +aCi +aCi +aCi +aWQ +aWQ +kuk +yij +vEu +art +vpg +xkY +anq +aMT +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +dTt +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +mri +vEu +jqI +aWQ +aWQ +aWQ +aay +"} +(158,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aLH +hnV +hnV +hnV +fdE +sDQ +sDQ +wLB +aQl +rLI +myc +eCf +aIy +aAH +gSE +aSB +aSB +aXx +aXx +adV +aWt +aWt +aTH +aTH +aTH +apf +aqJ +aYd +aYd +aLd +aLd +aWQ +aWQ +nuH +bqi +bqc +nuH +nuH +qYq +bpw +dNG +qYq +nuH +nuH +nuH +nuH +nuH +gog +gog +gog +bnZ +bmH +bmH +bnx +bno +jIz +bmH +bmH +bmH +bmH +bmH +bmH +bmD +bmA +buJ +buN +bmq +bBq +vlT +iQK +bBx +bDV +toW +bzZ +bzZ +toW +bCC +pRb +eoj +nIV +cMj +peG +cMj +eIo +cNl +gjC +bMI +rPU +gai +pNd +hsl +pNd +pNd +pNd +bKt +bKt +bKt +bKt +nbu +agZ +bKt +bhv +big +bhY +bhK +ydP +xQF +acH +sPG +aYP +rOt +kyX +bkr +gIV +tzh +aYD +cvH +bsZ +bkW +aHw +axH +acP +pgB +tzh +aWX +dAH +ldb +tzh +iki +pbj +pbj +bfu +bfa +bqC +bqn +aRJ +aRJ +aWQ +aWQ +aNL +aNL +aXg +aNL +aWQ +aWQ +aWQ +iXh +ujB +vEu +aJP +ame +aoW +auN +aMT +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +pJU +vEu +vEu +aWQ +aWQ +aWQ +aay +"} +(159,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +qWq +llS +hnV +jzr +jfM +glN +viH +huU +aQl +aQl +gSE +avE +ebS +avE +gSE +gSE +gSE +aQl +avE +gSE +gSE +aWt +ajL +hgL +aTH +bHM +aqJ +aYd +aYd +aLd +aWQ +aWQ +lQU +nuH +bqj +bqd +nuH +bpM +wGE +bpx +bpp +bpk +pZN +boK +nuH +asM +dus +gog +gog +gog +boa +grE +rCQ +bGp +gDq +kiY +grE +grE +nmQ +kiY +nmQ +grE +grE +bmB +bmv +buO +wdC +aqQ +bKo +bxu +bIm +apK +wmO +wmO +wmO +wmO +abX +adz +blS +bKt +ucV +cMj +cMj +wYe +bKt +afG +gVA +adx +bKt +vtq +jGR +amc +amc +brX +bKt +oPT +xsl +cYy +jNJ +sQw +bKt +bhv +bhD +bhx +beM +apL +iOn +lbZ +jEf +szX +hsk +apL +apL +apL +apL +apL +avX +axH +bZW +uVF +aqT +eNR +qVY +apL +boN +ayG +axF +apL +iki +bqT +pbj +bfv +bfb +bqC +bqn +aRJ +aWQ +aWQ +aWQ +dhj +dhj +aCi +dhj +xBr +aWQ +aWQ +aWQ +vEu +ccD +aTV +bxr +iAe +aeF +aMT +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +aaS +jNc +bxJ +aWQ +aWQ +aWQ +aay +"} +(160,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +pnW +qWq +rfT +ofV +eEG +txk +pgG +bof +gSE +pBV +afv +npO +afv +afv +afv +ahH +aQl +apN +aRX +aLO +gSE +aWt +hgL +ajL +aTH +apf +aqJ +aYd +aYd +aLd +aWQ +aWQ +lQU +nuH +bqk +boM +nuH +aso +bpF +bpy +bpq +bpl +boY +boM +nuH +bvI +dus +ghT +gog +irC +grE +jgP +aZC +apR +aZC +aZC +aZC +aKc +jOm +xKn +jOm +dky +grE +grE +bmr +tPz +jQf +bKW +bKp +bJp +cgJ +apK +wmO +wmO +wmO +wmO +abX +adz +blS +bKt +bKt +hlO +pba +bKt +bKt +aOz +gVA +bKt +hOg +api +pSj +hFv +aHg +aHg +oHS +gVA +gVA +gVA +gVA +hpb +bKt +oKI +bhD +bhx +aFG +apL +apL +kAg +apL +apL +apL +apL +plP +avC +pDW +tzh +aom +pHr +bHQ +pHr +aNN +tsM +apL +apL +iTR +aKL +rDv +apL +oQV +pbj +pbj +bfw +bqO +bqN +bqn +aWQ +aWQ +aWQ +aWQ +aWQ +aCi +aCi +aCi +alX +aWQ +aWQ +aWQ +ccD +eyW +eyW +bxr +aZR +auN +aMT +atR +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +ajb +pJq +aWQ +aWQ +aWQ +aWQ +aay +"} +(161,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +rND +lkv +xkP +usb +kLX +ffl +cyL +nGL +bLC +axM +slG +lXc +iRu +mGq +bjh +qjf +avE +awQ +tqn +txR +avE +aWt +aTH +aTH +aTH +apf +amV +aYd +aYd +aLd +aWQ +aWQ +aWQ +nuH +nuH +nuH +nuH +bpN +bpG +bqa +boZ +bpm +gNF +boM +nuH +bvJ +dus +gog +gog +bvw +grE +kof +fQi +aNo +rJU +lZU +agH +xBn +wus +ept +jUk +vQQ +nBR +kiY +bmr +buP +bLp +bKX +bKq +bJq +fcK +apK +wmO +wmO +wmO +wmO +abX +adz +blV +bhf +nIV +vfX +iHy +fJg +qtm +qTu +aKj +rmg +upf +apn +siz +mvu +ixr +aHg +bKt +awY +anE +arZ +lXT +tXS +bKt +ody +bhD +bhx +aFG +apL +iNR +gxK +ayJ +aiQ +aUi +apL +eKV +ads +fJx +dKk +vTf +pgB +pgB +pgB +pgB +gFE +aQM +aQM +apL +apL +apL +apL +wPT +ajB +iPB +pbj +qvI +vTQ +aWQ +aWQ +aWQ +aWQ +aWQ +aly +aFZ +aCi +aCi +alX +alX +aOn +aOn +aPt +eyW +vpg +aSj +bcf +azq +aMT +aMT +auT +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +alK +eyW +ajb +qrF +aWG +aWQ +aWQ +aWQ +aay +"} +(162,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +sWT +iRI +xak +shC +oqU +xpF +alh +qWq +avE +axM +arM +rhv +pdU +huW +jTb +nUP +avE +awQ +arM +adf +avE +aWt +aTH +aTH +aTH +apf +aqJ +lcJ +aYd +aLd +aWQ +aWQ +aWQ +aWQ +aWQ +nuH +bpR +kdx +bpH +bqa +bpr +eVX +gNF +boM +bow +tPz +dus +gog +gog +tEY +bwW +bom +aDy +akg +bLk +ksM +sdm +ksM +hPI +aWv +qDE +dKF +irr +bwW +bmr +tPz +jQf +bKY +bKr +bJr +arV +apK +wmO +wmO +wmO +wmO +abX +adz +buq +bhg +nIV +aIZ +yhQ +aBq +aIZ +qTu +gVA +rmg +aCn +aHg +apn +wuH +hFv +vkD +bKt +ceF +bpb +aHR +aHR +bPU +bKt +xCW +bhD +bhx +aFG +apL +aLI +eEP +aQM +arj +gsN +apL +aqI +lsa +ads +fgf +adZ +ygw +pgB +aYD +aQM +aQM +aQM +oss +aWQ +aWQ +aWQ +bqG +ajB +ajB +ajB +ajB +bqP +aWQ +aWQ +aWQ +aWQ +aWQ +vpX +aSr +aCi +aCi +aJo +aCi +aFZ +hSA +aMU +aEN +eyW +oPv +iyd +adA +aMT +aMT +aMT +auT +aNP +aFe +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aFe +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aFe +aNP +alK +eyW +csS +keb +aWG +aWG +aWQ +aWQ +aay +"} +(163,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +dwX +xfY +sJc +wAP +tNS +huW +bOy +ayO +axM +aye +pvj +bku +tob +bpc +aye +avE +rTv +sDQ +adf +sPS +aWt +aTH +aTH +aTH +apf +aqJ +aYd +aYd +aLd +aWQ +aWQ +aWQ +aWQ +lQU +nuH +gNF +bpO +gNF +bqa +bvZ +lwP +gNF +kdx +qYq +jvA +jTS +gog +gog +tEY +bwW +bwW +lIQ +bwY +aBX +bwX +bwX +bwX +bwX +tWf +tKg +amr +bwW +bwW +unY +buQ +jQf +bKZ +bKs +bJs +bxk +apK +wmO +wmO +wmO +wmO +aUF +adz +bhv +bhg +bKt +bKt +mdm +ack +aHR +uZe +gVA +bKt +iWf +wuH +lld +nOw +baj +dLN +bKt +aNg +pKL +qGd +hpy +bKt +bKt +bhv +bhD +bhx +aFG +apL +iNR +pdG +aQM +vYa +hWd +aQP +byX +aoK +lSw +apL +wLc +tzh +gus +apL +apL +aWQ +aWQ +aWQ +aWQ +brm +brh +bre +bfX +ajB +bfC +ajB +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aly +aZe +aCi +aCi +aeq +alf +aCi +hSA +aMU +dWD +aHH +fSp +duK +atR +atR +aMT +aMT +aqy +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +xHg +fbo +vEu +keb +aWG +aWQ +aWQ +aWQ +aay +"} +(164,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +cSp +hbq +oTr +bxg +rzj +huW +iEY +avE +pfR +aye +sDQ +sDQ +jyx +bpc +aye +avE +awQ +sDQ +adf +avE +aWt +aTH +aTH +aaX +afz +aAZ +aYd +aYd +aLd +aLd +aWQ +aWQ +aWQ +lQU +nuH +gNF +bpP +gNF +bpA +bps +boZ +gNF +kdx +qYq +dus +xyO +gog +gog +tEY +bwW +bwW +jLz +shy +aBX +bwX +bwX +bwX +bwX +sdh +tKg +rcy +bwW +bwW +bmr +buR +jQf +aqQ +bKu +bJt +arV +apK +wmO +wmO +wmO +wmO +abX +sCo +bhv +bho +bhf +bKt +bKt +bKt +nIV +aOW +nIV +bKt +bKt +nIV +nIV +bKt +nIV +nIV +bKt +bKt +bKt +bKt +bKt +bKt +bix +bhv +bhD +bhx +bsw +apL +apL +jrj +aQM +aQM +kAg +aQM +dbX +mQi +msy +aDg +gof +atz +eFv +yku +apL +aWQ +aWQ +aWQ +brm +brh +bgk +ajB +ajB +bqH +ajB +bqH +qlu +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +hvE +aCi +aCi +aEp +aCS +aCi +hSA +aqj +atA +aMT +atR +atR +aMT +aMT +aMT +aMT +aMT +axQ +aQV +ord +eyW +aVe +eyW +eyW +eyW +eyW +eyW +eyW +eyW +eyW +eyW +eyW +eyW +eyW +eyW +aGb +eyW +umB +aTV +avl +aae +sQu +aWG +aWQ +aWQ +aWQ +aay +"} +(165,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +vhB +aMI +sNe +hhJ +bwH +pMd +rws +bLC +gDU +aka +afv +afv +afv +eCf +arM +avE +awQ +wwa +adf +avE +aWt +aTH +aaX +ajL +ajL +afz +aYd +aYd +aLd +aLd +aWQ +aWQ +aWQ +aWQ +nuH +bpT +kdx +xDw +bpB +bpt +boZ +bpd +boR +nuH +dus +gog +oou +irC +bvx +bwW +gYD +ees +puQ +aOD +jOm +sKI +aZC +aZC +aXY +puQ +qVQ +wMB +bwW +bmw +bmv +tiC +bLa +bKv +bxu +epK +apK +wmO +wmO +wmO +wmO +abX +pkJ +bhw +bhl +bho +bil +bil +gUP +bkF +bkA +bkw +bKt +bKt +biE +biE +xiH +biE +bjK +bKt +bKt +aRJ +aRJ +aRJ +aRJ +biy +bsM +bhD +bhx +aFG +bso +apL +oZy +eDx +fqa +kKZ +aQM +apL +apL +apL +apL +axx +vJp +aXF +pgx +apL +aWQ +aWQ +aWQ +brh +bgr +bgl +ajB +bfC +ajB +bqH +gxX +bqQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +tac +kdV +aCi +aCi +aQf +aCi +hSA +aqj +atA +aMT +atR +aMT +aMT +aMT +aaG +aZk +aMT +aMT +aMT +axQ +aXi +kao +aQV +aQV +cqV +aQV +aQV +aOk +aHH +aQV +pLo +alc +eyW +eyW +fRr +qhE +eyW +eyW +eyW +kRl +vEu +aXK +aWQ +aWQ +aWQ +aWQ +aay +"} +(166,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +bTD +xyz +aQl +aQl +aQl +gSE +aQl +aQl +gyF +oNM +arM +tQq +fJw +tQq +aOB +gSE +awQ +tqn +arM +aQl +aWt +aTH +hgL +bBR +ajL +aAW +aYd +aYd +aLd +aLd +aWQ +aWQ +aWQ +aWQ +nuH +bpU +bpQ +gNF +bpC +pZN +bpn +bpe +boS +nuH +dus +gog +gog +tEY +grE +grE +wSt +tqY +puQ +qIw +bnf +sZz +wnj +tKg +puQ +rxi +nXV +aBX +grE +grE +bmr +xwf +aqQ +bKr +bJu +arV +apK +wmO +wmO +wmO +wmO +tkp +buu +rcu +bun +brR +btY +bhl +bqT +bfr +lSP +bfa +bqw +btC +aqe +brA +aqe +aqe +bjL +biE +bsT +bbq +bri +bri +bsV +bqr +bsN +bhD +bhx +aFG +fOx +apL +ncj +ydP +pwo +pwo +ayJ +ugA +ayV +pHF +ugA +aXF +ugA +wkY +eFE +apL +aWQ +aWQ +brr +brq +bgs +bgm +xhz +ajB +bqH +pDk +xce +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +hnK +aCi +aCi +aCi +aCi +eVt +aMU +aWV +icA +aSR +aMT +aMT +aBt +rhC +aYS +aSR +aBt +add +aSR +aMT +atR +aMT +atR +aMT +aMT +aMT +aMT +aMT +aMT +axQ +aFS +aQV +aQV +aSN +aQV +aUx +aQV +cyj +aew +azg +azg +azg +aWQ +aWQ +aWQ +aay +"} +(167,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +sHZ +cSp +aQl +aWQ +aWQ +aWQ +aLd +aQl +aQl +aQl +aQl +gSE +gSE +ayO +avE +gSE +aQk +axB +aoP +aQl +aWt +aTH +aTH +aes +aAW +aqJ +aYd +bPx +aLd +aLd +aWQ +aWQ +aWQ +lQU +nuH +bpV +kdx +bpI +bpD +dGt +dGt +bpf +boT +bxa +dus +gog +gog +tEY +kiY +siF +pat +buF +bny +ksM +ksM +axl +uDj +amd +amd +axl +wBR +bPL +hzU +kiY +bmr +buE +bLb +bKw +wfV +bIn +apK +wmO +wmO +wmO +wmO +aaq +abp +adz +bqs +btg +brF +btP +pbj +bfr +lSP +bfa +aGR +aqP +bty +aqP +aqP +aqP +aqP +bti +aqP +btc +bta +bsW +aqP +aqP +bhm +bhD +bhx +bqC +fOx +apL +apL +aVs +apL +kHN +apL +hLo +sdH +sdH +ugA +dIq +eFv +dIq +lIJ +apL +aWQ +aWQ +etb +ajB +bgs +grq +bhy +ajB +etb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aOn +aNh +aCi +aCi +aCi +aZe +wmr +aMU +aEN +nFi +auN +aMT +aMT +avM +lXR +olb +auN +avM +rUl +auN +aMT +aMT +aMT +aMT +aMT +atR +aMT +atR +aMT +aMT +aMT +aMT +aMT +aMT +aMT +aMT +aMT +aMT +axQ +pIa +aLC +ogj +azg +azg +aWQ +aWQ +aay +"} +(168,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +gSE +aQl +aQl +aQl +aWQ +aWQ +aWQ +aLd +gSE +aSB +aXx +aqn +aWt +wQB +aPi +aPi +gSE +gSE +gSE +aQl +gSE +aWt +aTH +aTH +aTH +apf +amV +aXr +apc +aLd +aLd +aWQ +aWQ +aWQ +lQU +nuH +czX +xuk +nuH +boU +vbc +nuH +bpg +bxa +bxa +dus +gog +ghT +tEY +aDO +tWf +dKF +abg +tuy +bwX +bwX +uWu +aui +bwX +bwX +qqV +ksM +eXq +jdB +kiY +bLy +jQf +bLc +bKr +bJv +arV +apK +wmO +wmO +wmO +wmO +wmO +abX +adz +bbq +aRJ +btg +bhv +brJ +bfr +lSP +bhV +aOf +aOf +aOf +aOf +aOf +aOf +bir +bir +bir +bir +bir +bir +bir +bir +bir +bij +bhx +aFG +alp +sXX +apL +apL +apL +apL +apL +apL +apL +sDI +lHy +szq +szq +szq +cFU +sDI +aWQ +aWQ +sDI +eDD +bgt +szq +bgb +mmi +sDI +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aOn +aly +aCi +aCi +aqw +alX +aOn +aOn +aWQ +azg +ars +qbS +nLT +ars +ars +azg +iBk +axQ +aQV +azq +aBt +aSR +aMT +aMT +atR +iif +add +add +awW +aSR +aMT +aMT +aMT +aMT +vQB +add +awW +add +aSR +nDr +wpk +vab +azg +aWQ +aWQ +aWQ +aay +"} +(169,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aSB +aSB +anb +aXx +adV +aWt +aWt +aPi +aPi +aPi +wQB +aPi +aWt +aWt +hgL +aTH +aTH +apf +aqJ +aKZ +acU +aVc +aVc +aWQ +aWQ +aWQ +aWQ +nuH +ldp +dNG +nuH +boH +vbc +nuH +bxa +bxa +bxa +dus +gog +gog +bvn +grE +tWf +amr +bwX +bwX +bwX +bwX +bgA +aBX +bwX +bwX +bwX +bwX +wok +bmC +grE +grE +jQf +bLd +bKy +bJx +msl +apK +wmO +wmO +wmO +wmO +wmO +abX +adz +bqr +bbq +bsV +btQ +pbj +bgq +itH +biQ +biQ +biQ +biQ +biQ +biD +bgV +bjM +bsk +ayz +bji +biY +bit +bit +bit +bit +blm +bhx +aGR +bhm +alp +sXs +sXs +sXs +sXs +aWQ +aWQ +aWQ +sDI +axV +jpq +nPO +jpq +oDs +sDI +aWQ +aWQ +aDw +bgP +jpq +poW +vxn +hyo +bcb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aSr +aCi +aCi +aFM +aWQ +aWQ +aWQ +aWQ +azg +rpq +aif +aif +aif +ccb +azg +aPH +atR +aMT +aMT +tUU +auG +uby +hEC +add +rhC +aVe +adE +qec +auN +aMT +aMT +atR +aMT +atf +fRr +aBJ +eyW +xVW +pIa +aBy +qlX +azg +azg +aWQ +aWQ +aay +"} +(170,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aSB +cVG +aSB +anb +aqn +aWt +aWt +fRL +aPi +aPi +aWt +aWt +aWt +aXo +ajL +hgL +aTH +apf +hSj +acU +afU +aFv +aVc +aWQ +aWQ +aWQ +aWQ +aDN +gog +gog +nuH +nuH +vbc +pLz +pHy +ePv +nOD +jTS +gog +gog +tEY +grE +tWf +ujO +bwX +bwX +bwX +dON +aXY +bmX +rSM +bwX +bwX +bwX +wok +aqW +khT +grE +aVy +bLe +bKr +bJm +arV +apK +wmO +wmO +wmO +wmO +wmO +abX +szH +aqe +brS +brF +bhv +bhd +bkG +dcU +dcU +dcU +dcU +dcU +dcU +bfU +pbj +bjN +bwo +bjs +xZT +bfU +pbj +bqT +pbj +bsO +tGp +bia +bhM +jms +eqs +brJ +bqT +brQ +asw +brL +aWQ +aWQ +sDI +ePJ +jpq +gEE +vxn +pMV +sDI +aWQ +aWQ +aDw +ejJ +aMr +poW +cEi +dLU +bcb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +fke +aCi +aCi +aCi +alX +aWQ +aWQ +aWQ +aWQ +azg +aYZ +igr +aTX +aTX +aBR +azg +oyf +aSG +atR +aMT +avM +aTP +aSw +jyt +jfI +aNX +aNX +aqG +aXD +aqG +aOu +aCY +aOu +aqG +aqG +hGq +aSw +wuM +gcb +azg +azg +azg +azg +aWQ +aWQ +aWQ +aay +"} +(171,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aLd +aSB +aSB +aXx +aqn +cKh +aWt +aPi +wQB +aWt +aWt +aWt +aWt +aXo +hgL +aTH +aTH +kdq +acU +afU +aFv +ajL +aVc +aVc +akH +akH +xJe +aDN +gog +gog +bwk +nuH +nuH +nuH +bvS +bvP +dus +gog +gog +gog +tEY +kiY +tWf +juw +jOm +num +jOm +aXY +aqc +aqc +aqW +aZC +aZC +jOm +jPe +tKg +aui +kiY +jQf +bLf +bKz +bJy +kKb +apK +wmO +wmO +wmO +wmO +wmO +aaq +abp +adz +bru +ssr +bhv +btM +cPd +cPd +agB +agB +agB +cPd +cPd +bfV +bjT +bjO +bwo +bjt +fOx +sDy +bgY +bgY +pOu +pbj +bik +bhN +bhN +bhC +bhx +pbj +beM +brR +brP +brM +aWQ +aWQ +sDI +ceh +jpq +omF +vxn +hIg +sDI +aDw +aDw +sDI +brU +jpq +poW +jpq +uIN +leP +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +ayf +aCi +aCi +aCi +alX +aWQ +aWQ +aWQ +aWQ +aew +arY +aYZ +aAm +jsE +aTa +azg +aaB +auN +aMT +aMT +avM +aSw +aZm +aLA +eyW +aVe +akn +aqG +ajX +gjj +rAq +inF +pCx +vak +aOu +aSw +dQc +dQc +dQc +dQc +dQc +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(172,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +hVs +hVs +aQl +aQl +aQl +bLC +avE +aQl +hVs +aWt +aWt +aWt +aWt +aTH +aTH +aTH +xTH +afU +aFv +ajL +awc +aGr +aMm +mae +xpf +wnm +jTS +gog +gog +xpf +wnm +wnm +wnm +wnm +wnm +jTS +gog +gog +ghT +tEY +eWV +tWf +bQW +bnE +xBn +qQi +nxn +dWd +dWd +nxn +xBn +xBn +gpd +fHy +ctN +aui +kiY +juV +aqQ +bCl +bxu +bIo +afk +alo +wmO +wmO +wmO +wmO +wmO +abX +adz +aqe +aqe +ebr +aWQ +cPd +bsK +pDS +igD +aZo +pqp +cPd +cPd +cPd +agB +hQW +asD +agB +cPd +cPd +cPd +bfV +bgY +pOu +pbj +bqT +bhD +bhx +bqT +bqw +brS +bqn +aRJ +aWQ +aWQ +sDI +fIv +gvl +omF +mGJ +gCC +oFz +aDw +aDw +eoz +gCC +gKq +poW +xAw +pCd +fYy +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aqw +aCi +aCi +aCi +aCi +aWQ +aWQ +aWQ +aWQ +aWQ +azg +azg +azg +azg +azg +azg +azg +apF +auN +atR +aMT +aos +nee +bfQ +aDd +aex +oPv +awM +aqG +bbh +inF +aDD +inF +kXQ +aWz +aqG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(173,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +gir +arM +sDQ +sDQ +oIy +sDQ +pvj +hVs +hVs +aWt +aWt +aWt +aTH +aFL +bVy +afU +aFv +ajL +awc +aGr +aMm +qSh +gog +gog +gog +gog +gog +ghT +gog +gog +gog +ghT +gog +gog +gog +gog +gog +irC +bvA +kiY +fzv +amd +xej +amd +amd +amd +amd +amd +amd +amd +aNK +xej +amd +amd +vpD +grE +aWQ +ayg +aWQ +bJz +bIp +bCE +afk +alo +wmO +wmO +wmO +wmO +abX +axS +aqe +btJ +aWQ +aWQ +cPd +kmG +auv +ahZ +dFe +aNa +cPd +ljN +xwI +oOd +vzH +acF +wvo +xpo +cPd +cPd +cPd +cPd +bfV +pOu +pbj +bhD +bhx +beM +bel +brT +bbq +aRJ +aWQ +aWQ +sDI +sDI +upi +nPO +cZM +lOK +mJq +ici +mkR +ici +ici +hyS +eHN +oGp +vBO +lyd +fXV +aWQ +aWQ +aWQ +aWQ +aWQ +aOn +aNh +stm +aCi +aCi +aJo +aCi +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +azg +aWQ +aWQ +aWQ +azg +aWQ +aWQ +azq +aMT +aMT +avM +eyW +ace +aNX +eyW +gtt +anG +aOu +hSf +inF +owg +auc +lhY +bar +aqG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(174,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +iRu +usb +sDQ +arM +arM +sDQ +sDQ +hVs +hVs +aWt +aWt +aFL +aqJ +ahE +aqU +ajL +awc +aGr +aMm +qSh +gog +ghT +gog +gog +gog +gog +gog +gog +xyO +gog +gog +gog +gog +ghT +gog +gog +vVs +tPz +grE +grE +grE +aNO +acV +acV +nWz +tkx +bvj +acV +acV +acV +aNO +grE +grE +grE +grE +aWQ +bLg +aWQ +bmm +aCT +bGC +bCE +apK +wmO +wmO +wmO +wmO +abX +vys +aqe +aWQ +aWQ +aWQ +cPd +aQA +auv +btE +hwL +veq +xfu +afn +aek +aek +lBU +aLX +les +bUK +agB +wcW +xwv +cPd +cPd +iki +pbj +bhD +bhx +aFG +aqe +bdT +aTE +aWQ +aWQ +aWQ +bcb +sDI +mRT +omF +xFA +tUm +xFA +xFA +cXy +cXy +xFA +eSm +poW +cXy +dub +upw +aiK +nJd +aWQ +aWQ +aWQ +aOn +aOn +aSr +ayf +aCi +aXp +avb +ayf +aFM +aOn +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +xXR +aST +aST +aST +aYi +xXR +eyW +aNX +sAf +aMQ +agq +aOu +bbi +auc +aqG +aqG +aqG +aqG +aqG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(175,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +arM +arM +arM +sbs +sDQ +fzq +sDQ +bLC +aWt +ada +aKZ +aqJ +ahE +aFv +awc +aGr +aMm +qSh +gog +gog +irC +evQ +evQ +evQ +aiq +ghT +ghT +gog +ghT +gog +gog +gog +gog +gog +irC +dQO +bvt +aWQ +grE +grE +lYn +acV +acV +acV +tkx +tkx +bmU +fVY +acV +aNO +grE +grE +aWQ +aWQ +aWQ +aWQ +aWQ +bJA +bIq +bGD +bFu +apK +wmO +wmO +wmO +wmO +abX +pkJ +rcu +rcu +aWQ +aWQ +cPd +ijb +ahZ +fjR +avR +xts +msI +aRc +aDq +fQY +azi +aaM +aWq +aAo +agB +uBK +nXt +ffP +cPd +iki +bqU +bhD +bhx +bek +bsa +jHD +aWQ +aWQ +aWQ +aWQ +bcb +sDI +wCF +vfB +msO +msO +msO +vCH +vCH +vCH +vCH +qOk +xHx +rkr +kUp +aSm +qPu +aDs +aot +aIs +azC +aCi +asW +azF +aCi +aCi +aTb +aly +aCi +aCi +auJ +sCV +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aNL +aNL +qhr +qhr +qhr +aNL +aNL +amp +amp +aWQ +aWQ +aWQ +aqG +aqG +aqG +aqG +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(176,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +aQl +jOy +mMX +arM +sDQ +sDQ +avE +nSj +anb +aqJ +amV +afd +aVc +aGr +aMm +qSh +gog +irC +evQ +dQO +tPz +bwf +buJ +aWQ +aWQ +aWQ +lvz +evQ +evQ +evQ +bvQ +evQ +evQ +dQO +ndl +kep +aWQ +aWQ +grE +pxn +acV +tkx +acV +fVY +bvk +acV +acV +acV +pxn +grE +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bJB +bIr +aqQ +bFw +apK +wmO +wmO +wmO +wmO +abX +aeo +rcu +btZ +bhv +aWQ +cPd +gYC +xnc +dwi +qWY +tRU +cPd +inh +tQV +bGP +kiK +brj +kJn +asG +cPd +gHu +abC +roH +cPd +oQV +pbj +bhD +bhx +bek +bsb +rjN +aWQ +aWQ +aWQ +aWQ +sDI +sDI +lGY +omF +mGJ +uGC +uGC +byF +byF +uGC +byF +fji +wnD +eBE +fkz +bqZ +aaz +nnQ +aQC +aQC +aCi +aCi +asW +azF +aCi +boi +oHv +aSr +aCi +aCi +aEp +nkh +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aGX +aoF +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(177,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +aQl +gir +arM +pqe +aQl +aXx +aXx +aqJ +aYd +apc +aVc +aVc +qSh +ghT +irC +dQO +tPz +buP +tPz +bvI +bwf +aWQ +aWQ +aWQ +aWQ +aWQ +qbr +tPz +tPz +tPz +tPz +tPz +bvC +aWQ +aWQ +aWQ +grE +grE +aIY +tkx +acj +acV +acV +acj +acV +aIY +grE +grE +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bJC +aWQ +bGE +bCF +apK +wmO +wmO +wmO +wmO +aaq +abp +adz +bua +bhv +bhg +cPd +qBd +eqd +axT +weL +tRU +cPd +aGG +aDX +aGG +aDX +aGG +lKH +ahZ +cPd +lNI +aVm +asZ +cPd +iki +pbj +bhD +bhy +bek +bdT +sDI +aWQ +aWQ +aWQ +sDI +amu +byo +jJr +omF +qsp +bli +eFn +aDw +aDw +wGW +gCC +sZq +poW +qsp +pXY +jzY +anA +oJH +aCi +aQr +sqc +aCi +qUN +aCi +aCi +aEp +aSr +aCi +aCi +aCi +aCi +aCi +aCb +xBr +aWQ +aWQ +bTu +aCi +aCi +aCi +aCi +aCi +aXp +alf +aCi +vHY +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(178,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +aQl +arM +aQl +aSB +bai +aYd +aXr +aXr +aVc +aVc +bwe +nmB +tEY +vek +lGK +bwy +lGK +qbr +tPz +aWQ +bwn +oFP +aIF +aIF +rMU +tPz +tPz +vek +lGK +sNG +aWQ +aWQ +aWQ +aWQ +aWQ +grE +aIY +acV +pox +acV +acV +tkx +acV +aIY +grE +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bJD +bIs +bGF +pqY +apK +wmO +wmO +wmO +wmO +wmO +abX +pEh +rcu +btR +bhg +cPd +nTd +jqq +xPf +iwg +xvi +cPd +ebc +ewv +aDX +aDX +aDX +qgz +hju +xfu +lNI +wFO +xts +nxe +iki +pbj +gVR +bhy +bek +sDI +sDI +sDI +sDI +sDI +sDI +rdV +wpj +jpq +txF +jok +anM +sDI +aDw +aDw +aDw +wPm +sZq +poW +ffy +wWx +mdd +mdd +xdq +aCi +aCi +aQf +aCi +qUN +aCi +aFZ +aCi +aCi +aCi +aCi +aCi +gZO +aCi +aCi +aCi +aCi +aCi +aCi +aFZ +alX +aCi +aCi +aXp +acr +aly +aCi +aFZ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(179,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aQl +aQl +aLd +aLd +aSB +aYd +aXr +aLd +aLd +aWQ +aWQ +bwe +tEY +noo +aIF +aIF +aIF +aIF +qbr +prs +ppt +fGZ +kHd +fGZ +upY +tPz +bvH +aIF +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +grE +grE +acV +acV +aIY +aIY +acV +bmQ +grE +grE +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bIt +aqQ +bCF +apK +wmO +wmO +wmO +wmO +wmO +abX +lqq +rcu +qAt +bhg +cPd +cPd +agB +agB +agB +cPd +cPd +aGG +aDX +aGG +aDX +aGG +aNF +aXz +eyC +rLB +weL +xts +nxe +iki +ajB +gVR +bhy +bhq +dDY +gCC +gCC +sDI +sDI +ihT +sbH +jJr +pjq +nln +too +euG +sDI +aDw +aWQ +aDw +aDw +hMk +wnD +qsp +ihH +aWQ +mdd +mdd +alX +aCi +aIh +aCi +asW +azF +anU +aCi +aCi +aCi +aCi +aCi +aXp +aqN +aqN +alf +aCi +aCi +alX +alX +alX +aCi +aQr +pGp +vpX +aED +aVd +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(180,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aLd +aLd +aLd +aLd +aLd +aLd +aWQ +aWQ +aWQ +geF +rSR +bvL +aIF +jrd +cxr +rMU +bvP +buR +bvJ +buQ +bwa +buQ +bvF +bvO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +grE +grE +grE +grE +grE +grE +grE +grE +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bIu +bGG +xDx +apK +wmO +wmO +wmO +wmO +wmO +aaq +abp +adz +bhv +bho +bil +bil +bil +bil +bil +bhf +cPd +cPd +cPd +cPd +cPd +cPd +cVg +alB +cPd +wAk +oww +nxF +nxe +iki +ajB +gVR +wHc +bhr +sgC +ici +uGz +lOK +ckW +lOK +cYC +dvv +sYA +aIV +qHK +tCH +aMC +aDw +aWQ +aWQ +aDw +pDB +wnD +dEI +vlW +sDI +aWQ +mdd +sGc +aCi +aCi +aCi +asW +azF +aCi +alX +alX +aFZ +aCi +aCi +aEp +hDA +aHt +aXq +ovh +aCi +aCi +aCi +aCi +aCi +aCi +aEp +aSr +anU +anU +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(181,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +mDz +wtO +mRK +buA +dvd +hpz +bvU +oXV +bwb +vek +lOW +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bwX +bwX +aWQ +aWQ +bwX +bwX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bGH +bFx +afk +bzc +alo +wmO +wmO +wmO +wmO +abX +ahC +btS +bha +bha +btI +bha +bhl +bqT +bhg +dnz +bfW +bil +bil +bil +bil +bil +bhf +cPd +cPd +cPd +cPd +cPd +iki +ajB +aqf +aTz +bhs +vGC +bKH +smn +bPD +bPD +bPD +bPD +bPD +wvC +qDH +vbJ +tCH +tCH +aDw +aWQ +aWQ +aDw +saR +hVT +dEI +gCC +ihH +aWQ +mdd +mMp +alX +aCi +aCi +aOn +aWQ +aWQ +aWQ +alX +alX +aCi +aCi +aCi +aTb +vpX +aSr +aCi +aCi +anU +aCi +wPc +aCi +aXk +aCi +aCi +aCi +alX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(182,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +scm +iLr +buy +buy +buy +buy +buK +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bJE +aWQ +bGI +qos +bEg +bCE +apK +wmO +wmO +wmO +wmO +abX +aWQ +aWQ +aqe +aqe +aqe +bqy +bhv +pbj +bho +bil +bfH +bqT +pbj +pbj +pbj +pbj +bho +bil +bil +bsR +cPd +cPd +tJq +ajB +bhE +bhz +bht +sgC +byF +bjm +byF +sCI +rGG +key +wXG +sYA +nln +bIh +uJs +qwP +aDw +aWQ +aWQ +aDw +jjM +poW +dEI +nDq +nbG +aWQ +mdd +gIv +aCi +aCi +aCi +aEp +aUD +aWQ +aWQ +aWQ +aoY +aCi +aCi +aCi +aEp +aSr +aCi +aCi +aCi +aXp +aqN +qUF +aqN +alf +aCi +aCi +alX +alX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(183,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +buy +buy +buy +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bBO +aWQ +bGJ +bFy +bEi +ouh +apK +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +btJ +aqe +bhv +pbj +pbj +pbj +pbj +pbj +jOg +bqT +pbj +pbj +bqT +pbj +pbj +bho +bil +bil +bib +ajB +ajB +ajB +ajB +fMS +gCC +ruV +ePk +sDI +vUX +dtr +hiS +wXG +rBq +dEI +nBk +sDI +aDw +aWQ +aDw +aDw +mtB +poW +dEI +tuv +aWQ +aWQ +mdd +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aWQ +aWQ +aqN +aqN +alf +aCi +aqw +aCi +aCi +aCi +aXk +aTb +aWQ +aOn +aOn +aly +aFZ +aCi +alX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(184,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bFz +bEj +bCF +apK +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +guY +bha +btz +btv +bqT +pbj +pbj +pbj +beM +btd +bha +bha +bha +bha +bha +bsD +bhF +bhF +bqM +bhF +aWQ +sDI +sDI +sDI +sDI +sDI +sDI +kyr +eKn +vxn +nPO +dEI +oTe +sDI +aDw +aDw +aDw +uJr +jCj +waY +qsp +aAE +xpt +mdd +paJ +aCi +aCi +aCi +aCi +aCi +aCi +aCi +aWQ +aWQ +aHt +aOn +aNh +aCi +aCi +aCi +aCi +aCi +aTD +aWQ +aWQ +aWQ +aWQ +aly +aVd +aVa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(185,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bGK +bFA +aqQ +bDl +apK +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +btD +btA +btw +bha +btq +bha +bth +btf +aqe +brf +aqe +brF +aqe +aqe +brF +bdT +ufR +xeC +bhB +aWQ +aWQ +sDI +aWQ +aWQ +aWQ +sDI +amu +xSz +gKq +txF +dEI +sZq +oWd +aDw +aDw +nyR +vlW +jCj +jCK +nFe +fPi +bqZ +tbA +xIe +aCi +aCi +asU +eBk +aCi +aCi +aIh +aWQ +aWQ +aHt +aOn +aly +aCi +aCi +aCi +aCi +aCi +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(186,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bGL +bFB +bEk +efu +apK +wmO +wmO +wmO +wmO +aaq +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +btB +brF +bqs +bsX +bsX +bsX +btg +bqr +aqe +bqy +bqr +jhd +snP +bsE +byi +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +sDI +lGY +vKC +kvb +lOK +ici +lOK +lOK +nLa +lOK +whk +jCK +bYK +qzV +hSe +tbA +jzW +aCi +dcn +aCi +aCi +aXp +aqN +aWQ +aWQ +aWQ +aUD +aUD +aED +aCi +aCi +aCi +aCi +aXp +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(187,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bGM +bFC +bEl +bzd +apK +wmO +wmO +wmO +wmO +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRJ +aRJ +aRJ +aRJ +bsX +bsX +bsX +aWQ +iah +mXU +bWS +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bcb +sDI +sDI +saR +wnD +tUm +xFA +tUm +tUm +cXy +tUm +tUm +tUm +wNH +nKw +tRi +osb +lyd +oeG +acc +aCi +aCi +aCi +auJ +aOn +aWQ +aWQ +aWQ +jqC +aCi +aCi +aCi +aCi +aCi +aCi +aEp +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(188,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bGN +aWQ +aqQ +jJU +afk +bzc +alo +wmO +wmO +wmO +wmO +wmO +aaq +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRJ +aWQ +aRJ +aRJ +aRJ +aWQ +aWQ +aWQ +hBQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +sDI +uKe +ieH +npr +gdl +gdl +gdl +mhk +mhk +mhk +mhk +pet +rkr +kSh +bYi +rVr +trY +qUz +aCi +aCi +aCi +aEp +aOn +aWQ +aWQ +asi +abl +aCi +aCi +aCi +aCi +aCi +aCi +abH +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(189,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bFD +bEm +bDm +bCO +bCE +apK +wmO +wmO +wmO +wmO +wmO +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aRJ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +pjf +cEq +eNs +cXq +dcK +byF +byF +sCI +vjF +iQq +byF +gRj +ahM +aEg +fnM +bqZ +hLJ +ect +rOg +aCi +aCi +aCi +anX +azF +aCi +aCi +aCi +aXp +aqN +alf +aCi +aCi +aXk +alX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(190,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bEn +aqQ +bCP +bCF +apK +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bcb +sDI +ylB +vPS +sDI +sDI +hVF +hVF +bcb +bcb +sdZ +tQP +rGY +gCC +iKm +etR +bqZ +dtZ +aCw +aQf +aCi +aCi +aCi +aCi +aGh +aCi +aCi +aCi +aXp +acr +aNl +aSr +aCi +aCi +alX +fJh +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(191,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bDn +bCQ +rCs +apK +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +sDI +sDI +sDI +sDI +sDI +sDI +bcb +bcb +sDI +szo +gar +ygl +enu +mez +jJA +awd +aCw +anU +aFM +alX +aCi +aCi +anX +azF +aCi +aCi +aEp +aUD +aSr +aCi +aCi +xBr +aCi +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(192,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bEo +bDo +aqQ +bCH +apK +wmO +wmO +ayW +bzc +bzc +bzc +bzc +alo +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bcb +aWQ +aWQ +aWQ +bcb +aWQ +aWQ +aWQ +sDI +iAZ +nbG +kpL +aVD +aKg +kjP +tSU +nnQ +asi +alX +aWQ +aZe +cxK +anX +azF +aCi +aCi +aCi +aCi +alX +alX +alX +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(193,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bEp +bDp +bCR +bCF +apK +wmO +ayW +bEd +bkJ +bls +bls +bkH +apK +wmO +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +hyR +fan +loU +avK +inP +gPO +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +jSp +anX +azF +ajC +aCi +aCi +aCi +alX +aOn +aOn +aOn +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(194,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bCS +bCF +apK +wmO +ayH +gRI +blc +blo +bld +blM +ksA +alo +wmO +wmO +wmO +aaq +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +isb +drr +sDI +sDI +bnY +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aOn +aBm +alf +aIh +aCi +ayf +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(195,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bDq +aqQ +bCF +apK +wmO +ayH +blA +blB +blp +ble +rpU +bkH +apK +wmO +wmO +wmO +wmO +aaq +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +ihH +sDI +bcb +bcb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aOn +aOn +aly +aFZ +aGX +alX +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(196,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bDr +bCT +bze +apK +wmO +ayH +bkP +blz +blq +blf +bkQ +blM +apK +wmO +wmO +wmO +wmO +wmO +wmO +aaq +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +sDI +sDI +bcb +bcb +bcb +bcb +bcb +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(197,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bDs +bCU +bCF +apK +wmO +bFt +blr +bkP +blz +blg +bkR +blM +apK +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +aaq +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(198,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bEq +bDt +bCV +qme +apK +wmO +wmO +bFt +blr +bkP +bkI +bkI +lRJ +apK +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +aaq +acD +acD +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(199,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bDu +bCW +bzf +apK +wmO +wmO +wmO +bFt +aVT +aVT +aVT +aVT +aWu +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +aaq +acD +aoa +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(200,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bDv +bCX +bCI +apK +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +wmO +abM +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(201,1,1) = {" +aay +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +bAi +ayR +bzg +lij +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +anz +han +suV +eko +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aWQ +aay +"} +(202,1,1) = {" +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +aay +"} diff --git a/maps/map_files/cape_river/sprinkles/20.altcomms.dmm b/maps/map_files/cape_river/sprinkles/20.altcomms.dmm new file mode 100644 index 000000000000..564ecd12ac41 --- /dev/null +++ b/maps/map_files/cape_river/sprinkles/20.altcomms.dmm @@ -0,0 +1,840 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/telecomms/telecomm_2) +"ac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/telecomms/telecomm_2) +"ad" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_2) +"ae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/mats/midchance, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"af" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"aJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/item/tool/wirecutters, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_2) +"bg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"bs" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/caperiver/telecomms/telecomm_2) +"bR" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south) +"bY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + layer = 2; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_2) +"cm" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"cW" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/telecomms/telecomm_2) +"dO" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"em" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south) +"eH" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/telecomms/telecomm_2) +"fg" = ( +/obj/structure/largecrate/supply/ammo/sentry{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"go" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"gt" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"gK" = ( +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_2) +"hw" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/scrublands/south) +"iQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/telecomms/telecomm_2) +"jy" = ( +/obj/structure/largecrate/random/barrel/purewhite, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"kZ" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/outdoors/scrublands/south/antiweed) +"lm" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/telecomms/telecomm_2) +"lv" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/space/basic, +/area/caperiver/telecomms/telecomm_2) +"lM" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/outdoors/scrublands/south) +"mt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"oz" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"pc" = ( +/obj/structure/largecrate/random/barrel/black{ + layer = 3.1; + pixel_y = 8; + pixel_x = 4 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"pj" = ( +/obj/structure/sign/conam{ + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"pm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/kutjevo/tan/grey_edge, +/area/caperiver/telecomms/telecomm_2) +"pn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"pJ" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/effect/landmark/hunter_primary, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ri" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south) +"sn" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"ss" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"sx" = ( +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"sL" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"tv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south) +"tQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications/simple{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"uq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/caperiver/telecomms/telecomm_2) +"vo" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"vM" = ( +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"vW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/scrublands/south) +"wv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_2) +"wJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"wU" = ( +/obj/effect/spawner/random/mats/highchance, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"xm" = ( +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"xI" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"yq" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"yC" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south/antiweed) +"ze" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"zi" = ( +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"zE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/telecomms/telecomm_2) +"zP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"zR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#FF9D5C"; + icon_state = "ground_colorable_alt" + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"Ak" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"At" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"Au" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south/antiweed) +"AF" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"Bc" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"Bh" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"Bv" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/south/antiweed) +"Do" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/big_computers/messaging_server/brown, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"DO" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/caperiver/telecomms/telecomm_2) +"Ew" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"EL" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south/antiweed) +"EN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"FH" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"FN" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south/antiweed) +"FV" = ( +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/caperiver/telecomms/telecomm_2) +"Ic" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"IG" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/caperiver/telecomms/telecomm_2) +"KB" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"KD" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south/antiweed) +"La" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"Lt" = ( +/obj/structure/prop/hybrisa/signs/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/telecomms/telecomm_2) +"LM" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/supply, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"MP" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/south) +"MT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/caperiver/outdoors/scrublands/south/antiweed) +"Nc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"No" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_edge, +/area/caperiver/telecomms/telecomm_2) +"NJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/conam{ + pixel_y = 34; + pixel_x = 3 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"OC" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/south) +"OT" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"OU" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"Pe" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south) +"Pn" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/south) +"Ps" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/south) +"PC" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/south) +"PI" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge, +/area/caperiver/telecomms/telecomm_2) +"Qa" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/almayer/research/containment/floor2, +/area/caperiver/outdoors/scrublands/south/antiweed) +"Si" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#FF9D5C"; + dir = 5 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/south) +"Sz" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"SW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#FF9D5C"; + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/south/antiweed) +"Tr" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"Tv" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"Ug" = ( +/obj/structure/sign/poster/corporate{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) +"UQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, +/turf/open/floor/plating/kutjevo, +/area/caperiver/telecomms/telecomm_2) +"Vo" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/caperiver/telecomms/telecomm_2) +"Wl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/caperiver/telecomms/telecomm_2) +"Xh" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/caperiver/telecomms/telecomm_2) +"XH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/kutjevo/tan/plate, +/area/caperiver/telecomms/telecomm_2) +"YQ" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"YV" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/south) +"Zi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/kutjevo/plate, +/area/caperiver/outdoors/scrublands/south) +"ZA" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/south) +"ZC" = ( +/obj/item/explosive/plastic, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/caperiver/telecomms/telecomm_2) + +(1,1,1) = {" +Si +sn +Pe +La +oz +zR +dO +Au +Au +Bv +vM +vM +vM +Bc +Tv +sL +"} +(2,1,1) = {" +ss +EN +zP +Tv +af +vM +vM +Au +Au +Au +kZ +vM +vM +vM +vM +go +"} +(3,1,1) = {" +EN +Bc +Bc +vM +vM +vM +vM +At +At +At +DO +DO +vM +ri +Ic +PC +"} +(4,1,1) = {" +Bc +Bc +vM +vM +vM +vM +DO +cm +sx +Sz +DO +DO +DO +ri +PC +PC +"} +(5,1,1) = {" +Bc +vM +vM +DO +DO +DO +cW +pc +ab +zE +mt +vo +cm +KD +PC +MP +"} +(6,1,1) = {" +vM +vM +vM +DO +pj +Do +gK +zi +No +Wl +Xh +Xh +UQ +Qa +SW +Pn +"} +(7,1,1) = {" +vM +vM +vM +DO +NJ +ae +ad +pn +eH +PI +Vo +wv +sx +Qa +wJ +KB +"} +(8,1,1) = {" +vM +vM +vM +DO +IG +aJ +uq +xm +eH +FV +Ew +jy +lv +EL +KB +pJ +"} +(9,1,1) = {" +sL +vM +vM +cW +bs +xI +bY +tQ +No +zE +aa +Nc +lv +bR +KB +OU +"} +(10,1,1) = {" +Ak +ze +vM +DO +Lt +bs +pm +bg +No +iQ +fg +wU +lv +em +yq +KB +"} +(11,1,1) = {" +AF +vM +vM +DO +DO +DO +DO +XH +ac +zE +ZC +OT +DO +tv +Tv +Tr +"} +(12,1,1) = {" +KB +KB +vM +vM +vM +vM +DO +Ug +No +lm +OT +LM +cW +vM +Bc +Tv +"} +(13,1,1) = {" +yq +KB +KB +KB +Bh +lM +DO +cm +sx +Sz +cm +DO +DO +vM +vM +Bc +"} +(14,1,1) = {" +Tv +ss +KB +KB +KB +YV +hw +FH +FH +FH +MT +vW +Zi +vM +vM +Bc +"} +(15,1,1) = {" +gt +KB +KB +ZA +KB +KB +YQ +KB +yC +FN +OC +PC +PC +vM +vM +Ps +"} diff --git a/maps/map_files/cape_river/standalone/clfbridgecrash.dmm b/maps/map_files/cape_river/standalone/clfbridgecrash.dmm new file mode 100644 index 000000000000..8ca97962b4a1 --- /dev/null +++ b/maps/map_files/cape_river/standalone/clfbridgecrash.dmm @@ -0,0 +1,4104 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"ab" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"ac" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"ad" = ( +/obj/structure/fence/slim, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"ae" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "101" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt{ + layer = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/caperiver/indoors/clf_dropship) +"af" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "101" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/caperiver/indoors/clf_dropship) +"ag" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "102" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/caperiver/indoors/clf_dropship) +"ah" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "95" + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/indoors/clf_dropship) +"ai" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "96" + }, +/area/caperiver/indoors/clf_dropship) +"aj" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "97" + }, +/area/caperiver/indoors/clf_dropship) +"ak" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/item/storage/firstaid/regular{ + pixel_y = 2 + }, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"al" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "98" + }, +/area/caperiver/indoors/clf_dropship) +"am" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "99" + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/caperiver/indoors/clf_dropship) +"aq" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/machinery/light/blue{ + pixel_x = 15 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"aJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"aL" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/obj/effect/decal/hybrisa/dirt, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/caperiver/indoors/clf_dropship) +"bc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"by" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"bI" = ( +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"bO" = ( +/obj/structure/machinery/power/power_generator/port_gen, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"co" = ( +/obj/structure/machinery/door_control{ + id = "clf_cargo_1"; + name = "Cargo Lockdown"; + pixel_x = -10; + pixel_y = 26 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/largecrate/supply/ammo/m56d, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"cI" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"cK" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 2; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"cO" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"cQ" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"cZ" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/obj/structure/barricade/sandbags/wired, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"dc" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"dd" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + closed = 0 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"dq" = ( +/obj/structure/flora/tree/joshua, +/obj/item/trash/cigbutt, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/scrublands/central) +"dt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"dF" = ( +/obj/structure/machinery/light/dropship/red{ + dir = 8 + }, +/obj/item/stack/cable_coil/cut{ + icon_state = "coil1" + }, +/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/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "28" + }, +/area/caperiver/indoors/clf_dropship) +"dJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"dM" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/caperiver/outdoors/scrublands/central) +"ee" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"eo" = ( +/obj/structure/barricade/plasteel/wired, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"ep" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"es" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "wy_leftengine" + }, +/area/caperiver/indoors/clf_dropship) +"eO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"eR" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/structure/machinery/light/blue{ + dir = 1; + pixel_x = -15; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"eY" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "9_alt" + }, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "45" + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"fd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"ff" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/landmark/survivor_spawner/clf_medic/caperiver, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"fh" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/item/clothing/head/militia/bucket{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"fj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/clothing/accessory/storage/webbing/black, +/obj/item/clothing/accessory/storage/webbing/black, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = 5 + }, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"fk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"fC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"fM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"fO" = ( +/obj/structure/prop/colorable_rock/boulder/large/boulder1{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"fQ" = ( +/obj/effect/decal/large_stain{ + layer = 2.52 + }, +/obj/effect/decal/large_stain{ + layer = 2.52; + dir = 1; + pixel_x = 20; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"fV" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/central) +"fX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"gf" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/scrublands/central) +"gh" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4; + closed = 0 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"gu" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"gA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = -8; + pixel_y = -12 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"gK" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"gN" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/caperiver/indoors/clf_dropship) +"gQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/tent/big, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"gW" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"gY" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "brokendropshipconsole3" + }, +/area/caperiver/indoors/clf_dropship) +"gZ" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "103" + }, +/area/caperiver/indoors/clf_dropship) +"hb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/central) +"hl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 9; + pixel_x = 26 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -3; + pixel_y = 6; + dir = 10 + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"ho" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"ht" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"hy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"hA" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "31" + }, +/area/caperiver/indoors/clf_dropship) +"hD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"hM" = ( +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"hQ" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "92" + }, +/area/caperiver/indoors/clf_dropship) +"hZ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/item/trash/cigbutt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"io" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "110"; + dir = 4 + }, +/area/caperiver/indoors/clf_dropship) +"iq" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"ir" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"is" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"iy" = ( +/obj/structure/barricade/sandbags/wired, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"iz" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"iF" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"iN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1; + pixel_x = 6 + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"ja" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"jz" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"jA" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jD" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/central) +"jI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/central) +"jM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"jW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"kp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"ky" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"kz" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"kA" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"kC" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"kJ" = ( +/obj/structure/prop/structure_lattice{ + desc = "An old company comms tower used to transmit communications between subspace bodies. Looks like this one has seen better days."; + dir = 4; + icon = 'icons/obj/structures/machinery/comm_tower2.dmi'; + icon_state = "construct_9_1"; + layer = 5; + level = 5; + name = "destroyed comms tower" + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/scrublands/central) +"kM" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1; + pixel_y = 8; + buckling_y = 8; + pixel_x = 5; + buckling_x = 5 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/structure/machinery/door_control{ + id = "clf_lockdown"; + name = "Dropship Lockdown"; + pixel_x = -15; + pixel_y = 22 + }, +/obj/item/device/binoculars{ + pixel_y = 5; + pixel_x = -15 + }, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/caperiver/indoors/clf_dropship) +"kR" = ( +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 4; + pixel_y = 8; + buckling_y = 16 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 6; + pixel_y = 31; + layer = 2.9 + }, +/obj/structure/machinery/light/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"lf" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/structure/machinery/floodlight, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"lr" = ( +/obj/item/stack/sheet/metal, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "20" + }, +/area/caperiver/indoors/clf_dropship) +"lv" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"lM" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"lP" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/landmark/survivor_spawner/clf_engi/caperiver, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"mn" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"mq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/central) +"mw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d796a"; + dir = 9; + pixel_x = 6; + pixel_y = -14 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"my" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"mO" = ( +/obj/item/attachable/bayonet/upp, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"mQ" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"mT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"mY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/central) +"ne" = ( +/obj/structure/machinery/light/dropship/green{ + dir = 4 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "83" + }, +/area/caperiver/indoors/clf_dropship) +"ng" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/item/stack/cable_coil/cut{ + icon_state = "coil2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 2; + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"nh" = ( +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"nz" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"nA" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/central) +"nM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"nN" = ( +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/central) +"nU" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/book/codebook/clf{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"oa" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "leftengine_3" + }, +/area/caperiver/indoors/clf_dropship) +"og" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/central) +"oQ" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "49" + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"oU" = ( +/obj/item/stack/sheet/metal, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"po" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/mre_food_packet/clf, +/obj/item/mre_food_packet/clf{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"pB" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/caperiver/outdoors/scrublands/central) +"pD" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"pL" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"pO" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3"; + pixel_x = -2 + }, +/obj/structure/surface/rack{ + pixel_y = 17; + density = 0; + layer = 2.4 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 12; + pixel_y = 5; + layer = 3.1 + }, +/obj/item/roller{ + pixel_x = 1; + pixel_y = -1; + layer = 2.41 + }, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"pQ" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/blue{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "clf_cargo_2"; + name = "Cargo Lockdown"; + pixel_x = -10; + pixel_y = -20 + }, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"pT" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"pY" = ( +/obj/item/stack/rods{ + pixel_x = -8 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "34" + }, +/area/caperiver/indoors/clf_dropship) +"pZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"qa" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/mre_food_packet/clf, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"qh" = ( +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"qp" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"qt" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/closed/wall/strata_ice/rock, +/area/caperiver/oob) +"qw" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"qA" = ( +/obj/structure/machinery/door/airlock/prison_hatch, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite'"; + color = "#646464"; + id = "clf_lockdown"; + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"qI" = ( +/obj/structure/sign/banners/clf_flag{ + pixel_x = -14; + pixel_y = 31; + layer = 2.9 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/caperiver/indoors/clf_dropship) +"qL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"qM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"qN" = ( +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"rb" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"ro" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/central) +"ry" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "10_interior_1" + }, +/area/caperiver/indoors/clf_dropship) +"rC" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"rD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/scrublands/central) +"rN" = ( +/obj/structure/machinery/door_control{ + id = "clf_cargo_1"; + name = "Cargo Lockdown"; + pixel_x = -10; + pixel_y = -20 + }, +/obj/structure/closet/crate/green, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/accessory/patch/clf_patch, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/clothing/under/colonist/clf, +/obj/item/roller/bedroll, +/obj/item/roller/bedroll, +/obj/item/roller/bedroll, +/obj/item/roller/bedroll, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"rP" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"rR" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"rU" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"sG" = ( +/obj/item/trash/cigbutt, +/obj/item/tool/shovel/etool, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"sK" = ( +/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 = 1 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "wy_rightengine" + }, +/area/caperiver/indoors/clf_dropship) +"sL" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"sP" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"sS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"sW" = ( +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"sY" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"tk" = ( +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"to" = ( +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/scrublands/central) +"tE" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"tP" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"tV" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"tX" = ( +/obj/item/stack/cable_coil/cut{ + icon_state = "coil2" + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "35" + }, +/area/caperiver/indoors/clf_dropship) +"uA" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/central) +"uD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = -13; + pixel_x = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"uF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"uI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"uY" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/template_noop, +/area/template_noop) +"vm" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"vs" = ( +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"vu" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"vA" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "45" + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"vE" = ( +/obj/structure/cable{ + icon_state = "2-6"; + color = "#550d0d"; + level = 2; + pixel_x = -16; + pixel_y = 5 + }, +/obj/structure/cable{ + icon_state = "2-8"; + level = 2; + color = "#550d0d"; + pixel_y = -10; + pixel_x = 14 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"vM" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"vO" = ( +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_1" + }, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"vV" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"wc" = ( +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = -14; + pixel_y = 20 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "brokendropshipconsole1" + }, +/area/caperiver/indoors/clf_dropship) +"wh" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/asteroidwarning, +/area/caperiver/outdoors/scrublands/central) +"wB" = ( +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_2" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"wE" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "110" + }, +/area/caperiver/indoors/clf_dropship) +"wM" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"wN" = ( +/obj/item/stack/rods, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 15; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = -7 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "29" + }, +/area/caperiver/indoors/clf_dropship) +"wQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"wZ" = ( +/obj/structure/largecrate/random/barrel/black, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"xh" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "15_alt" + }, +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "44" + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"xj" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"xs" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"xD" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"xJ" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "32" + }, +/area/caperiver/indoors/clf_dropship) +"xN" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"xS" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"yf" = ( +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/clothing/accessory/storage/webbing/black, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"yp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/large_stain{ + layer = 2.52 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/central) +"yw" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "39" + }, +/area/caperiver/indoors/clf_dropship) +"yA" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/clothing/mask/breath/medical{ + pixel_x = -3 + }, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"yB" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7"; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"yE" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"yG" = ( +/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 = -12 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "23" + }, +/area/caperiver/indoors/clf_dropship) +"yP" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/central) +"zg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 8; + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/outdoors/scrublands/central) +"zi" = ( +/obj/item/weapon/gun/smg/fp9000, +/obj/item/weapon/gun/smg/fp9000, +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"zn" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "78" + }, +/area/caperiver/indoors/clf_dropship) +"zr" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"zA" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "27" + }, +/area/caperiver/indoors/clf_dropship) +"zC" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/turf/open/floor/prison/ramptop, +/area/caperiver/indoors/clf_dropship) +"zI" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "30" + }, +/area/caperiver/indoors/clf_dropship) +"zX" = ( +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "22" + }, +/area/caperiver/indoors/clf_dropship) +"zY" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "2" + }, +/obj/structure/prop/hybrisa/misc/fire/fire2{ + color = "#FF7700"; + icon = 'icons/effects/fire.dmi'; + icon_state = "dynamic_2"; + pixel_y = 2; + layer = 5.3; + light_color = "#FF7700"; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/indoors/clf_dropship) +"Af" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/structure/machinery/floodlight, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/central) +"AB" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/clothing/accessory/storage/webbing/black, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"AD" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"AN" = ( +/obj/structure/machinery/optable{ + dir = 1; + density = 0 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 22; + pixel_y = 28; + layer = 2.9 + }, +/obj/structure/machinery/light/blue{ + dir = 8; + pixel_y = -8 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/structure/surface/rack{ + pixel_y = 17; + density = 0; + layer = 2.4 + }, +/obj/item/storage/surgical_tray{ + pixel_x = 1; + pixel_y = -3 + }, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"AV" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/structure/machinery/power/apc/upgraded/power/north, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"AY" = ( +/obj/structure/prop/colorable_rock/boulder/small/boulder2{ + color = "#88715d" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Bb" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -5 + }, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"Bd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/hybrisa/dirt_2, +/turf/open/floor/corsat/officetiles, +/area/caperiver/indoors/clf_dropship) +"Be" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"Bk" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"Bl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6 + }, +/obj/item/stack/cable_coil/cut{ + icon_state = "coil2" + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/central) +"Bo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"Bu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/barricade/plasteel/wired, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"BA" = ( +/obj/structure/flora/bush/canyon/tree/alt2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/caperiver/outdoors/scrublands/central) +"BH" = ( +/obj/item/stack/sheet/metal/med_large_stack, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"BP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/decal/large_stain{ + layer = 2.52; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"BU" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/item/stack/rods{ + pixel_x = -8 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"BW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "3" + }, +/area/caperiver/indoors/clf_dropship) +"Cs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"Ct" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"Cw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Cx" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "94" + }, +/area/caperiver/indoors/clf_dropship) +"CC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 6; + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"CL" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 4 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "7" + }, +/area/caperiver/indoors/clf_dropship) +"CN" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "46" + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"CS" = ( +/obj/item/stack/rods, +/obj/effect/decal/large_stain{ + layer = 2.52; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/central) +"CT" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "38" + }, +/area/caperiver/indoors/clf_dropship) +"Da" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"Dy" = ( +/obj/effect/attach_point/electronics/dropship1{ + dir = 1; + attach_id = 5 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "106" + }, +/area/caperiver/indoors/clf_dropship) +"DB" = ( +/obj/structure/closet/crate/ammo, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"DJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"DK" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "4" + }, +/area/caperiver/indoors/clf_dropship) +"DU" = ( +/obj/structure/largecrate/random/barrel/brown{ + layer = 4.1; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"DX" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "37" + }, +/area/caperiver/indoors/clf_dropship) +"Ej" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Eo" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"EP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/scrublands/central) +"ER" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"Fe" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"Ff" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/asphalt/cement/cement3, +/area/caperiver/outdoors/scrublands/central) +"Fg" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/central) +"Ft" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "16" + }, +/area/caperiver/indoors/clf_dropship) +"Fu" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"FJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/central) +"FK" = ( +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_1" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"Gf" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/storage/box/clf{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Gh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"Gu" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/caperiver/outdoors/scrublands/central) +"Gv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"GC" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"GK" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"GO" = ( +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + dir = 1 + }, +/turf/open/floor/prison/ramptop/north, +/area/caperiver/outdoors/scrublands/central) +"GV" = ( +/obj/structure/fence/slim/door{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"GY" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/structure/cable{ + icon_state = "5-9"; + color = "#550d0d"; + level = 2; + pixel_y = -26 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/scrublands/central) +"Hb" = ( +/obj/item/trash/cigbutt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"Hf" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/obj/structure/flag/plantable/clf, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"Hg" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"Hm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"Hp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"Hy" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/outdoors/scrublands/central) +"HE" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"HH" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "24" + }, +/area/caperiver/indoors/clf_dropship) +"HJ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"HS" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"Ic" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clothing/accessory/patch/clf_patch, +/turf/open/floor/asteroidwarning/west, +/area/caperiver/outdoors/scrublands/central) +"Ie" = ( +/obj/structure/machinery/door/airlock/prison_hatch{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"Ig" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Ix" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "36" + }, +/area/caperiver/indoors/clf_dropship) +"Iy" = ( +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/scrublands/central) +"IX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/door/poddoor/hybrisa/white{ + name = "\improper UD-9M 'Dogbite' - Cargo Hold"; + color = "#646464"; + id = "clf_cargo_2" + }, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"Jd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 1 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"Ju" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"JD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/caperiver/outdoors/scrublands/central) +"JE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/large_stain{ + layer = 2.52 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"JF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/central) +"JU" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "36_alt" + }, +/area/caperiver/indoors/clf_dropship) +"Kk" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "5" + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"KA" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"KB" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"KL" = ( +/obj/item/stack/cable_coil/green{ + icon_state = "coil1" + }, +/obj/item/trash/cigbutt, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"KR" = ( +/obj/structure/machinery/light/dropship/red{ + dir = 8 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "75" + }, +/area/caperiver/indoors/clf_dropship) +"KT" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"KZ" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "44" + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"Le" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"Lf" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"LB" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt_2, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -2; + pixel_x = -4 + }, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"LU" = ( +/obj/structure/barricade/sandbags/wired, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"Mb" = ( +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Me" = ( +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_y = 8 + }, +/obj/item/weapon/gun/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"Mf" = ( +/obj/structure/closet/coffin/woodencrate{ + pixel_y = 8 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/mre_food_packet/clf{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"Mj" = ( +/turf/template_noop, +/area/template_noop) +"Mm" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/almayer/test_floor4, +/area/caperiver/indoors/clf_dropship) +"Mo" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Mp" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Mv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/caperiver/outdoors/scrublands/central) +"MH" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"MI" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40/extended, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"MO" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "26" + }, +/area/caperiver/indoors/clf_dropship) +"Nk" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3"; + pixel_x = -2 + }, +/obj/effect/decal/hybrisa/dirt_2, +/obj/item/storage/belt/medical/full{ + pixel_y = 17 + }, +/obj/item/tank/anesthetic{ + pixel_x = 8 + }, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"Nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/central) +"Nr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 + }, +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/scrublands/central) +"Nu" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"NE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"NF" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/caperiver/outdoors/scrublands/central) +"NX" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/caperiver/outdoors/scrublands/central) +"Oa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"Ob" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Ou" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "25" + }, +/area/caperiver/indoors/clf_dropship) +"Ov" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"OB" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"OD" = ( +/turf/closed/wall/kutjevo/colony/reinforced/hull, +/area/caperiver/oob) +"OK" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/caperiver/outdoors/scrublands/central) +"OZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small/blue, +/obj/item/prop/almayer/comp_open{ + pixel_y = 5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/caperiver/indoors/clf_dropship) +"Pd" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/item/stack/rods{ + pixel_x = -8 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 29; + pixel_y = -11 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_y = 5; + dir = 8; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/large_stain{ + layer = 2.52 + }, +/turf/open/desert/rock/deep/transition/northeast, +/area/caperiver/outdoors/scrublands/central) +"Po" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1; + pixel_y = 8; + buckling_y = 8; + pixel_x = -5; + buckling_x = -5 + }, +/obj/item/trash/cigbutt, +/obj/effect/landmark/survivor_spawner/clf_lead/caperiver, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/caperiver/indoors/clf_dropship) +"Pu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = -11; + pixel_y = 5; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"Pz" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"PL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt/desert_transition_edge1, +/area/caperiver/outdoors/scrublands/central) +"PV" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/plating/kutjevo, +/area/caperiver/outdoors/scrublands/central) +"Qh" = ( +/obj/structure/sign/poster/clf{ + pixel_x = 10; + pixel_y = 29; + layer = 2.8 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 32; + layer = 2.9 + }, +/obj/structure/bed/hybrisa/bunkbed3{ + dir = 4; + pixel_y = 8; + buckling_y = 16 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"Qq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Qr" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "17" + }, +/area/caperiver/indoors/clf_dropship) +"QG" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "100" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/caperiver/indoors/clf_dropship) +"QR" = ( +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/caperiver/indoors/clf_dropship) +"QZ" = ( +/obj/structure/fence/slim, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/caperiver/outdoors/mining_base_exterior/south) +"Rd" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Rh" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"RA" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"RD" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "10_interior" + }, +/area/caperiver/indoors/clf_dropship) +"RT" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock/deep/transition/east, +/area/caperiver/outdoors/scrublands/central) +"Sa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/desert/rock/deep/transition/north, +/area/caperiver/outdoors/scrublands/central) +"Sd" = ( +/obj/structure/flora/tree/joshua{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 5; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Sg" = ( +/obj/structure/machinery/light/dropship/blue{ + dir = 8 + }, +/obj/effect/decal/large_stain{ + layer = 2.52; + pixel_x = 16; + pixel_y = -8 + }, +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "8" + }, +/area/caperiver/indoors/clf_dropship) +"Sr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -3; + pixel_y = 17 + }, +/obj/item/storage/box/m56d_hmg, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"Sx" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"SF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small/blue, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/caperiver/indoors/clf_dropship) +"SO" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 5; + pixel_y = -8 + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"SP" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"SS" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/effect/decal/hybrisa/warning/redandwhite_W, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"SV" = ( +/obj/structure/bed/hybrisa/bunkbed3, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/floor/prison/southwest, +/area/caperiver/indoors/clf_dropship) +"Tg" = ( +/obj/structure/largecrate/supply/supplies/flares, +/obj/structure/machinery/light/blue{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/caperiver/indoors/clf_dropship) +"Tj" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/caperiver/outdoors/scrublands/central) +"To" = ( +/obj/item/trash/cigbutt, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"Tp" = ( +/obj/structure/largecrate/random/case/double{ + pixel_y = -9; + layer = 2.9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"TA" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "107" + }, +/area/caperiver/indoors/clf_dropship) +"TH" = ( +/obj/structure/shuttle/part/dropship_clf{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock/deep, +/area/caperiver/indoors/clf_dropship) +"TJ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/bed/stool{ + pixel_y = 17 + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"TK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"TT" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "10" + }, +/area/caperiver/indoors/clf_dropship) +"Up" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/caperiver/outdoors/scrublands/central) +"Uu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"UN" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1; + pixel_x = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#9d7766"; + dir = 5; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/large_stain{ + layer = 2.52; + pixel_x = -11; + pixel_y = -11 + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"UV" = ( +/obj/item/stack/cable_coil/green{ + icon_state = "coil1" + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "21" + }, +/area/caperiver/indoors/clf_dropship) +"Ve" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock/deep/transition/west, +/area/caperiver/outdoors/scrublands/central) +"Vk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f" + }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"Vp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand/layer2, +/area/caperiver/outdoors/scrublands/central) +"VA" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"VK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/ramptop, +/area/caperiver/indoors/clf_dropship) +"VV" = ( +/turf/closed/shuttle/dropship5/CLF/Fire{ + icon_state = "37_alt" + }, +/area/caperiver/indoors/clf_dropship) +"Wc" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"Wd" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Wv" = ( +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"Wx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/floor/asteroidwarning/east, +/area/caperiver/outdoors/scrublands/central) +"WF" = ( +/obj/structure/shuttle/part/dropship_clf/transparent{ + icon_state = "6" + }, +/turf/open/desert/rock/deep/transition/northwest, +/area/caperiver/indoors/clf_dropship) +"WJ" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"WP" = ( +/obj/structure/sign/banners/clf_flag{ + pixel_x = 13; + pixel_y = 31; + layer = 2.9 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -7; + pixel_y = 15; + buckling_x = -7; + buckling_y = 15 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 9; + pixel_y = 15; + buckling_x = 9; + buckling_y = 15 + }, +/obj/structure/machinery/light/blue{ + dir = 1; + pixel_x = -15; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_N{ + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_E, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"WZ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Xj" = ( +/obj/structure/machinery/light/dropship/green{ + dir = 4 + }, +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "33" + }, +/area/caperiver/indoors/clf_dropship) +"Xm" = ( +/obj/structure/machinery/door_control{ + id = "clf_cargo_2"; + name = "Cargo Lockdown"; + pixel_x = 22; + pixel_y = 33 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1; + pixel_x = 6 + }, +/turf/open/desert/rock/deep, +/area/caperiver/outdoors/scrublands/central) +"Xw" = ( +/obj/structure/sign/poster/clf{ + pixel_y = -30; + pixel_x = 3 + }, +/obj/structure/machinery/floodlight, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/caperiver/outdoors/scrublands/central) +"XH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/caperiver/outdoors/scrublands/central) +"XQ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/asteroidfloor, +/area/caperiver/outdoors/scrublands/central) +"XT" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -7; + buckle_offset_x = -7 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 9; + buckling_x = 9 + }, +/obj/structure/machinery/light/blue{ + pixel_x = -15 + }, +/obj/effect/decal/hybrisa/warning/redandwhite_S, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/survivor_spawner/clf/caperiver, +/turf/open/floor/corsat/spiralplate, +/area/caperiver/indoors/clf_dropship) +"Yh" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/caperiver/outdoors/scrublands/central) +"Yi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 4; + pixel_x = 7; + pixel_y = -4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#ccad8f"; + dir = 10 + }, +/turf/open/desert/dirt/desert_transition_corner1, +/area/caperiver/outdoors/scrublands/central) +"Yk" = ( +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/structure/surface/rack{ + color = "#8B7B5B" + }, +/turf/open/desert/dirt, +/area/caperiver/outdoors/scrublands/central) +"Yy" = ( +/obj/structure/largecrate/random/barrel/brown{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"YF" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "rightengine_3" + }, +/area/caperiver/indoors/clf_dropship) +"YR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"YV" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"YW" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/caperiver/outdoors/scrublands/central) +"YX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Zh" = ( +/turf/closed/shuttle/dropship5/CLF/Fire/transparent{ + icon_state = "brokendropshipconsole2" + }, +/area/caperiver/indoors/clf_dropship) +"Zj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 1 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) +"Zy" = ( +/obj/structure/machinery/defenses/sentry/premade/lowammo/random/dumb{ + dir = 4 + }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/caperiver/outdoors/scrublands/central) +"ZF" = ( +/obj/structure/shuttle/part/dropship_clf/transparent, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/large_stain{ + layer = 2.52 + }, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/caperiver/indoors/clf_dropship) +"ZH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/rock, +/area/caperiver/outdoors/scrublands/central) + +(1,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +"} +(2,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +"} +(3,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +OD +ad +GV +QZ +QZ +QZ +QZ +GV +QZ +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +kp +fO +Mj +Mj +Mj +Mj +"} +(4,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +OD +AV +ac +ab +aa +aa +aa +dd +vu +Xw +OD +Mj +Mj +Mj +bc +Fe +yB +CC +tk +Sd +Mj +Mj +Mj +"} +(5,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +tk +wQ +Hm +qh +nh +qh +To +sS +lM +mQ +hM +tk +qw +dc +YW +qh +Eo +gA +tk +Mj +Mj +Mj +"} +(6,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +jz +Hg +Ov +Hb +qh +qh +Sx +MH +vV +dc +ho +gK +Ju +my +qh +qh +AD +BA +Yi +Mj +Mj +"} +(7,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Nr +lP +mn +Hf +qh +Hm +Hm +xD +xS +KB +vm +ht +qh +bI +qh +ee +qh +qh +AD +ho +ho +"} +(8,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +gf +kJ +rD +kC +kz +Hm +wM +qh +qh +qN +qh +ht +qh +qh +qh +qh +qh +qh +qh +bI +qh +"} +(9,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +uY +iz +GY +PV +nU +TJ +Hm +sG +Ct +qh +qh +To +vM +ER +KA +xs +xN +fX +VA +qh +qh +qh +"} +(10,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +tk +Ig +vE +bO +Da +qh +Hm +Hm +DJ +Wc +xN +kA +lf +hM +hM +hM +Mo +GC +jz +Vk +qh +mT +"} +(11,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +dM +to +pB +Mb +jA +jz +Me +Yk +qh +Hp +GK +Tp +wZ +hM +hM +hM +hM +qp +YX +WJ +OK +Yh +lv +"} +(12,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +dM +to +XQ +HE +HE +ir +Ic +po +gQ +pB +hD +vV +gW +hM +hM +hM +hM +hM +WZ +YX +qM +KB +qh +"} +(13,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +dM +GO +Wv +hy +hy +Wv +ep +Oa +hy +wh +pL +sL +mO +Gf +hM +hM +hM +WZ +WZ +HJ +xj +qh +bI +"} +(14,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +dM +to +Rh +JF +JF +JF +Nl +Wx +FJ +EP +VA +Tj +is +qa +hM +hM +hM +WZ +WZ +PL +qh +qh +qh +"} +(15,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +dM +to +NX +Iy +RT +dq +yP +Yy +DU +tk +vs +Nu +hZ +MI +hM +hM +hM +WZ +jM +cQ +qh +qh +ee +"} +(16,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +sW +tk +BH +rb +sW +KL +Bl +oU +BU +tk +tk +jz +HS +AD +hM +hM +hM +hM +fM +KB +qh +qh +DJ +"} +(17,1,1) = {" +Mj +Mj +Mj +Mj +Mj +QG +KR +qA +qA +es +oa +Fu +KZ +pY +dF +zX +lr +Pd +uF +dJ +RA +hM +hM +hM +hM +KT +qh +my +cO +Cs +"} +(18,1,1) = {" +Mj +Mj +Mj +Mj +Mj +ae +zn +qI +QR +ry +JU +wE +eY +tX +wN +yG +UV +ng +ro +Cw +uD +ZF +hM +hM +hM +Da +qh +qh +NF +tk +"} +(19,1,1) = {" +Mj +Mj +Mj +ah +hQ +Dy +zn +sP +SS +zn +AN +yA +ry +Ix +zI +HH +JU +CN +mw +CS +fQ +zY +hM +hM +iy +Da +qh +qh +tE +hM +"} +(20,1,1) = {" +Mj +Mj +Mj +ai +wc +OZ +zn +eR +XT +gZ +pO +Nk +gZ +Mf +Sr +zi +Tg +TT +CL +BP +yp +BW +JE +Zj +LU +Uu +Vp +Hm +Bo +TK +"} +(21,1,1) = {" +Mj +Mj +Mj +aj +Zh +Po +Ie +rP +ja +Ie +ff +ak +FK +zC +Mm +jW +AB +wB +fd +fd +SO +uA +nM +qL +eo +qh +ee +qh +tE +Rd +"} +(22,1,1) = {" +Mj +Mj +Mj +aj +Zh +kM +Ie +zr +nz +Ie +Bd +fh +vO +VK +yf +Bb +LB +IX +Xm +iN +dt +mq +sY +cK +Bu +qh +qh +eO +Hy +tk +"} +(23,1,1) = {" +Mj +Mj +Mj +al +gY +SF +zn +pD +aq +zn +Qh +rN +gZ +co +DB +fj +pQ +TT +Sg +DK +jI +Ej +fk +qh +ht +Be +YR +Gv +nM +tV +"} +(24,1,1) = {" +Mj +Mj +Mj +am +Cx +TA +zn +WP +tP +zn +kR +SV +RD +DX +hA +Ou +VV +oQ +hl +Kk +Sa +Pu +cI +Bk +ht +gu +Hy +tk +tk +tk +"} +(25,1,1) = {" +Mj +Mj +Mj +Mj +Mj +af +zn +gN +aL +RD +VV +io +xh +yw +xJ +MO +Ft +UN +iq +WF +dc +KB +qh +qh +Jd +Hy +tk +by +tk +ky +"} +(26,1,1) = {" +Mj +Mj +Mj +Mj +Mj +ag +ne +qt +qt +sK +YF +TH +vA +CT +Xj +zA +Qr +rR +mY +sY +cI +Hm +DJ +XH +cZ +tk +tk +tk +tk +tk +"} +(27,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +hM +hM +hM +sW +sW +sW +yE +hM +hM +hM +zg +fC +KB +qh +DJ +rC +tk +Ob +tk +fV +nA +hM +hM +"} +(28,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +hM +ZH +nN +Ve +Fg +hb +YX +hM +hM +AY +Gh +To +qh +tE +Pz +Mp +Ob +Mb +JD +Mj +Mj +Mj +"} +(29,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +tk +Wd +jA +Lf +Qq +WZ +hM +hM +hM +hM +KB +bI +Zy +Hy +tk +Af +Ff +nA +jD +Mj +Mj +Mj +"} +(30,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +tk +tk +rU +Wd +hM +hM +hM +hM +hM +OB +gh +SP +NE +og +nA +Mv +Mj +Mj +Mj +Mj +Mj +Mj +"} +(31,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +mQ +tk +tk +tk +pZ +hM +hM +hM +iF +qh +qh +DJ +Gu +Mv +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +"} +(32,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +tk +tV +tk +YV +tk +hM +uI +my +qh +qh +Le +JD +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +"} +(33,1,1) = {" +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +tk +tk +Up +ho +ho +YW +qh +bI +qh +aJ +pT +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +Mj +"}