diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm index 4fbeef10bd..fb824e7397 100644 --- a/code/game/machinery/vending/vending_types.dm +++ b/code/game/machinery/vending/vending_types.dm @@ -261,7 +261,7 @@ /obj/item/explosive/grenade/custom/teargas = 40, /obj/item/ammo_magazine/smg/m39/rubber = 40, /obj/item/ammo_magazine/pistol/rubber = 40, - /obj/item/ammo_magazine/pistol/mod88/rubber = 40, + /obj/item/ammo_magazine/pistol/vp70/rubber = 40, /obj/item/ammo_magazine/rifle/rubber = 40, /obj/item/ammo_magazine/rifle/m4ra/rubber = 40, /obj/item/clothing/head/helmet/marine/MP = 8, diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer.dm index 65fbf29176..491522c9a3 100644 --- a/code/game/machinery/vending/vendor_types/crew/staff_officer.dm +++ b/code/game/machinery/vending/vendor_types/crew/staff_officer.dm @@ -38,7 +38,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer, list( list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), - list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/mod88, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M4A3 Pistol", 0, /obj/item/storage/belt/gun/m4a3/commander, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("VP78 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp78, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index 30cfb9ae08..2555e3fde8 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -311,7 +311,7 @@ list("Shotgun Shell Box (Flechette x 100)", 0, /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), list("Shotgun Shell Box (Slugs x 100)", 0, /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR), list("Shotgun Shell Box (16g) (Breaching x 120)", 0, /obj/item/ammo_box/magazine/shotgun/light/breaching, VENDOR_ITEM_REGULAR), - list("Magazine Box (88 Mod 4 AP x 16)", 0, /obj/item/ammo_box/magazine/mod88, VENDOR_ITEM_REGULAR), + list("Magazine Box (VP70 x 16)", 0, /obj/item/ammo_box/magazine/vp70, VENDOR_ITEM_REGULAR), list("Magazine Box (SU-6 x 16)", 0, /obj/item/ammo_box/magazine/su6, VENDOR_ITEM_REGULAR), list("Magazine Box (VP78 x 16)", 0, /obj/item/ammo_box/magazine/vp78, VENDOR_ITEM_REGULAR), list("Magazine Box (XM51 x 8)", 0, /obj/item/ammo_box/magazine/xm51, VENDOR_ITEM_REGULAR), diff --git a/code/game/objects/items/storage/misc.dm b/code/game/objects/items/storage/misc.dm index 7cfa727615..906b32c9bc 100644 --- a/code/game/objects/items/storage/misc.dm +++ b/code/game/objects/items/storage/misc.dm @@ -123,6 +123,8 @@ /obj/item/storage/box/loadout/upp name = "Type 73 storing case" desc = "A small case containing a loaded Type 73, and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/t73, /obj/item/ammo_magazine/pistol/t73) + /obj/item/storage/box/loadout/upp/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/t73()) for(var/i = 1 to storage_slots - 1) @@ -131,6 +133,7 @@ /obj/item/storage/box/loadout/M4A3_custom_loadout name = "M4A3 storage case" desc = "A relatively large storage case containing a loaded M4A3 and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/m4a3/custom, /obj/item/ammo_magazine/pistol) /obj/item/storage/box/loadout/M4A3_custom_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/m4a3/custom()) @@ -140,6 +143,7 @@ /obj/item/storage/box/loadout/HG45_civilian_loadout name = "HG 45 'Aguila' storage case" desc = "A relatively large storage case containing a loaded HG 45 'Aguila' and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower) /obj/item/storage/box/loadout/HG45_civilian_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower()) @@ -149,6 +153,7 @@ /obj/item/storage/box/loadout/HG45_marine_loadout name = "HG 45 'Marina' storage case" desc = "A relatively large storage case containing a loaded HG 45 'Marina' and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/highpower/black, /obj/item/ammo_magazine/pistol/highpower/black) /obj/item/storage/box/loadout/HG45_marine_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/black()) @@ -158,6 +163,7 @@ /obj/item/storage/box/loadout/HG44_loadout name = "HG 44 'Automag' storage case" desc = "A relatively large storage case containing a loaded HG 44 'Automag' and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/highpower/automag, /obj/item/ammo_magazine/pistol/highpower/automag) /obj/item/storage/box/loadout/HG44_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag()) @@ -167,6 +173,7 @@ /obj/item/storage/box/loadout/Spearhead_loadout name = "Spearhead Armoury storage case" desc = "A relatively large storage case containing a loaded Spearhead Armoury autorevolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead) /obj/item/storage/box/loadout/Spearhead_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead()) @@ -176,6 +183,7 @@ /obj/item/storage/box/loadout/Spearhead_loadout/custom name = "Spearhead Armoury storage case" desc = "A relatively large storage case containing a loaded Spearhead Armoury autorevolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/spearhead/black, /obj/item/ammo_magazine/revolver/spearhead) /obj/item/storage/box/loadout/Spearhead_loadout/custom/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead/black()) @@ -185,6 +193,7 @@ /obj/item/storage/box/loadout/M1911_loadout name = "M1911 storage case" desc = "A relatively large storage case containing a loaded M1911 and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/m1911, /obj/item/ammo_magazine/pistol/m1911) /obj/item/storage/box/loadout/M1911_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/m1911()) @@ -194,6 +203,7 @@ /obj/item/storage/box/loadout/M44_loadout name = "M44 storage case" desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/m44, /obj/item/ammo_magazine/revolver) /obj/item/storage/box/loadout/M44_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/m44()) @@ -203,6 +213,7 @@ /obj/item/storage/box/loadout/M44_custom_loadout name = "M44 storage case" desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/m44/custom, /obj/item/ammo_magazine/revolver) /obj/item/storage/box/loadout/M44_custom_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/m44/custom()) @@ -215,6 +226,7 @@ w_class = SIZE_SMALL max_w_class = SIZE_TINY storage_slots = 4 + can_hold = list(/obj/item/weapon/gun/pistol/clfpistol, /obj/item/ammo_magazine/pistol/clfpistol) /obj/item/storage/box/loadout/clf/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/clfpistol()) diff --git a/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm b/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm index 27d39348e7..22b1ef5853 100644 --- a/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm +++ b/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm @@ -46,9 +46,9 @@ switch(choice) if(1 to 6) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) @@ -72,9 +72,9 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) if(9 to 10) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/cmb, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/mp5, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector, WEAR_L_HAND) @@ -104,9 +104,9 @@ /datum/equipment_preset/synth/survivor/cmb/synth/load_gear(mob/living/carbon/human/new_human) //backpack new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/security, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/autopsy_scanner, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge/rubber, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) diff --git a/code/modules/gear_presets/uscm_event.dm b/code/modules/gear_presets/uscm_event.dm index 8d033cfb80..4a8776dc63 100644 --- a/code/modules/gear_presets/uscm_event.dm +++ b/code/modules/gear_presets/uscm_event.dm @@ -350,7 +350,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/chief(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/chief(new_human), WEAR_JACKET) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 22a298093e..3ed328295a 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -814,7 +814,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/pilot(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm index 7a45130110..821d60f4e0 100644 --- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm @@ -645,7 +645,7 @@ overlay_gun_type = "_357" overlay_content = "_speed" num_of_magazines = 12 - magazine_type = /obj/item/ammo_magazine/revolver/cmb + magazine_type = /obj/item/ammo_magazine/revolver/spearhead /obj/item/ammo_box/magazine/spearhead/empty empty = TRUE @@ -653,7 +653,7 @@ /obj/item/ammo_box/magazine/spearhead/normalpoint name = "speed loaders box (Spearhead x 12)" overlay_ammo_type = "_357_reg" - magazine_type = /obj/item/ammo_magazine/revolver/cmb/normalpoint + magazine_type = /obj/item/ammo_magazine/revolver/spearhead /obj/item/ammo_box/magazine/spearhead/normalpoint/empty empty = TRUE diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi index 380169d359..eda346cede 100644 Binary files a/icons/obj/items/weapons/guns/lineart.dmi and b/icons/obj/items/weapons/guns/lineart.dmi differ diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm index 89a6705084..461f2d87a2 100644 --- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm +++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm @@ -3,28 +3,9 @@ /obj/structure/cargo_container/arious/rightmid, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"aab" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aac" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/outside/south) -"aad" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aae" = ( /obj/structure/machinery/light{ dir = 4 @@ -72,99 +53,14 @@ /obj/item/storage/box/m94, /turf/open/shuttle/dropship/light_grey_left_to_right, /area/whiskey_outpost/outside/lane/four_north) -"aam" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) -"aan" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/whiskey_outpost/outside/lane/four_north) -"aao" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) -"aap" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/healthanalyzer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"aaq" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aar" = ( /obj/structure/largecrate/supply/medicine/medkits, /turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) -"aas" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) -"aat" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/living) "aau" = ( /obj/structure/closet/secure_closet/commander, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"aav" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aaw" = ( /obj/structure/largecrate/supply/medicine/medkits, /obj/structure/machinery/light/small{ @@ -203,11 +99,6 @@ /obj/effect/landmark/wo_supplies/storage/machete, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"aaC" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/whiskey_outpost/inside/cic) "aaD" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -227,50 +118,11 @@ }, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"aaF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aaG" = ( /obj/structure/curtain/black, /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"aaH" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) -"aaI" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aaJ" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "aaK" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_south) @@ -298,42 +150,10 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"aaP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mre_pack/meal5{ - desc = "How long has this been sitting here?"; - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aaQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Commander's Storage"; - req_access_txt = "19"; - req_one_access = null - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "aaR" = ( /obj/structure/machinery/power/apc/almayer/east, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"aaS" = ( -/obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aaT" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/prison/floor_marked/southwest, @@ -341,21 +161,6 @@ "aaU" = ( /turf/open/floor/prison/darkyellow2/east, /area/whiskey_outpost/inside/supply) -"aaV" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aaW" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/living) "aaX" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ @@ -369,66 +174,10 @@ /obj/item/tool/hand_labeler, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"aaZ" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south) -"aba" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"abb" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "abc" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_north) -"abd" = ( -/obj/effect/decal/medical_decals{ - dir = 8; - icon_state = "docstripingdir" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = 30; - req_access = null - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"abe" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) -"abf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "abg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/hand_labeler{ @@ -441,20 +190,6 @@ /obj/structure/sign/poster, /turf/closed/wall, /area/whiskey_outpost/outside/south/far) -"abi" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"abj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/north/northwest) "abk" = ( /obj/structure/window/reinforced{ dir = 8; @@ -484,19 +219,6 @@ /obj/effect/landmark/start/whiskey/doctor, /turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) -"abo" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/whiskey_outpost/outside/lane/two_south) -"abp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "abq" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -521,64 +243,15 @@ "abs" = ( /turf/open/floor/carpet, /area/whiskey_outpost/inside/cic) -"abt" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) -"abu" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "abv" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"abw" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"abx" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aby" = ( /obj/structure/largecrate/random/case, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"abz" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"abA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "abB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -586,13 +259,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"abC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "abD" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/north, @@ -605,12 +271,6 @@ /obj/structure/disposalpipe/segment, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"abG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/living) "abH" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/marine/delta{ @@ -659,14 +319,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"abN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "abO" = ( /obj/structure/machinery/line_nexter{ dir = 1; @@ -674,15 +326,6 @@ }, /turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) -"abP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "abQ" = ( /obj/structure/curtain, /obj/structure/window/reinforced{ @@ -721,69 +364,14 @@ "abX" = ( /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"abY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "abZ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north) -"aca" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"acb" = ( -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/living) -"acc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"acc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) @@ -836,15 +424,6 @@ /obj/structure/medical_supply_link, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"acl" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "acm" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -852,26 +431,6 @@ /obj/structure/machinery/washing_machine, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"acn" = ( -/obj/effect/landmark/start/whiskey/leader, -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) -"aco" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "acp" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, @@ -892,19 +451,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"act" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) -"acu" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "acv" = ( /obj/structure/machinery/floodlight{ light_on = 1 @@ -915,25 +461,6 @@ /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south) -"acx" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"acy" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/living) "acz" = ( /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) @@ -960,35 +487,6 @@ /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"acD" = ( -/obj/structure/closet/secure_closet/bar{ - name = "Success Cabinet"; - req_access_txt = "1" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"acE" = ( -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/cic) -"acF" = ( -/obj/structure/mirror{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/cic) "acG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -1011,15 +509,6 @@ /obj/item/weapon/gun/rifle/m41aMK1, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) -"acJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "acK" = ( /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) @@ -1039,27 +528,12 @@ /obj/item/lightstick/red/planted, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) -"acO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "acP" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"acQ" = ( -/obj/structure/machinery/optable, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "acR" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/inside/caves/caverns/east) @@ -1069,12 +543,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"acT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital) "acU" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) @@ -1089,15 +557,6 @@ }, /turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) -"acX" = ( -/obj/structure/machinery/optable, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "acY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, @@ -1107,22 +566,10 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"ada" = ( -/obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) "adb" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) -"adc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/living) "add" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/whiskey_outpost/outside/south/very_far) @@ -1194,35 +641,6 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"adr" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) -"ads" = ( -/obj/structure/machinery/door/window/westright{ - dir = 4 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/cic) "adt" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4; @@ -1230,12 +648,6 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) -"adu" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "adv" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, @@ -1265,14 +677,6 @@ /obj/item/device/whistle, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) -"adz" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/cic) "adA" = ( /obj/structure/surface/table, /obj/item/facepaint/brown, @@ -1292,24 +696,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"adE" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "adF" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -1344,12 +730,6 @@ /obj/effect/landmark/start/whiskey/maint, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"adJ" = ( -/obj/structure/curtain/shower, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "adK" = ( /obj/structure/barricade/metal/wired, /obj/structure/machinery/m56d_hmg/mg_turret, @@ -1369,60 +749,6 @@ icon_state = "rasputin12" }, /area/whiskey_outpost/outside/lane/four_north) -"adN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"adO" = ( -/obj/structure/safe, -/obj/item/moneybag, -/obj/item/clothing/glasses/monocle, -/obj/item/weapon/telebaton, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"adP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/pillbottles, -/obj/item/reagent_container/spray/cleaner, -/obj/item/storage/box/gloves, -/obj/item/tool/hand_labeler, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"adQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "adR" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison/floor_plate/southwest, @@ -1436,21 +762,6 @@ }, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"adT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/reagent_scanner, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "adU" = ( /obj/structure/machinery/light{ dir = 8 @@ -1462,11 +773,6 @@ /obj/structure/machinery/vending/cigarette, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"adW" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/whiskey_outpost/outside/lane/one_north) "adX" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -1476,44 +782,10 @@ /obj/effect/landmark/wo_supplies/storage/machete, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"adY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/hypospray, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "adZ" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"aea" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "aeb" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -1529,18 +801,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"aed" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aee" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/whiskey_outpost/inside/cic) "aef" = ( /obj/effect/decal/cleanable/blood, /turf/open/jungle/impenetrable, @@ -1554,30 +814,9 @@ "aeh" = ( /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aei" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/hypospray, -/obj/item/weapon/gun/pill, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aej" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/four_south) -"aek" = ( -/obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "ael" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, @@ -1603,15 +842,6 @@ "aep" = ( /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/lane/one_south) -"aeq" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/bunker) "aer" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; @@ -1636,12 +866,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aev" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/living) "aew" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northwest) @@ -1676,12 +900,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"aeD" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) "aeE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Hospital"; @@ -1689,23 +907,9 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"aeF" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/cic) "aeG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/two_north) -"aeH" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/m56d, -/obj/effect/landmark/wo_supplies/storage/m56d, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "aeI" = ( /obj/effect/landmark/start/whiskey/spec, /obj/structure/stairs/perspective{ @@ -1713,16 +917,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aeJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aeK" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) @@ -1733,29 +927,6 @@ /obj/structure/largecrate/supply/supplies/sandbags, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aeM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"aeN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aeO" = ( -/obj/structure/bed/stool, -/obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "aeP" = ( /obj/structure/bed/chair{ dir = 8 @@ -1773,38 +944,6 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"aeS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aeT" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) -"aeU" = ( -/obj/structure/closet/crate, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) "aeV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/mre_pack/meal5{ @@ -1818,16 +957,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aeW" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/supply/ammo/sentry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "aeX" = ( /obj/structure/machinery/light{ dir = 4 @@ -1838,14 +967,6 @@ "aeY" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"aeZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/curtain, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "afa" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/floor_marked/southwest, @@ -1853,13 +974,6 @@ "afb" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/three_north) -"afc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "afd" = ( /obj/effect/landmark/start/whiskey/leader, /turf/open/gm/dirt, @@ -1868,18 +982,6 @@ /obj/item/cell/high, /turf/open/floor/plating, /area/whiskey_outpost/outside/lane/four_north) -"aff" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 32 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8; - icon_state = "shuttle_chair" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "afg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ @@ -1887,19 +989,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"afh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/healthanalyzer, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "afi" = ( /obj/structure/sign/safety/chem_lab, /turf/closed/wall/r_wall, @@ -1907,80 +996,6 @@ "afj" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"afk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"afl" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/sentry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "afm" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -2000,31 +1015,6 @@ /obj/structure/curtain, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"afp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"afq" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "afr" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/plating/plating_catwalk/prison, @@ -2044,26 +1034,12 @@ /obj/structure/flora/pottedplant/random, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"afu" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) "afv" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"afw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) "afx" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) @@ -2077,19 +1053,6 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"afA" = ( -/obj/effect/landmark/start/whiskey/executive, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"afB" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/landmark/start/whiskey/commander, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "afC" = ( /obj/structure/barricade/handrail{ dir = 1 @@ -2104,38 +1067,6 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_south) -"afE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"afF" = ( -/obj/effect/landmark/start/whiskey/warrant, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"afG" = ( -/obj/effect/landmark/start/whiskey/engineering, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"afH" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "Hypersleep Room"; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "afI" = ( /obj/structure/platform{ dir = 1 @@ -2166,16 +1097,6 @@ }, /turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) -"afN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "afO" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, @@ -2204,74 +1125,16 @@ /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_north) -"afT" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" +"afX" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north) +"aga" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" }, -/area/whiskey_outpost/inside/living) -"afU" = ( -/obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/one_north) -"afV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"afW" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"afX" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north) -"afY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"afZ" = ( -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aga" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" - }, -/turf/open/floor/prison, +/turf/open/floor/prison, /area/whiskey_outpost/inside/living) "agb" = ( /obj/structure/disposalpipe/segment, @@ -2289,19 +1152,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"age" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "agf" = ( /obj/structure/machinery/body_scanconsole, /obj/effect/decal/medical_decals{ @@ -2319,30 +1169,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) -"agh" = ( -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"agi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "agj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_north) @@ -2350,12 +1176,6 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"agl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "agm" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -2371,12 +1191,6 @@ /obj/item/stack/cable_coil/cut, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"ago" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) "agp" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall, @@ -2397,17 +1211,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"agt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = 30; - req_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "agu" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_north) @@ -2434,45 +1237,17 @@ }, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"agA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/card{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "agB" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) -"agC" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/map_item, -/obj/item/folder/black_random, -/obj/item/device/whistle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "agD" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled{ dir = 1 }, /turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital/triage) -"agE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/squad_changer{ - dir = 1; - layer = 2.99 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "agF" = ( /obj/structure/sign/poster{ serial_number = 33 @@ -2483,32 +1258,6 @@ /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"agH" = ( -/obj/item/storage/box/explosive_mines, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/lane/one_north) -"agI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"agJ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "agK" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison/floor_plate/southwest, @@ -2524,34 +1273,6 @@ /obj/structure/largecrate/random, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"agN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital) -"agO" = ( -/obj/structure/machinery/conveyor_switch{ - id = "crate" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/whiskey_outpost/inside/supply) -"agP" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "Operating Theatre"; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/hospital) "agQ" = ( /obj/structure/barricade/metal/wired, /turf/open/floor/prison/floor_plate/southwest, @@ -2559,24 +1280,6 @@ "agR" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_north) -"agS" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "Operating Theatre"; - req_one_access_txt = "2;8;19" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"agT" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "agU" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) @@ -2585,44 +1288,13 @@ /obj/effect/landmark/start/whiskey/bridge, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"agW" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "radar computer" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"agX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "agY" = ( /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) -"agZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aha" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"ahb" = ( -/obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "ahc" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; @@ -2664,20 +1336,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) -"ahj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/overwatch/almayer{ - layer = 3.2; - pixel_y = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "ahk" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -2686,29 +1344,6 @@ /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"ahl" = ( -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ahm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ahn" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -2739,12 +1374,6 @@ "ahs" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/lane/four_north) -"aht" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ahu" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/map_item, @@ -2766,41 +1395,10 @@ /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"ahx" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - dir = 1; - pixel_y = 28 - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ahy" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south/far) -"ahz" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ahA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2813,66 +1411,10 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"ahB" = ( -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - sortType = "Chemistry" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ahC" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/caves/tunnel) -"ahD" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ahE" = ( -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "triagedecaldir" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - sortType = "Hospital" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ahF" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ahG" = ( /obj/item/storage/box/m56d_hmg, /turf/open/floor/prison/floor_plate/southwest, @@ -2898,61 +1440,12 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/river) -"ahN" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ahO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bunker" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/living) -"ahP" = ( -/turf/open/space/basic, -/area/whiskey_outpost/inside/caves) -"ahQ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/living) "ahR" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"ahS" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/lane/one_north) -"ahT" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "ahU" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -2960,48 +1453,12 @@ }, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"ahV" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "ahW" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"ahX" = ( -/obj/structure/machinery/sleep_console{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"ahY" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "ahZ" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, @@ -3041,43 +1498,16 @@ "aif" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/lane/four_south) -"aig" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aih" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"aii" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Medical Storage"; - req_access_txt = "20"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aij" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"aik" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "ail" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/small{ @@ -3085,24 +1515,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aim" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ain" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aio" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, @@ -3113,13 +1525,6 @@ }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_north) -"aiq" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/living) "air" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4a3, @@ -3139,33 +1544,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aiu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aiv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aiw" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) "aix" = ( /obj/structure/flora/pottedplant/random, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -3178,37 +1556,10 @@ }, /turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) -"aiy" = ( -/obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) -"aiz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access_txt = "2;8;19" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aiA" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south) -"aiB" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "South-Eastern Platform" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aiC" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -3251,20 +1602,6 @@ /obj/structure/closet/crate, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) -"aiI" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aiJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aiK" = ( /obj/structure/machinery/door/poddoor{ desc = "A podlock that leads to the main Marine base on LV-624. It requires power from the outpost to stay shut. Better not let anything get through this..."; @@ -3291,44 +1628,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"aiN" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aiO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aiP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aiQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/device/binoculars, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"aiR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aiS" = ( /obj/effect/landmark/start/whiskey/police, /turf/open/floor/prison, @@ -3343,17 +1642,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aiV" = ( -/obj/structure/machinery/medical_pod/autodoc/unskilled{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aiW" = ( /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/prison/floor_marked/southwest, @@ -3362,32 +1650,6 @@ /obj/structure/disposalpipe/segment, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) -"aiY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/computer/overwatch/almayer{ - layer = 3.2; - pixel_y = 20 - }, -/obj/item/tool/pen, -/obj/item/paper_bin, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"aiZ" = ( -/obj/structure/machinery/autodoc_console, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aja" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; @@ -3395,17 +1657,6 @@ }, /turf/open/floor/almayer/redfull, /area/whiskey_outpost/outside/lane/two_north) -"ajb" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "ajc" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -3420,16 +1671,6 @@ }, /turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/beach) -"aje" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "ajf" = ( /obj/effect/spawner/gibspawner/human, /obj/item/weapon/gun/pistol/m4a3, @@ -3446,65 +1687,10 @@ /obj/effect/landmark/start/whiskey/engineering, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"aji" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ajj" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "docstripingdir" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"ajk" = ( -/obj/structure/machinery/medical_pod/autodoc/unskilled, -/obj/effect/decal/medical_decals{ - dir = 8; - icon_state = "docstripingdir" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"ajl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -32 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4; - icon_state = "shuttle_chair" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "ajm" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ajn" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "ajo" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -3534,64 +1720,16 @@ }, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"ajs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ajt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, -/area/whiskey_outpost/inside/cic) -"aju" = ( -/obj/item/toy/beach_ball/holoball, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) -"ajv" = ( -/obj/structure/surface/rack, -/obj/structure/largecrate/supply/ammo/sentry, -/obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"ajw" = ( -/turf/open/floor/asteroidwarning/east, -/area/whiskey_outpost/outside/north/northeast) -"ajx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1; - name = "\improper Pillbox Vodka"; - req_access = null; - req_one_access = null +"ajw" = ( +/turf/open/floor/asteroidwarning/east, +/area/whiskey_outpost/outside/north/northeast) +"ajx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1; + name = "\improper Pillbox Vodka"; + req_access = null; + req_one_access = null }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) @@ -3605,14 +1743,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"ajA" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "ajB" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/bunker/bunker/front) @@ -3620,66 +1750,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) -"ajD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) -"ajE" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"ajF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck{ - desc = "A simple deck of playing cards. You could play Caravan with these!"; - pixel_y = 12 - }, -/obj/item/toy/deck/uno{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"ajG" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"ajH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ajI" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8; - icon_state = "shuttle_chair" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) -"ajJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital) "ajK" = ( /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/prison/floor_marked/southwest, @@ -3688,22 +1758,6 @@ /obj/structure/platform_decoration, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"ajM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/living) -"ajN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/whiskey_outpost/inside/cic) "ajO" = ( /obj/structure/barricade/plasteel/wired, /turf/open/floor/prison/floor_plate/southwest, @@ -3757,40 +1811,12 @@ /obj/item/device/motiondetector, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ajY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/folder/black_random, -/obj/structure/machinery/computer/overwatch/almayer{ - layer = 3.2; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"ajZ" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aka" = ( /obj/structure/sign/poster{ serial_number = 34 }, /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/bunker/bunker/front) -"akb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "akc" = ( /obj/structure/largecrate/guns, /turf/open/floor/plating/platebot, @@ -3807,37 +1833,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) -"akg" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"akh" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aki" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/beach) -"akj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "akk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -3858,26 +1857,6 @@ "ako" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/one_north) -"akp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/overwatch/almayer{ - layer = 3.2; - pixel_y = 20 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/device/whistle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"akq" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "akr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" @@ -3888,79 +1867,22 @@ "aks" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) -"akt" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aku" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"akv" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) -"akw" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) -"akx" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "aky" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"akz" = ( -/obj/structure/fence, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/far) -"akA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "akB" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/four_south) -"akC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/southleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "WOlineshutters2"; - name = "\improper Supply Depo Line 2" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "akD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/southleft{ @@ -3974,12 +1896,6 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"akE" = ( -/obj/structure/machinery/computer/cryopod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "akF" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -3998,73 +1914,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"akI" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"akJ" = ( -/obj/structure/machinery/medical_pod/sleeper, -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"akK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/whiskey_outpost/inside/cic) "akL" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) -"akM" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"akN" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"akO" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) -"akP" = ( -/obj/structure/machinery/sleep_console{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "akQ" = ( /obj/structure/platform{ dir = 1 @@ -4092,44 +1945,9 @@ /obj/structure/machinery/cryopod, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"akV" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south) "akW" = ( /turf/open/jungle/impenetrable/grass_clear, /area/whiskey_outpost/outside/south/very_far) -"akX" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - dir = 8; - icon_state = "docstripingdir" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"akY" = ( -/obj/effect/landmark/start/whiskey/cmo, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"akZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) -"ala" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "alb" = ( /obj/structure/platform{ dir = 8 @@ -4143,11 +1961,6 @@ "alc" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/north/northeast) -"ald" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/whiskey_outpost/outside/lane/four_north) "ale" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave{ @@ -4165,14 +1978,6 @@ /obj/item/cell/high, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) -"ali" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "alj" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -4190,35 +1995,14 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"alm" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "aln" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"alo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "alp" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/very_far) -"alq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker) "alr" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/police, @@ -4231,13 +2015,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"alt" = ( -/obj/structure/bed/roller, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "alu" = ( /obj/structure/surface/table, /obj/structure/disposalpipe/segment{ @@ -4245,24 +2022,9 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"alv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/tool/extinguisher, -/obj/item/device/binoculars, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "alw" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) -"alx" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aly" = ( /obj/structure/machinery/light/small, /turf/open/floor/whitegreen, @@ -4274,14 +2036,6 @@ "alA" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost) -"alB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/facepaint/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "alC" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -4308,26 +2062,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"alG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "alH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4372,15 +2106,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"alO" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "alP" = ( /obj/structure/surface/table, /obj/item/facepaint/green, @@ -4403,13 +2128,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"alS" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "alT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -4426,20 +2144,6 @@ icon_state = "rasputin2" }, /area/whiskey_outpost/outside/lane/four_north) -"alW" = ( -/obj/structure/flora/pottedplant/random, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/cic) "alX" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; @@ -4459,12 +2163,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"amb" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "amc" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ @@ -4472,11 +2170,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost) -"amd" = ( -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) "ame" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; @@ -4497,11 +2190,6 @@ "amh" = ( /turf/open/floor/prison, /area/whiskey_outpost) -"ami" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/cic) "amj" = ( /obj/effect/spawner/gibspawner/human, /turf/open/gm/river, @@ -4511,32 +2199,10 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"aml" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "amm" = ( /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"amn" = ( -/obj/structure/surface/rack, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) -"amo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/cic) "amp" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; @@ -4571,28 +2237,9 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"amv" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/medical_decals{ - dir = 1; - icon_state = "docstripingdir" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "amw" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/very_far) -"amx" = ( -/obj/structure/flora/pottedplant/random, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/cic) "amy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/four_south) @@ -4600,17 +2247,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/cic) -"amA" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/item/weapon/gun/rifle/lmg, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "amB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -32 @@ -4621,33 +2257,6 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) -"amC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison, -/area/whiskey_outpost) -"amD" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/north) -"amE" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "amF" = ( /obj/structure/surface/table, /obj/item/facepaint/sniper, @@ -4656,70 +2265,14 @@ "amG" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost) -"amH" = ( -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m41aMK1/penetrating{ - current_rounds = 0; - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 6 - }, -/obj/item/device/whistle{ - pixel_y = 14 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "amI" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"amJ" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "amK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/beach) -"amL" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"amM" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Combat Information Center" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"amN" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "amO" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 @@ -4746,30 +2299,9 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"amS" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/machinery/light/small, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "amT" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/caves) -"amU" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "crate" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "amV" = ( /obj/structure/sign/poster{ serial_number = 7 @@ -4803,102 +2335,15 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison, /area/whiskey_outpost) -"ana" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"anb" = ( -/obj/structure/machinery/autodoc_console, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"anc" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"and" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital/triage) -"ane" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"anf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "ang" = ( /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/lane/four_south) "anh" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/outside/south/very_far) -"ani" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "anj" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/south) -"ank" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "anl" = ( /obj/item/stack/cable_coil, /obj/structure/surface/table/reinforced/prison, @@ -4908,25 +2353,6 @@ /obj/effect/spawner/gibspawner/human, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) -"ann" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"ano" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "anp" = ( /obj/structure/sign/safety/medical{ name = "\improper Hospital" @@ -4943,77 +2369,14 @@ "anr" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"ans" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"ant" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "anu" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"anv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost) -"anw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost) "anx" = ( /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) -"any" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"anz" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"anA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Hospital"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "anB" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, @@ -5071,19 +2434,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost) -"anN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "anO" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall, @@ -5100,16 +2450,6 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"anR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "anS" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -5131,22 +2471,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) -"anV" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Mortar Pit" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) -"anW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "anX" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; @@ -5154,25 +2478,9 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) -"anY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "anZ" = ( /turf/open/shuttle/dropship/light_grey_left_to_right, /area/whiskey_outpost/outside/lane/four_north) -"aoa" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) "aob" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, @@ -5180,24 +2488,12 @@ "aoc" = ( /turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) -"aod" = ( -/obj/structure/curtain/shower, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/whiskey_outpost/inside/living) "aoe" = ( /obj/structure/sign/safety/medical{ name = "\improper Hospital" }, /turf/closed/wall/r_wall, /area/whiskey_outpost) -"aof" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/four_south) "aog" = ( /turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital/triage) @@ -5234,13 +2530,6 @@ }, /turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker/bunker/front) -"aom" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) "aon" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; @@ -5257,19 +2546,6 @@ "aop" = ( /turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) -"aoq" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south) -"aor" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/living) "aos" = ( /obj/structure/shuttle/engine/propulsion{ pixel_y = 24 @@ -5284,40 +2560,6 @@ /obj/structure/sign/prop3, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"aov" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"aow" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/mortar_pit) -"aox" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_south) -"aoy" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) "aoz" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -5338,80 +2580,16 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aoC" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"aoD" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/mortar_pit) "aoE" = ( /obj/structure/largecrate/supply/explosives/mortar_he, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"aoF" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/whiskey_outpost/inside/living) -"aoG" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - sortType = "CIC" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"aoH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "11" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"aoI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aoJ" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"aoK" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aoL" = ( /obj/structure/barricade/metal/wired, /turf/open/floor/prison/floor_plate/southwest, @@ -5422,35 +2600,10 @@ }, /turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) -"aoN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aoO" = ( /obj/structure/largecrate/supply/explosives/mortar_incend, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"aoP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"aoQ" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital) "aoR" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/asteroidfloor/north, @@ -5474,22 +2627,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aoW" = ( -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"aoX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "aoY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5499,15 +2636,6 @@ "aoZ" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) -"apa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "apb" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/window/reinforced{ @@ -5520,14 +2648,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"apc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "apd" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; @@ -5587,15 +2707,6 @@ /obj/item/shard, /turf/open/floor/plating, /area/whiskey_outpost/outside/south/far) -"apn" = ( -/obj/structure/machinery/floodlight{ - light_on = 1 - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "apo" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -5635,25 +2746,6 @@ }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/east) -"apw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"apx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/mortar_pit) "apy" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -5661,24 +2753,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"apz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Mortar Pit" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"apA" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) "apB" = ( /obj/structure/pipes/standard/tank/oxygen, /obj/structure/sign/safety/med_cryo{ @@ -5694,16 +2768,6 @@ "apD" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/three_south) -"apE" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/mortar_pit) "apF" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -5723,37 +2787,11 @@ /obj/item/facepaint/black, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"apH" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - sortType = "Engineering" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "apI" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"apJ" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"apK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) "apL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -5777,16 +2815,6 @@ /obj/item/clothing/under/redpyjamas, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"apP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "apQ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/asteroidfloor/north, @@ -5879,22 +2907,6 @@ /obj/item/tool/hand_labeler, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"aqe" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/whiskey_outpost/inside/cic) -"aqf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/living) "aqg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) @@ -5923,26 +2935,6 @@ /obj/item/tool/shovel/etool, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"aqk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Storage" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aql" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aqm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5954,31 +2946,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) -"aqo" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aqp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aqq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) "aqr" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -5993,55 +2960,12 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) -"aqs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aqt" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/lane/four_south) -"aqu" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "aqv" = ( /turf/open/gm/coast/beachcorner/south_east, /area/whiskey_outpost/outside/lane/four_south) -"aqw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aqx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "aqy" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -6060,21 +2984,6 @@ /obj/effect/landmark/wo_supplies/storage/belts/grenade, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"aqB" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) -"aqC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "aqD" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; @@ -6082,125 +2991,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"aqE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"aqF" = ( -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"aqG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"aqH" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"aqI" = ( -/obj/structure/barricade/metal/wired, -/obj/item/ammo_casing{ - icon_state = "cartridge_2_1"; - layer = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aqJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "11" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"aqK" = ( -/obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aqL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"aqM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) -"aqN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"aqO" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/obj/structure/machinery/defenses/sentry/premade{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aqP" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) "aqQ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -6219,21 +3009,6 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) -"aqT" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) -"aqU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/mortar_pit) "aqV" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/marine/bravo{ @@ -6244,22 +3019,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aqW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/inside/caves/tunnel) -"aqX" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "WOline2" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) "aqY" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/lane/one_south) @@ -6267,12 +3026,6 @@ /obj/structure/barricade/metal/wired, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"ara" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/whiskey_outpost/inside/bunker) "arb" = ( /obj/structure/sign/prop1, /turf/closed/wall/r_wall, @@ -6299,20 +3052,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"arf" = ( -/obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"arg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "arh" = ( /obj/structure/machinery/floodlight{ light_on = 1 @@ -6323,27 +3062,6 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"arj" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) -"ark" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) -"arl" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) "arm" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -6380,31 +3098,6 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"art" = ( -/obj/structure/largecrate/guns, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/lane/one_north) -"aru" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"arv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "arw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/lane/two_north) @@ -6417,97 +3110,20 @@ "ary" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"arz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) -"arA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "arB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"arC" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) -"arD" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) "arE" = ( /obj/structure/machinery/light/small, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"arF" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) -"arG" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "arH" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison, /area/whiskey_outpost) -"arI" = ( -/obj/structure/largecrate/supply/supplies/plasteel, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"arJ" = ( -/obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) "arK" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/machinery/light/small{ @@ -6520,18 +3136,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/supply) -"arM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - name = "\improper Supply Depo"; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "arN" = ( /obj/structure/mortar/wo, /turf/open/gm/dirt, @@ -6560,22 +3164,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"arR" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"arS" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "arT" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_south) @@ -6586,29 +3174,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"arV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"arW" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4; - icon_state = "shuttle_chair" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) -"arX" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) "arY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6619,14 +3184,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"asa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "asb" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -6634,32 +3191,10 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"asc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1; - name = "\improper Pillbox Vodka"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "asd" = ( /obj/structure/machinery/power/smes/buildable, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"ase" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Generator Hatch" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "asf" = ( /obj/effect/decal/medical_decals{ dir = 4; @@ -6692,72 +3227,19 @@ /obj/item/device/lightreplacer, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"ash" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "asi" = ( /obj/effect/spawner/gibspawner/human, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) "asj" = ( /turf/open/floor/plating/warnplate/southwest, -/area/whiskey_outpost/outside/north/northeast) -"ask" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"asl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"asm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"asn" = ( -/turf/closed/wall/r_wall, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aso" = ( -/turf/open/gm/grass/grassbeach/south, -/area/whiskey_outpost/outside/south/far) -"asp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"asq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "Engineering"; - req_one_access_txt = "2;7" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) +/area/whiskey_outpost/outside/north/northeast) +"asn" = ( +/turf/closed/wall/r_wall, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aso" = ( +/turf/open/gm/grass/grassbeach/south, +/area/whiskey_outpost/outside/south/far) "asr" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -6788,12 +3270,6 @@ /obj/effect/decal/warning_stripes, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"asx" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "asy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/line_nexter_control{ @@ -6823,13 +3299,6 @@ "asB" = ( /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) -"asC" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "asD" = ( /obj/structure/barricade/handrail{ dir = 1 @@ -6875,23 +3344,10 @@ }, /turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) -"asI" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/living) "asJ" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/wo, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"asK" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "asL" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/defenses/sentry/premade, @@ -6924,24 +3380,6 @@ "asP" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"asQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"asR" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_x = -32 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "asS" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -6959,34 +3397,6 @@ "asV" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) -"asW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/supply/supplies/metal, -/obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"asX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) -"asY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/whiskey_outpost/inside/supply) "asZ" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 @@ -7047,22 +3457,6 @@ "ati" = ( /turf/open/gm/grass/gbcorner/south_east, /area/whiskey_outpost/outside/south) -"atj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) -"atk" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker) "atl" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/r_wall, @@ -7080,12 +3474,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital/triage) -"ato" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/northeast) "atp" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky, @@ -7119,45 +3507,6 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"att" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"atu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"atv" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/engineering) -"atw" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) "atx" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -7166,20 +3515,6 @@ /obj/effect/landmark/start/whiskey/smartgunner, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aty" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"atz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/four_north) "atA" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirt, @@ -7217,33 +3552,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"atF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"atG" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"atH" = ( -/obj/structure/machinery/conveyor_switch/oneway{ - id = "crate0" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) "atI" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, @@ -7261,13 +3569,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north) -"atL" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) "atM" = ( /obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/prison/floor_plate/southwest, @@ -7311,32 +3612,12 @@ "atS" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"atT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "atU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"atV" = ( -/obj/structure/holohoop{ - density = 0; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "atW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7348,16 +3629,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) -"atY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, -/area/whiskey_outpost/inside/cic) "atZ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -7370,27 +3641,6 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"aub" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "auc" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/machinery/light/small{ @@ -7401,52 +3651,6 @@ "aud" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) -"aue" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) -"auf" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"aug" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "WOline1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door_control{ - id = "WOlineshutters1"; - name = "Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "2;21" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "auh" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -7454,27 +3658,6 @@ /obj/effect/landmark/start/whiskey/requisition, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"aui" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "auj" = ( /obj/structure/machinery/cm_vending/gear/medic, /turf/open/floor/prison/floor_plate, @@ -7496,52 +3679,11 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"auo" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aup" = ( /obj/effect/landmark/start/whiskey/marine, /obj/structure/machinery/defenses/sentry/premade, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"auq" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/whiskey_outpost/inside/caves/caverns/west) -"aur" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "trash" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/recycler/whiskey{ - recycle_dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/engineering) -"aus" = ( -/obj/structure/machinery/door/window/northright, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) "aut" = ( /obj/structure/machinery/light{ dir = 1 @@ -7559,11 +3701,6 @@ /obj/item/tool/lighter, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"auw" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/whiskey_outpost/outside/lane/four_north) "aux" = ( /obj/structure/surface/table/woodentable/poor, /obj/effect/landmark/map_item, @@ -7579,40 +3716,11 @@ /area/whiskey_outpost/outside/mortar_pit) "auA" = ( /obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/inside/caves/tunnel) -"auB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) -"auC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"auD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 4; + invisibility = 101 }, -/area/whiskey_outpost/inside/bunker/pillbox/three) +/turf/open/gm/dirt, +/area/whiskey_outpost/inside/caves/tunnel) "auE" = ( /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns/east) @@ -7699,42 +3807,12 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"auO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"auP" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "auQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"auR" = ( -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8; - icon_state = "towergun" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "auS" = ( /obj/structure/closet/secure_closet/req_officer, /obj/item/clothing/suit/storage/marine/MP/SO, @@ -7752,13 +3830,6 @@ }, /turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) -"auT" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "auU" = ( /obj/effect/landmark/start/whiskey/liaison, /obj/structure/bed/chair/office/dark{ @@ -7780,28 +3851,9 @@ "auY" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"auZ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "ava" = ( /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"avb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) -"avc" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "avd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7825,12 +3877,6 @@ }, /turf/open/floor/plating/warnplate/southwest, /area/whiskey_outpost/outside/north/beach) -"avi" = ( -/obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) "avj" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -7842,31 +3888,6 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) -"avk" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_south) -"avl" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "avm" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -7874,14 +3895,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"avn" = ( -/obj/structure/largecrate/supply/supplies/plasteel, -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) "avo" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" @@ -7893,12 +3906,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"avq" = ( -/obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "avr" = ( /obj/structure/sign/poster{ serial_number = 32 @@ -7923,34 +3930,6 @@ /obj/structure/fence, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) -"avv" = ( -/obj/structure/largecrate/supply/supplies/metal, -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/engineering) -"avw" = ( -/obj/structure/machinery/conveyor_switch/oneway{ - id = "trash" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"avx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - no_panel = 1; - not_weldable = 1; - req_one_access_txt = "2;21" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "avy" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/poster, @@ -7960,36 +3939,14 @@ /obj/effect/landmark/start/whiskey/medic, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) -"avA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) "avB" = ( /turf/closed/shuttle/dropship, /area/whiskey_outpost/outside/lane/four_south) -"avC" = ( -/obj/vehicle/powerloader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) "avD" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired, /turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) -"avE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Storage" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "avF" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, @@ -8005,16 +3962,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"avI" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "avJ" = ( /obj/structure/cargo_container/watatsumi/rightmid, /turf/open/jungle/impenetrable, @@ -8023,11 +3970,6 @@ /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) -"avL" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) "avM" = ( /obj/structure/machinery/cm_vending/clothing/medic, /turf/open/floor/asteroidfloor/north, @@ -8052,25 +3994,6 @@ "avQ" = ( /turf/open/gm/grass/gbcorner/north_east, /area/whiskey_outpost/outside/lane/one_south) -"avR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"avS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "Engineering Dorms"; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "avT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/machinery/light/small{ @@ -8086,48 +4009,6 @@ }, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"avV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) -"avW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"avX" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - req_one_access_txt = "2;21" - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/northleft{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"avY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north) -"avZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "awa" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -8140,66 +4021,13 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/river/east) -"awc" = ( -/obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) "awd" = ( /turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker/bunker/front) -"awe" = ( -/obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin13" - }, -/area/whiskey_outpost/outside/lane/four_north) -"awf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/supply) "awg" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/northeast) -"awh" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"awi" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/structure/machinery/light/small, -/obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "awj" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -8208,39 +4036,6 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"awk" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) -"awl" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/engineering) "awm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 8; @@ -8255,18 +4050,6 @@ "awo" = ( /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/lane/four_north) -"awp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"awq" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "awr" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -8276,80 +4059,25 @@ "aws" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_south) -"awt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "awu" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"awv" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/two_south) -"aww" = ( -/obj/structure/barricade/plasteel/wired{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "awx" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) -"awy" = ( -/obj/structure/flora/pottedplant/random, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe, -/area/whiskey_outpost/inside/cic) -"awz" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "trash" - }, -/obj/structure/machinery/door/window/northleft, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/engineering) -"awA" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "trash" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/plasticflaps, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) +"awy" = ( +/obj/structure/flora/pottedplant/random, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/whiskey_outpost/inside/engineering) +/turf/open/floor/prison/cell_stripe, +/area/whiskey_outpost/inside/cic) "awB" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; @@ -8357,11 +4085,6 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) -"awC" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "awD" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -8375,15 +4098,6 @@ "awF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/four_south) -"awG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) "awH" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -8395,29 +4109,6 @@ }, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"awI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = 30; - req_access = null - }, -/obj/structure/sign/nosmoking_2{ - dir = 1; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"awJ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "awK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/two_south) @@ -8429,22 +4120,6 @@ /obj/item/packageWrap, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) -"awM" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "WOline1" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost) -"awN" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "awO" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ @@ -8452,57 +4127,9 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"awP" = ( -/obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) -"awQ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"awR" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/one_north) -"awS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "awT" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/four_south) -"awU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"awV" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 8; - name = "\improper Supply Depo"; - no_panel = 1; - not_weldable = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "awW" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison, @@ -8514,35 +4141,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"awY" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine, -/obj/item/ammo_box/magazine, -/obj/item/ammo_box/magazine/ext, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"awZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"axa" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/belts/grenade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "axb" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/north/beach) @@ -8576,12 +4174,6 @@ /obj/structure/machinery/cryopod, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"axg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) "axh" = ( /obj/structure/largecrate/guns, /turf/open/floor/plating/warnplate/west, @@ -8594,12 +4186,6 @@ /obj/effect/landmark/start/whiskey/medic, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"axj" = ( -/obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "axk" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -8620,12 +4206,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"axm" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "axn" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle/impenetrable, @@ -8644,15 +4224,6 @@ }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_north) -"axr" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/m39, -/obj/item/ammo_box/magazine/m39, -/obj/item/ammo_box/magazine/m39/ext, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "axs" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4ra, @@ -8660,14 +4231,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"axt" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = "Western Entrance Pillbox" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "axu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -8691,13 +4254,6 @@ icon_state = "rasputin9" }, /area/whiskey_outpost/outside/lane/four_north) -"axy" = ( -/obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "axz" = ( /obj/structure/platform_decoration{ dir = 4 @@ -8708,47 +4264,9 @@ /obj/vehicle/powerloader, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) -"axB" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/m4ra, -/obj/item/ammo_box/magazine/m4ra, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "axC" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/far) -"axD" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/obj/item/ammo_box/magazine/shotgun/flechette, -/obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"axE" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"axF" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "axG" = ( /obj/structure/cargo_container/grant/left, /turf/open/jungle, @@ -8760,42 +4278,16 @@ "axI" = ( /turf/open/jungle/clear, /area/whiskey_outpost/inside/caves/caverns/east) -"axJ" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/m4a3, -/obj/item/ammo_box/magazine/m44, -/obj/item/ammo_box/magazine/mod88, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "axK" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/very_far) -"axL" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 1 - }, -/turf/open/jungle/impenetrable{ - icon_state = "grass_clear" - }, -/area/whiskey_outpost/outside/south/very_far) "axM" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"axN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "axO" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) @@ -8807,15 +4299,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"axQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "axR" = ( /obj/structure/platform{ dir = 1 @@ -8832,27 +4315,11 @@ /obj/effect/landmark/start/whiskey/synthetic, /turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) -"axT" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "axU" = ( /obj/structure/bed/roller, /obj/structure/disposalpipe/segment, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital) -"axV" = ( -/obj/effect/landmark/start/whiskey/spec, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "axW" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 32 @@ -8863,24 +4330,6 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) -"axX" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "axY" = ( /obj/structure/grille{ density = 0; @@ -8891,13 +4340,6 @@ "axZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_south) -"aya" = ( -/obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) "ayb" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/metal, @@ -8923,12 +4365,6 @@ /obj/structure/filingcabinet/security, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"ayf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) "ayg" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -8937,34 +4373,10 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"ayh" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "ayi" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"ayj" = ( -/obj/effect/landmark/start/whiskey/cargo, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/whiskey_outpost/inside/supply) -"ayk" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "ayl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/inside/caves/caverns/west) @@ -8973,17 +4385,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"ayn" = ( -/obj/structure/platform_decoration, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "ayo" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; @@ -8991,15 +4392,6 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/lane/four_south) -"ayp" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "ayq" = ( /obj/effect/landmark/start/whiskey/cmo, /turf/open/floor/whitegreenfull, @@ -9025,64 +4417,15 @@ /obj/structure/sign/prop3, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"ayw" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) -"ayx" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/thunderdome/observer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"ayy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/bunker) -"ayz" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) -"ayA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"ayB" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) +"ayy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/bunker) "ayC" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"ayD" = ( -/obj/item/storage/box/m94, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/whiskey_outpost/outside/lane/one_north) "ayE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9090,68 +4433,12 @@ /obj/effect/landmark/start/whiskey/spec, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"ayF" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) -"ayG" = ( -/obj/structure/closet/secure_closet/req_officer, -/obj/item/clothing/suit/storage/marine/MP/SO, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/tool/hand_labeler, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/whiskey_outpost/inside/supply) "ayH" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/three_south) -"ayI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = 30; - req_access = null - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "ayJ" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/four_north) -"ayK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bunker" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"ayL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bunker" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "ayM" = ( /obj/item/toy/beach_ball/holoball, /obj/effect/decal/warning_stripes/asteroid{ @@ -9166,45 +4453,6 @@ icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_north) -"ayO" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"ayP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = 30; - req_access = null - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"ayQ" = ( -/obj/structure/machinery/medical_pod/autodoc/unskilled{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"ayR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "ayS" = ( /obj/structure/platform{ dir = 1 @@ -9224,27 +4472,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"ayV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"ayW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"ayX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "ayY" = ( /obj/structure/sign/poster/hero/voteno{ pixel_x = 32 @@ -9274,18 +4501,6 @@ /obj/item/roller, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"azc" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) -"azd" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "aze" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1; @@ -9295,40 +4510,9 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"azf" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"azg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "azh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_north) -"azi" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Eastern Entrance Pillbox" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "azj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9341,30 +4525,10 @@ }, /turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) -"azl" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"azm" = ( -/obj/item/storage/box/explosive_mines, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/whiskey_outpost/outside/lane/one_north) "azn" = ( /obj/item/lightstick/red/planted, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) -"azo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "azp" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/floor_plate/southwest, @@ -9384,19 +4548,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"azt" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/far) -"azu" = ( -/obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "azv" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -9431,31 +4582,6 @@ }, /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) -"azA" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) -"azB" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"azC" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "azD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9465,17 +4591,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"azE" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/blue, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/north) "azF" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/power/reactor/colony, @@ -9514,14 +4629,6 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) -"azM" = ( -/obj/effect/landmark/start/whiskey/smartgunner, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "azN" = ( /turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) @@ -9540,24 +4647,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/supply) -"azQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) "azR" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -9565,16 +4654,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"azS" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "azT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /turf/open/floor/prison/floor_plate, @@ -9589,15 +4668,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"azW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "azX" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river) @@ -9614,26 +4684,12 @@ "aAa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/three_north) -"aAb" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aAc" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/lane/four_north) -"aAd" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/far) "aAe" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/inside/bunker/bunker/front) @@ -9668,14 +4724,6 @@ "aAl" = ( /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"aAm" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aAn" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) @@ -9683,15 +4731,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/one) -"aAp" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 1 - }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/one_south) "aAq" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -9705,16 +4744,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"aAs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aAt" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/asteroidwarning/east, @@ -9750,23 +4779,6 @@ "aAA" = ( /turf/open/jungle, /area/whiskey_outpost/outside/south/far) -"aAB" = ( -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8; - icon_state = "towergun" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aAC" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aAD" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 @@ -9778,14 +4790,6 @@ /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) -"aAF" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aAG" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -9808,13 +4812,6 @@ }, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) -"aAJ" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aAK" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/north/beach) @@ -9855,15 +4852,6 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"aAR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aAS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/machinery/defenses/sentry/premade{ @@ -9874,16 +4862,6 @@ "aAT" = ( /turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital/triage) -"aAU" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aAV" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/west) @@ -9902,17 +4880,6 @@ "aAY" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/east) -"aAZ" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aBa" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -9926,44 +4893,14 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/south) -"aBc" = ( -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aBd" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/living) -"aBe" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aBf" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) -"aBg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aBh" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -9983,42 +4920,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aBm" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) -"aBn" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aBo" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aBp" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -10027,38 +4928,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aBq" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aBr" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aBt" = ( /obj/structure/barricade/plasteel/wired{ dir = 8 @@ -10068,13 +4937,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"aBu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "aBv" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle, @@ -10103,29 +4965,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"aBB" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1; - name = "\improper Pillbox Vodka"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"aBC" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aBD" = ( /obj/item/storage/box/m94, /turf/open/jungle/impenetrable, @@ -10149,17 +4988,6 @@ "aBF" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/river/west) -"aBG" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aBH" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -10172,16 +5000,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"aBJ" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aBK" = ( /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) @@ -10191,41 +5009,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"aBM" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south) -"aBN" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aBO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aBP" = ( -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.3 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aBQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) @@ -10235,65 +5018,10 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aBS" = ( -/obj/item/storage/box/m94, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/one_north) -"aBT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aBU" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aBV" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aBW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"aBX" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) -"aBY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aBZ" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, /obj/effect/decal/medical_decals{ @@ -10302,19 +5030,6 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"aCa" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aCb" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 @@ -10322,15 +5037,6 @@ /obj/effect/landmark/start/whiskey/synthetic, /turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) -"aCc" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aCd" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -10341,24 +5047,6 @@ "aCe" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/lane/one_north) -"aCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aCg" = ( -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 4; - icon_state = "towergun" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aCh" = ( /turf/closed/wall/wood, /area/whiskey_outpost/inside/caves/caverns) @@ -10406,80 +5094,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) -"aCq" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) -"aCr" = ( -/obj/structure/barricade/plasteel/wired{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aCs" = ( -/obj/structure/machinery/chem_master{ - tether_range = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aCt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aCu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aCv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aCw" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aCx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aCy" = ( /obj/structure/barricade/metal/wired, /turf/open/floor/plating/plating_catwalk/prison, @@ -10491,33 +5105,9 @@ "aCA" = ( /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"aCB" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"aCC" = ( -/obj/structure/machinery/chem_dispenser, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aCD" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) -"aCE" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aCF" = ( /obj/structure/machinery/power/apc/almayer/north, /obj/structure/disposalpipe/segment{ @@ -10552,17 +5142,6 @@ /obj/structure/barricade/sandbags/wired, /turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/beach) -"aCM" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aCN" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, @@ -10576,13 +5155,6 @@ "aCP" = ( /turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/lane/one_north) -"aCQ" = ( -/obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aCR" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost/outside/lane/four_south) @@ -10591,17 +5163,8 @@ /area/whiskey_outpost/outside/north/northeast) "aCT" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/lane/four_south) -"aCU" = ( -/obj/structure/machinery/floodlight{ - light_on = 1 - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/lane/four_south) "aCV" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) @@ -10679,93 +5242,6 @@ /obj/structure/barricade/sandbags/wired, /turf/open/floor/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) -"aDm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aDn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/beach) -"aDp" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/northeast) -"aDr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/northeast) -"aDs" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) -"aDt" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/beach) -"aDu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aDv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aDw" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -10794,14 +5270,6 @@ /obj/structure/surface/table/woodentable/poor, /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) -"aDz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aDA" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ @@ -10810,32 +5278,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/platform) -"aDB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aDC" = ( -/obj/structure/barricade/plasteel/wired{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aDD" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/beach) "aDE" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/river/east) @@ -10865,70 +5307,22 @@ }, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"aDJ" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aDK" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"aDL" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) "aDM" = ( /obj/structure/machinery/floodlight{ anchored = 0 }, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) -"aDN" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/obj/structure/machinery/defenses/sentry/premade{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aDO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aDP" = ( /obj/structure/platform{ dir = 8 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"aDQ" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aDR" = ( /obj/effect/landmark/start/whiskey/medic, /turf/open/floor/white, @@ -10955,54 +5349,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"aDW" = ( -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/engineering) "aDX" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"aDY" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aDZ" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aEa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/south) -"aEb" = ( -/obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aEc" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) "aEd" = ( /obj/structure/bed/chair{ dir = 1; @@ -11013,34 +5366,9 @@ "aEe" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/east) -"aEf" = ( -/obj/structure/machinery/floodlight{ - light_on = 1 - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aEg" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/west) -"aEh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aEi" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/inside/living) "aEj" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer/cargo, @@ -11078,16 +5406,6 @@ /obj/effect/landmark/wo_supplies/storage/machete, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"aEq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) "aEr" = ( /obj/structure/platform{ dir = 4 @@ -11106,52 +5424,6 @@ "aEu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/river/west) -"aEv" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/northwest) -"aEw" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/beach) -"aEx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aEy" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = "Western Platform" - }, -/obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aEz" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/whiskey_outpost/inside/cic) "aEA" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle, @@ -11166,16 +5438,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"aEC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "aED" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/asteroidfloor/north, @@ -11193,36 +5455,10 @@ "aEG" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/west) -"aEH" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aEI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "aEJ" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"aEK" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/north/northwest) "aEL" = ( /obj/structure/machinery/cm_vending/gear/synth, /turf/open/floor/plating/plating_catwalk, @@ -11231,28 +5467,12 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aEN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) "aEO" = ( /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) "aEP" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/very_far) -"aEQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aER" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_south) @@ -11271,12 +5491,6 @@ /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"aEV" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_north) "aEW" = ( /obj/effect/landmark/start/whiskey/medic, /turf/open/floor/prison/floor_plate/southwest, @@ -11291,29 +5505,6 @@ /obj/effect/landmark/whiskey_outpost/xenospawn, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"aEZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/whiskey_outpost/inside/cic) -"aFa" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aFb" = ( /turf/open/shuttle/dropship/light_grey_top_right, /area/whiskey_outpost/outside/lane/four_north) @@ -11323,45 +5514,14 @@ }, /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) -"aFd" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Eastern Platform" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aFe" = ( /obj/structure/barricade/plasteel/wired, /turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aFf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) -"aFg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"aFf" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aFh" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aFi" = ( /obj/structure/platform{ dir = 8 @@ -11383,16 +5543,6 @@ icon_state = "rasputin13" }, /area/whiskey_outpost/outside/lane/four_south) -"aFm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aFn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/south/very_far) @@ -11413,13 +5563,6 @@ /obj/item/ammo_box/magazine/ext, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"aFr" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aFs" = ( /obj/structure/platform{ dir = 1 @@ -11434,18 +5577,6 @@ "aFu" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/inside/caves/caverns/east) -"aFv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/beer_pack, -/obj/item/storage/beer_pack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aFw" = ( /obj/structure/platform, /turf/open/gm/coast/west, @@ -11485,18 +5616,6 @@ }, /turf/open/gm/coast/east, /area/whiskey_outpost/outside/river/west) -"aFE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aFF" = ( /obj/structure/platform{ dir = 1 @@ -11528,21 +5647,6 @@ /obj/item/storage/box/bodybags, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"aFL" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_south) -"aFM" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "aFN" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -11550,23 +5654,6 @@ }, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"aFO" = ( -/obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aFP" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "South-Eastern Platform" - }, -/obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aFQ" = ( /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) @@ -11575,36 +5662,6 @@ /obj/effect/landmark/start/whiskey/smartgunner, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) -"aFT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/obj/structure/sign/prop3{ - pixel_x = 28 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aFV" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -11649,16 +5706,6 @@ /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aGd" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/northeast) "aGe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -11670,15 +5717,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"aGh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aGi" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/south) @@ -11749,16 +5787,6 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) -"aGt" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/beach) "aGu" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, @@ -11766,15 +5794,6 @@ "aGv" = ( /turf/open/shuttle/dropship/light_grey_bottom_right, /area/whiskey_outpost/outside/lane/four_north) -"aGw" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aGx" = ( /obj/structure/machinery/light{ dir = 4 @@ -11782,12 +5801,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) -"aGy" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/inside/living) "aGz" = ( /turf/open/floor/plating, /area/whiskey_outpost/outside/north/beach) @@ -11804,36 +5817,6 @@ /obj/item/storage/box/m56d_hmg, /turf/open/shuttle/dropship/light_grey_top, /area/whiskey_outpost/outside/lane/four_north) -"aGD" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) -"aGE" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aGF" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aGG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating, @@ -11848,35 +5831,12 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"aGI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aGJ" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) "aGK" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/three_north) -"aGL" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aGM" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, @@ -11885,24 +5845,12 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"aGO" = ( -/obj/item/storage/box/m94, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/whiskey_outpost/outside/lane/four_north) "aGP" = ( /turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "aGQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"aGR" = ( -/obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aGS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; @@ -11910,13 +5858,6 @@ }, /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/east) -"aGT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/northeast) "aGU" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, @@ -11939,17 +5880,6 @@ /obj/structure/machinery/cryopod, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"aHa" = ( -/obj/structure/machinery/washing_machine, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aHb" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, /turf/open/floor/prison/floor_plate, @@ -11971,31 +5901,10 @@ "aHe" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_south) -"aHf" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aHg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"aHh" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/whiskey_outpost/outside/lane/four_north) -"aHi" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aHj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/west) @@ -12007,43 +5916,10 @@ /obj/structure/platform, /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/river/west) -"aHm" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aHn" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aHo" = ( -/obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aHp" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/one_north) -"aHq" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aHr" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/one_north) @@ -12069,11 +5945,6 @@ /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"aHw" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/whiskey_outpost/outside/lane/four_north) "aHx" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -12081,13 +5952,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"aHy" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aHz" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; @@ -12160,24 +6024,10 @@ /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"aHL" = ( -/obj/structure/machinery/door/airlock/almayer/marine/autoname{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aHM" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) -"aHN" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aHO" = ( /obj/effect/decal/medical_decals{ icon_state = "docstriping" @@ -12207,19 +6057,6 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aHR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/beach) "aHS" = ( /obj/item/storage/box/m94, /turf/open/floor/plating/platebot, @@ -12232,74 +6069,22 @@ /area/whiskey_outpost/outside/north) "aHU" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aHV" = ( -/obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aHW" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river, -/area/whiskey_outpost/outside/lane/one_north) -"aHX" = ( -/obj/item/lightstick/red/planted, -/obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle, -/area/whiskey_outpost/outside/south/very_far) -"aHY" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/northwest) -"aHZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"aIa" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/prison, +/area/whiskey_outpost/inside/bunker/bunker/front) +"aHW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river, +/area/whiskey_outpost/outside/lane/one_north) +"aHX" = ( +/obj/item/lightstick/red/planted, +/obj/effect/decal/cleanable/blood/writing, +/turf/open/jungle, +/area/whiskey_outpost/outside/south/very_far) "aIb" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/warnplate/northwest, /area/whiskey_outpost/outside/north/northeast) -"aIc" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aId" = ( /obj/structure/holohoop{ dir = 8; @@ -12315,22 +6100,6 @@ "aIe" = ( /turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) -"aIf" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aIg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12339,18 +6108,6 @@ /obj/effect/landmark/start/whiskey/spec, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aIh" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/beach) -"aIi" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/northeast) "aIj" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -12359,11 +6116,6 @@ /obj/structure/plasticflaps, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"aIk" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "aIl" = ( /obj/structure/bed/chair{ dir = 4 @@ -12387,16 +6139,6 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"aIp" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aIq" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -12437,35 +6179,12 @@ "aIw" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_north) -"aIx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/northwest) -"aIy" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aIz" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Entrance Pillbox" }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"aIA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump{ - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aIB" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, @@ -12494,13 +6213,6 @@ }, /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) -"aIF" = ( -/obj/structure/machinery/m56d_hmg/mg_turret, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aIG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/west, @@ -12553,13 +6265,6 @@ icon_state = "rasputin8" }, /area/whiskey_outpost/outside/lane/four_north) -"aIP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "aIQ" = ( /obj/structure/platform{ dir = 1 @@ -12584,12 +6289,6 @@ /obj/effect/landmark/start/whiskey/medic, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) -"aIU" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aIV" = ( /obj/item/tool/weldpack{ pixel_x = 6; @@ -12642,20 +6341,6 @@ "aJc" = ( /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/three_south) -"aJd" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) -"aJe" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/inside/living) "aJf" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -12667,20 +6352,6 @@ /obj/effect/spawner/gibspawner/human, /turf/open/floor, /area/whiskey_outpost/outside/south/far) -"aJh" = ( -/obj/item/tool/crowbar, -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"aJi" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/inside/caves/caverns/west) "aJj" = ( /obj/structure/machinery/cm_vending/gear/medic, /turf/open/floor/asteroidfloor/north, @@ -12691,20 +6362,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north/northwest) -"aJl" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) "aJm" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_x = -32 @@ -12811,28 +6468,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"aJE" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aJF" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) -"aJG" = ( -/obj/item/storage/box/m56d_hmg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" - }, -/area/whiskey_outpost/outside/lane/four_north) "aJH" = ( /obj/structure/platform_decoration{ dir = 8 @@ -12862,65 +6497,15 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north/beach) -"aJM" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aJN" = ( -/obj/effect/landmark/whiskey_outpost/supplydrops, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) -"aJO" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"aJP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital/triage) "aJQ" = ( /obj/effect/landmark/start/whiskey/cargo, /obj/structure/disposalpipe/segment, /turf/open/floor/prison/darkyellowcorners2/west, /area/whiskey_outpost/inside/supply) -"aJR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aJS" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aJT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital) "aJU" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/lane/four_south) @@ -13008,25 +6593,9 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital/triage) -"aKm" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8; - icon_state = "shuttle_chair" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_south) "aKn" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/lane/one_north) -"aKo" = ( -/obj/structure/curtain, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aKp" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha{ dir = 1; @@ -13044,18 +6613,6 @@ /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/engineering) -"aKs" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/whiskey_outpost/inside/supply) "aKt" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -13074,11 +6631,6 @@ /obj/effect/landmark/wo_supplies/guns/common/m41a, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"aKx" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital/triage) "aKy" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/inside/caves/caverns) @@ -13119,13 +6671,6 @@ /obj/structure/barricade/metal/wired, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aKF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/northeast) "aKG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) @@ -13141,12 +6686,6 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) -"aKJ" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/whiskey_outpost/outside/lane/one_north) "aKK" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -13161,13 +6700,6 @@ "aKM" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/north/northwest) -"aKN" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) "aKO" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/sentry, @@ -13221,12 +6753,6 @@ "aKY" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"aKZ" = ( -/obj/structure/largecrate/guns, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/whiskey_outpost/outside/lane/one_north) "aLa" = ( /obj/item/tool/crowbar, /obj/effect/landmark/start/whiskey/leader, @@ -13249,41 +6775,12 @@ /obj/structure/machinery/m56d_hmg/mg_turret, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"aLf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/item/device/healthanalyzer, -/obj/item/weapon/gun/pill{ - pixel_y = 6 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aLg" = ( /turf/open/jungle, /area/whiskey_outpost/inside/caves/caverns) "aLh" = ( /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/west) -"aLi" = ( -/obj/structure/machinery/chem_master{ - tether_range = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) -"aLj" = ( -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aLk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13305,15 +6802,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aLn" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aLo" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -13375,33 +6863,9 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"aLx" = ( -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/healthanalyzer, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aLy" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_north) -"aLz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aLA" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; @@ -13409,27 +6873,12 @@ }, /turf/open/floor/almayer/orangefull, /area/whiskey_outpost/outside/lane/three_north) -"aLB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/northeast) "aLC" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, /turf/open/jungle/impenetrable/grass_clear, /area/whiskey_outpost/outside/south/very_far) -"aLD" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/whiskey_outpost/outside/lane/four_north) "aLE" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 1 @@ -13444,30 +6893,9 @@ /obj/structure/bed/roller, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital) -"aLG" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_south) "aLH" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) -"aLI" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aLJ" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; @@ -13479,20 +6907,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"aLK" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aLL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13541,12 +6955,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_north) -"aLU" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/lane/one_north) "aLV" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -13570,14 +6978,8 @@ /area/whiskey_outpost/outside/north/platform) "aLZ" = ( /obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aMa" = ( -/obj/item/storage/box/m56d_hmg, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/whiskey_outpost/outside/lane/one_north) +/turf/closed/wall/r_wall, +/area/whiskey_outpost/inside/bunker/bunker/front) "aMb" = ( /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/south/very_far) @@ -13606,37 +7008,6 @@ icon_state = "rasputin2" }, /area/whiskey_outpost/outside/lane/four_south) -"aMg" = ( -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) -"aMh" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "crate" - }, -/obj/structure/plasticflaps, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) -"aMi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/northeast) "aMj" = ( /obj/structure/platform{ dir = 8 @@ -13651,12 +7022,6 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/caves) -"aMl" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) "aMm" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/whiskey_outpost/supplydrops, @@ -13668,47 +7033,10 @@ icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_south) -"aMo" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/whiskey_outpost/inside/cic) -"aMp" = ( -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8; - icon_state = "towergun" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) -"aMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) "aMr" = ( /obj/effect/landmark/start/whiskey/cargo, /turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) -"aMs" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/lane/four_north) -"aMt" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/platform) "aMu" = ( /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/lane/four_north) @@ -13719,13 +7047,6 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"aMw" = ( -/obj/structure/fence, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south) "aMx" = ( /turf/open/jungle, /area/whiskey_outpost/inside/caves/caverns/west) @@ -13799,26 +7120,6 @@ /obj/structure/sink/puddle, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) -"aMF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/ashtray/bronze, -/obj/item/clothing/mask/cigarette/weed{ - desc = "What in the god damn?"; - name = "marijuana cigarette" - }, -/obj/item/tool/lighter/random{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aMG" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -13856,13 +7157,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aML" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aMM" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, @@ -13875,14 +7169,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aMO" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aMP" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) @@ -13916,20 +7202,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/four_north) -"aMW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_north) -"aMX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/two_north) "aMY" = ( /obj/effect/spawner/gibspawner/human, /turf/open/gm/dirt, @@ -13944,13 +7216,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aNc" = ( -/obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/far) "aNd" = ( /obj/structure/sign/poster{ serial_number = 17 @@ -13961,12 +7226,6 @@ /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"aNf" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aNg" = ( /obj/item/stack/medical/bruise_pack, /turf/open/floor/plating/platebot, @@ -13999,20 +7258,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"aNl" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aNm" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -14020,17 +7265,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aNn" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aNo" = ( /turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost) @@ -14038,12 +7272,6 @@ /obj/structure/barricade/plasteel/wired, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aNq" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aNr" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -14058,17 +7286,6 @@ /obj/effect/landmark/start/whiskey/maint, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"aNt" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) "aNu" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle/impenetrable, @@ -14085,47 +7302,6 @@ "aNx" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) -"aNy" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) -"aNz" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/whiskey_outpost/outside/north/beach) -"aNA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aNB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/obj/structure/sign/nosmoking_2{ - dir = 1; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aNC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14136,13 +7312,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"aND" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/four_south) "aNE" = ( /obj/item/stool, /turf/open/gm/dirtgrassborder/south, @@ -14199,19 +7368,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aNQ" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aNR" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/shotgun/buckshot, @@ -14225,15 +7381,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aNT" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aNU" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" @@ -14257,16 +7404,6 @@ "aNY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/two_south) -"aNZ" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aOa" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_y = -5 @@ -14309,13 +7446,6 @@ "aOi" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/lane/four_north) -"aOj" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/beach) "aOk" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/lane/four_south) @@ -14323,21 +7453,6 @@ /obj/effect/landmark/start/whiskey/spec, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aOm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/southleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "WOlineshutters1"; - name = "\improper Supply Depo Line 1" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "aOn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -14354,18 +7469,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"aOo" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aOp" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker) "aOq" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/two_north) @@ -14381,34 +7484,10 @@ /obj/effect/landmark/start/whiskey/bridge, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aOt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_south) "aOu" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/east) -"aOv" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aOw" = ( -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aOx" = ( /obj/structure/holohoop{ dir = 4; @@ -14457,16 +7536,6 @@ /obj/item/lightstick/red/planted, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"aOG" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/sign/safety/med_cryo{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aOH" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/sign/prop3{ @@ -14474,20 +7543,6 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) -"aOI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aOJ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -14518,13 +7573,6 @@ "aOP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/inside/caves/caverns/west) -"aOQ" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/four_north) "aOR" = ( /obj/structure/surface/rack, /obj/item/fuel_cell, @@ -14533,12 +7581,6 @@ /obj/item/fuel_cell, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"aOS" = ( -/obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/cic) "aOT" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -14566,28 +7608,12 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) -"aOX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "aOY" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"aOZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/lane/three_south) "aPa" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -14613,30 +7639,11 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/lane/two_south) -"aPe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/beach) -"aPf" = ( -/turf/open/gm/dirt/desert3, -/area/whiskey_outpost/inside/caves/caverns/west) -"aPg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/beach) -"aPh" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/whiskey_outpost/outside/lane/four_north) +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/lane/two_south) +"aPf" = ( +/turf/open/gm/dirt/desert3, +/area/whiskey_outpost/inside/caves/caverns/west) "aPi" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/platform{ @@ -14653,16 +7660,6 @@ "aPk" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river/east) -"aPl" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aPm" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/three_north) @@ -14676,15 +7673,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital) -"aPp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aPq" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, @@ -14704,31 +7692,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"aPu" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aPv" = ( /obj/item/cell/high, /turf/open/shuttle/dropship/light_grey_middle, /area/whiskey_outpost/outside/lane/four_north) -"aPw" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/whiskey_outpost/outside/lane/two_south) -"aPx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aPy" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14747,12 +7714,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) -"aPB" = ( -/obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/whiskey_outpost/inside/cic) "aPC" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, @@ -14823,28 +7784,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) -"aPT" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aPU" = ( -/obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aPV" = ( -/obj/structure/machinery/door/airlock/hatch{ - name = "Dropship Hatch" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "aPW" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -14919,29 +7858,6 @@ }, /turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) -"aQl" = ( -/obj/item/lightstick/red/planted, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north/beach) -"aQm" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 1 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aQn" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/far) "aQo" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -14962,15 +7878,6 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) -"aQs" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker) "aQt" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/east, @@ -14978,35 +7885,10 @@ "aQu" = ( /turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) -"aQv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aQw" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/outside/lane/two_north) "aQx" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/beach) -"aQy" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/outside/lane/three_north) "aQz" = ( /turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) @@ -15030,26 +7912,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"aQF" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 1; - pixel_y = 18 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aQG" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/whiskey_outpost/inside/living) "aQH" = ( /obj/structure/cargo_container/grant/right, /turf/open/jungle, @@ -15082,15 +7944,6 @@ "aQO" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aQP" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 4 - }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "aQQ" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -15098,11 +7951,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aQR" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/whiskey_outpost/inside/caves/caverns/west) "aQS" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north/northwest) @@ -15163,37 +8011,6 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"aRe" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/outside/lane/three_north) -"aRf" = ( -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.3 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aRg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aRh" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 9 @@ -15283,14 +8100,6 @@ }, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/north) -"aRx" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aRy" = ( /obj/effect/spawner/random/tool, /turf/open/floor/asteroidfloor/north, @@ -15298,29 +8107,12 @@ "aRz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) -"aRA" = ( -/obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aRB" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"aRC" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aRD" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/jungle, @@ -15376,13 +8168,6 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"aRR" = ( -/obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aRS" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/south, @@ -15394,29 +8179,9 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"aRU" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area) -"aRV" = ( -/obj/item/storage/box/m94, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/whiskey_outpost/outside/lane/four_north) "aRW" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river) -"aRX" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aRY" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -15466,31 +8231,12 @@ }, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"aSf" = ( -/obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/whiskey_outpost/outside/lane/four_north) "aSg" = ( /obj/structure/machinery/door/airlock/almayer/marine/autoname{ dir = 1 }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aSh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1; - name = "\improper Pillbox Tequila"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aSi" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/south) @@ -15506,40 +8252,6 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) -"aSl" = ( -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aSm" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/whiskey_outpost/outside/lane/two_north) -"aSn" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Triage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aSo" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/outside/lane/two_north) "aSp" = ( /obj/structure/filingcabinet{ density = 0; @@ -15614,12 +8326,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/four) -"aSC" = ( -/obj/structure/closet, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital) "aSD" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/whitegreen/southeast, @@ -15631,24 +8337,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) -"aSG" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aSH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aSI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/inside/caves/caverns/east) @@ -15658,16 +8346,6 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"aSK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aSL" = ( /obj/structure/platform_decoration{ dir = 8 @@ -15683,28 +8361,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/whiskey_outpost/outside/south/far) -"aSO" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/whiskey_outpost/outside/lane/three_north) -"aSP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aSQ" = ( /obj/structure/platform{ dir = 4 @@ -15720,27 +8376,6 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"aSS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aST" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aSU" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/south) @@ -15748,15 +8383,6 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"aSW" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aSX" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/south) @@ -15792,27 +8418,6 @@ }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/east) -"aTd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aTe" = ( -/obj/structure/barricade/metal/wired, -/obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aTf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15840,24 +8445,10 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) -"aTk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aTl" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison, -/area/whiskey_outpost/inside/bunker) -"aTm" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) +/turf/open/floor/prison, +/area/whiskey_outpost/inside/bunker) "aTn" = ( /obj/structure/platform{ dir = 1 @@ -15870,18 +8461,6 @@ }, /turf/open/gm/coast/south, /area/whiskey_outpost/outside/river/east) -"aTp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ - dir = 1; - name = "\improper Pillbox Bourbon"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aTq" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Triage"; @@ -15894,13 +8473,6 @@ /obj/item/stool, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"aTs" = ( -/obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/far) "aTt" = ( /obj/structure/sign/safety/one, /obj/structure/sign/safety/ammunition{ @@ -15916,12 +8488,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"aTw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aTx" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, @@ -15940,36 +8506,12 @@ }, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/very_far) -"aTA" = ( -/obj/structure/machinery/light/small, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aTB" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"aTC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aTD" = ( -/obj/item/weapon/sword/machete, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/north) "aTE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/leader, @@ -15998,19 +8540,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"aTI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ - dir = 1; - name = "\improper Pillbox Bourbon"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aTJ" = ( /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) @@ -16038,25 +8567,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"aTP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "WOline2"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door_control{ - id = "WOlineshutters2"; - name = "Line 2 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "2;21" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/supply) "aTQ" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = 7; @@ -16100,18 +8610,6 @@ /obj/item/storage/backpack/industrial, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) -"aTW" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1; - name = "\improper Pillbox Wine"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aTX" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -16124,13 +8622,6 @@ /obj/structure/curtain, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) -"aTZ" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) "aUa" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, @@ -16161,43 +8652,12 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"aUe" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/outside/lane/three_north) "aUf" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/lane/one_south) "aUg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/three_south) -"aUh" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Triage"; - req_access = null; - req_one_access = null - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aUi" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aUj" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; @@ -16230,24 +8690,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"aUo" = ( -/obj/item/storage/box/explosive_mines, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/one_north) -"aUp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aUq" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/north, @@ -16262,23 +8704,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/three_north) -"aUt" = ( -/obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aUu" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aUv" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle/impenetrable, @@ -16303,25 +8728,6 @@ /obj/item/storage/box/m56d_hmg, /turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) -"aUB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) -"aUC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aUD" = ( /obj/structure/machinery/door/airlock/hatch{ name = "Dropship Hatch" @@ -16347,18 +8753,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"aUH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aUI" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -16366,33 +8760,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"aUJ" = ( -/obj/structure/machinery/m56d_hmg/mg_turret, -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) -"aUL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aUM" = ( /turf/open/floor/almayer/red/southwest, /area/whiskey_outpost/inside/cic) @@ -16406,13 +8773,6 @@ /obj/item/lightstick/red/planted, /turf/open/gm/grass/grass1, /area/whiskey_outpost/outside/north/northwest) -"aUP" = ( -/obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south) "aUQ" = ( /obj/effect/decal/medical_decals{ icon_state = "docstriping" @@ -16430,12 +8790,6 @@ }, /turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) -"aUR" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aUS" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, @@ -16458,27 +8812,9 @@ /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"aUX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aUY" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/two_south) -"aUZ" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/whiskey_outpost/outside/lane/two_north) "aVa" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -16511,17 +8847,6 @@ "aVg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/east) -"aVh" = ( -/turf/open/jungle/impenetrable{ - icon_state = "grass_clear" - }, -/area/whiskey_outpost/outside/south/very_far) -"aVi" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/north) "aVj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16536,35 +8861,10 @@ /obj/structure/bed/chair, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"aVm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/caves/tunnel) "aVn" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) -"aVo" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/one_south) -"aVp" = ( -/obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/whiskey_outpost/outside/lane/four_north) -"aVq" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/whiskey_outpost/inside/cic) "aVr" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -16611,17 +8911,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) -"aVx" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) "aVy" = ( /obj/structure/machinery/cm_vending/clothing/synth, /obj/effect/decal/cleanable/cobweb2, @@ -16647,13 +8936,6 @@ "aVC" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_south) -"aVD" = ( -/obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/four_south) "aVE" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 5 @@ -16683,57 +8965,13 @@ /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) -"aVI" = ( -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"aVJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aVK" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/three_south) -"aVL" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aVM" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/caves) -"aVN" = ( -/obj/effect/landmark/start/whiskey/marine, -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aVO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/three_north) -"aVP" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aVQ" = ( /obj/structure/platform{ dir = 1 @@ -16751,26 +8989,12 @@ /obj/item/device/binoculars, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"aVS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aVT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) -"aVU" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/whiskey_outpost/inside/caves/caverns/west) "aVV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/lane/two_south) @@ -16810,13 +9034,6 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"aWc" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "aWd" = ( /obj/item/weapon/gun/rifle/m41a, /turf/open/gm/river, @@ -16824,26 +9041,6 @@ "aWe" = ( /turf/closed/wall, /area/whiskey_outpost/outside/south/far) -"aWf" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aWg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aWh" = ( /obj/structure/bed/chair{ dir = 4 @@ -16859,39 +9056,15 @@ /obj/structure/pipes/standard/cap/hidden, /turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) -"aWk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aWl" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin3" }, /area/whiskey_outpost/outside/lane/four_south) -"aWm" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aWn" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/jungle, /area/whiskey_outpost/outside/north) -"aWo" = ( -/obj/item/stack/cable_coil, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aWp" = ( /obj/structure/sign/safety/two, /obj/structure/sign/safety/ammunition{ @@ -16907,13 +9080,6 @@ /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"aWs" = ( -/obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/two_south) "aWt" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -16922,19 +9088,6 @@ }, /turf/open/floor/plating/warnplate/southeast, /area/whiskey_outpost/outside/north/beach) -"aWu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1; - name = "\improper Pillbox Wine"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aWv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/lane/three_north) @@ -16955,19 +9108,7 @@ /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, /turf/open/floor/prison/floor_plate/southwest, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aWz" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/whiskey_outpost/inside/caves/caverns/west) -"aWA" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) +/area/whiskey_outpost/inside/bunker/pillbox/four) "aWB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -17010,22 +9151,6 @@ }, /turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/north/beach) -"aWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital/triage) -"aWJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north) "aWK" = ( /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/plating/plating_catwalk, @@ -17060,13 +9185,6 @@ }, /turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) -"aWR" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aWS" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -17101,13 +9219,6 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"aWY" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aWZ" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -17135,13 +9246,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/two_south) -"aXe" = ( -/obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aXf" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, @@ -17160,66 +9264,17 @@ /obj/structure/machinery/defenses/sentry/premade, /turf/open/floor/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) -"aXi" = ( -/obj/structure/machinery/floodlight{ - light_on = 1 - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/north/platform) -"aXj" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aXk" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_south) -"aXl" = ( -/obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) -"aXm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) "aXn" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/gm/dirt, /area/whiskey_outpost/outside/river/east) -"aXo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aXp" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north/northwest) -"aXq" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/lane/two_north) "aXr" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/north, @@ -17265,16 +9320,6 @@ icon_state = "rasputin5" }, /area/whiskey_outpost/outside/lane/four_north) -"aXA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital/triage) "aXB" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin0" @@ -17291,97 +9336,24 @@ /obj/structure/machinery/cm_vending/clothing/medic, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"aXF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"aXG" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = -5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aXH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"aXI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/whiskey_outpost/inside/hospital/triage) "aXJ" = ( /turf/open/floor/whitegreencorner/west, /area/whiskey_outpost/inside/hospital) -"aXK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aXL" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) -"aXM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aXN" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, /turf/open/gm/dirtgrassborder/east, /area/whiskey_outpost/outside/lane/two_south) -"aXO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/supply) "aXP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) -"aXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aXR" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, @@ -17409,15 +9381,6 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) -"aXV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aXW" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin4" @@ -17470,45 +9433,12 @@ /obj/item/tool/crowbar, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) -"aYg" = ( -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aYh" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "aYi" = ( /turf/open/floor/whitegreencorner/north, /area/whiskey_outpost/inside/hospital) -"aYj" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) -"aYk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aYl" = ( /obj/structure/barricade/metal/wired, /obj/structure/disposalpipe/segment, @@ -17519,16 +9449,6 @@ /obj/effect/landmark/wo_supplies/guns/common/m41a, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"aYn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aYo" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) @@ -17538,12 +9458,6 @@ }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"aYq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aYr" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, @@ -17608,23 +9522,6 @@ }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) -"aYB" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aYC" = ( /obj/structure/largecrate/random/case, /turf/open/floor/asteroidfloor/north, @@ -17637,15 +9534,6 @@ /obj/structure/bed/chair, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) -"aYF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aYG" = ( /obj/effect/decal/cleanable/blood/writing, /turf/open/jungle/impenetrable, @@ -17653,32 +9541,9 @@ "aYH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/inside/caves/caverns/west) -"aYI" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aYJ" = ( /turf/open/gm/dirt/desert1, /area/whiskey_outpost/outside/lane/two_south) -"aYK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) -"aYL" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/whiskey_outpost/outside/lane/four_north) "aYM" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirtgrassborder/west, @@ -17690,24 +9555,10 @@ "aYO" = ( /turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) -"aYP" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aYQ" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"aYR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aYS" = ( /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) @@ -17734,18 +9585,6 @@ icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_south) -"aYZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aZa" = ( /obj/structure/machinery/autodoc_console, /obj/effect/decal/medical_decals{ @@ -17778,30 +9617,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"aZe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null - }, -/obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/three) "aZf" = ( /turf/closed/wall/strata_ice/jungle, /area/whiskey_outpost/inside/caves) -"aZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aZh" = ( /obj/structure/platform{ dir = 4 @@ -17834,12 +9652,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/south) -"aZm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor{ - icon_state = "white" - }, -/area/whiskey_outpost/inside/hospital) "aZn" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -17853,25 +9665,6 @@ icon_state = "diagrasputin" }, /area/whiskey_outpost/outside/lane/four_north) -"aZq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1; - name = "\improper Pillbox Tequila"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"aZr" = ( -/obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aZs" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/lane/one_south) @@ -17895,14 +9688,6 @@ /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) -"aZy" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/bunker/front) "aZz" = ( /obj/structure/sign/safety/north, /obj/structure/sign/safety/bridge{ @@ -17919,26 +9704,10 @@ /obj/structure/fence, /turf/open/jungle, /area/whiskey_outpost/outside/south) -"aZC" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/whiskey_outpost/outside/lane/four_north) "aZD" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) -"aZE" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) "aZF" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/far) @@ -17953,29 +9722,6 @@ /obj/structure/sign/poster, /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) -"aZI" = ( -/obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/one) -"aZJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"aZK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/whiskey_outpost/outside/lane/four_north) "aZL" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/lane/four_south) @@ -17985,13 +9731,6 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) -"aZN" = ( -/obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aZO" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -18002,18 +9741,6 @@ "aZP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/one_north) -"aZQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) "aZR" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; @@ -18032,30 +9759,6 @@ /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/far) -"aZU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/bunker/pillbox/two) -"aZV" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 8; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost/outside/north) "aZW" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin10" diff --git a/maps/templates/lazy_templates/uscm_ert_station.dmm b/maps/templates/lazy_templates/uscm_ert_station.dmm index 51a50f3509..9ab0cfeed1 100644 --- a/maps/templates/lazy_templates/uscm_ert_station.dmm +++ b/maps/templates/lazy_templates/uscm_ert_station.dmm @@ -3200,7 +3200,7 @@ /area/adminlevel/ert_station/uscm_station) "KX" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/weapon/gun/pistol/mod88/training, +/obj/item/weapon/gun/pistol/vp70/training, /turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/uscm_station) "KY" = (