mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 14:31:59 +01:00
Service Map Fixes (#16018)
* Service Fixes * Fix Wrong Way Disp. Pipe * Freezer and Refrigerator Fixes * Fix Chicken Map Icon * Compatibility * Typo * Proper Chicken and Fish Freezer * Remove Extra Hen
This commit is contained in:
@@ -944,7 +944,7 @@
|
||||
light_color = COLOR_STEEL
|
||||
|
||||
/obj/machinery/vending/dinnerware/plastic
|
||||
name = "Utensil Vendor"
|
||||
name = "utensil vendor"
|
||||
desc = "A kitchen and restaurant utensil vendor."
|
||||
products = list(
|
||||
/obj/item/material/kitchen/utensil/fork/plastic = 12,
|
||||
@@ -957,6 +957,16 @@
|
||||
/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup = 6
|
||||
)
|
||||
|
||||
/obj/machinery/vending/dinnerware/bar
|
||||
name = "utensil vendor"
|
||||
desc = "A bar utensil vendor."
|
||||
products = list(
|
||||
/obj/item/reagent_containers/food/drinks/drinkingglass = 12,
|
||||
/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/carafe = 3,
|
||||
/obj/item/reagent_containers/food/drinks/pitcher = 3,
|
||||
/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup = 6
|
||||
)
|
||||
|
||||
/obj/machinery/vending/sovietsoda
|
||||
name = "BODA"
|
||||
desc = "An old sweet water vending machine, how did this end up here?"
|
||||
|
||||
@@ -1,54 +1,3 @@
|
||||
/*
|
||||
/obj/structure/sign/double/barsign
|
||||
icon = 'icons/obj/barsigns.dmi'
|
||||
icon_state = "empty"
|
||||
anchored = 1
|
||||
var/cult = 0
|
||||
req_access = list(access_bar) //Has to initalize at first, this is updated by instance's req_access
|
||||
|
||||
/obj/structure/sign/double/barsign/proc/get_valid_states(initial=1)
|
||||
. = icon_states(icon)
|
||||
. -= "on"
|
||||
. -= "narsiebistro"
|
||||
. -= "empty"
|
||||
if(initial)
|
||||
. -= "Off"
|
||||
|
||||
/obj/structure/sign/double/barsign/examine(mob/user)
|
||||
..()
|
||||
switch(icon_state)
|
||||
if("Off")
|
||||
to_chat(user, "It appears to be switched off.")
|
||||
if("narsiebistro")
|
||||
to_chat(user, "It shows a picture of a large black and red being. Spooky!")
|
||||
if("on", "empty")
|
||||
to_chat(user, "The lights are on, but there's no picture.")
|
||||
else
|
||||
to_chat(user, "It says '[icon_state]'")
|
||||
|
||||
/obj/structure/sign/double/barsign/Initialize()
|
||||
. = ..()
|
||||
icon_state = pick(get_valid_states())
|
||||
|
||||
/obj/structure/sign/double/barsign/attackby(obj/item/I, mob/user)
|
||||
if(cult)
|
||||
return ..()
|
||||
|
||||
var/obj/item/card/id/card = I.GetID()
|
||||
if(istype(card))
|
||||
if(check_access(card))
|
||||
var/sign_type = input(user, "What would you like to change the barsign to?") as null|anything in get_valid_states(0)
|
||||
if(!sign_type)
|
||||
return
|
||||
icon_state = sign_type
|
||||
to_chat(user, "<span class='notice'>You change the barsign.</span>")
|
||||
else
|
||||
to_chat(user, "<span class='warning'>Access denied.</span>")
|
||||
return
|
||||
|
||||
return ..()
|
||||
*/
|
||||
|
||||
/obj/structure/sign/double/barsign
|
||||
icon = 'icons/obj/barsigns.dmi'
|
||||
icon_state = "Off"
|
||||
@@ -59,12 +8,6 @@
|
||||
var/cult = 0
|
||||
var/choice_types = /singleton/sign/double/bar
|
||||
|
||||
/obj/structure/sign/double/barsign/kitchensign
|
||||
icon = 'icons/obj/kitchensigns.dmi'
|
||||
icon_state = "Off"
|
||||
req_access = list(access_kitchen)
|
||||
choice_types = /singleton/sign/double/kitchen
|
||||
|
||||
/obj/structure/sign/double/barsign/attackby(obj/item/I, mob/user)
|
||||
if(cult)
|
||||
return ..()
|
||||
@@ -79,6 +22,38 @@
|
||||
|
||||
return ..()
|
||||
|
||||
/obj/structure/sign/double/barsign/proc/get_sign_choices()
|
||||
var/list/sign_choices = GET_SINGLETON_SUBTYPE_MAP(choice_types)
|
||||
return sign_choices
|
||||
|
||||
/obj/structure/sign/double/barsign/proc/set_sign()
|
||||
var/list/sign_choices = get_sign_choices()
|
||||
|
||||
var/list/sign_index = list()
|
||||
for(var/sign in sign_choices)
|
||||
var/singleton/sign/double/B = GET_SINGLETON(sign)
|
||||
sign_index["[B.name]"] = B
|
||||
|
||||
var/sign_choice = input("What should the sign be changed to?") as null|anything in sign_index
|
||||
if(!sign_choice)
|
||||
return
|
||||
var/singleton/sign/double/signselect = sign_index[sign_choice]
|
||||
|
||||
name = signselect.name
|
||||
desc = signselect.desc
|
||||
desc_extended = signselect.desc_extended
|
||||
icon_state = signselect.icon_state
|
||||
update_icon()
|
||||
|
||||
/obj/structure/sign/double/barsign/kitchensign
|
||||
icon = 'icons/obj/kitchensigns.dmi'
|
||||
icon_state = "Off"
|
||||
req_access = list(access_kitchen)
|
||||
choice_types = /singleton/sign/double/kitchen
|
||||
|
||||
/obj/structure/sign/double/barsign/kitchensign/mirrored // Visible from the other end of the sign.
|
||||
pixel_x = -32
|
||||
|
||||
/singleton/sign/double
|
||||
var/name = "Holographic Projector"
|
||||
var/icon_state = "Off"
|
||||
@@ -185,27 +160,4 @@
|
||||
name = "City Alive"
|
||||
icon_state = "City Alive"
|
||||
desc = "City Alive is another popular restaurant chain, originating from Eridani I. It is famous for its light shows."
|
||||
desc_extended = "City Alive is a high class restaurant chain, dotted all over Eridani I and III. Especially on Eridani I they are also famous for their light shows in the evenings. These lights look like pulsating veins, making the city seem alive, especially when observed from orbit."
|
||||
|
||||
/obj/structure/sign/double/barsign/proc/get_sign_choices()
|
||||
var/list/sign_choices = GET_SINGLETON_SUBTYPE_MAP(choice_types)
|
||||
return sign_choices
|
||||
|
||||
/obj/structure/sign/double/barsign/proc/set_sign()
|
||||
var/list/sign_choices = get_sign_choices()
|
||||
|
||||
var/list/sign_index = list()
|
||||
for(var/sign in sign_choices)
|
||||
var/singleton/sign/double/B = GET_SINGLETON(sign)
|
||||
sign_index["[B.name]"] = B
|
||||
|
||||
var/sign_choice = input("What should the sign be changed to?") as null|anything in sign_index
|
||||
if(!sign_choice)
|
||||
return
|
||||
var/singleton/sign/double/signselect = sign_index[sign_choice]
|
||||
|
||||
name = signselect.name
|
||||
desc = signselect.desc
|
||||
desc_extended = signselect.desc_extended
|
||||
icon_state = signselect.icon_state
|
||||
update_icon()
|
||||
desc_extended = "City Alive is a high class restaurant chain, dotted all over Eridani I and III. Especially on Eridani I they are also famous for their light shows in the evenings. These lights look like pulsating veins, making the city seem alive, especially when observed from orbit."
|
||||
@@ -1,31 +1,23 @@
|
||||
//
|
||||
// Freezer
|
||||
//
|
||||
/obj/structure/closet/secure_closet/freezer
|
||||
name = "freezer"
|
||||
desc = "A freezer."
|
||||
icon_state = "freezer"
|
||||
door_anim_squish = 0.22
|
||||
door_anim_angle = 123
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/kitchen
|
||||
name = "kitchen cabinet"
|
||||
req_access = list(access_kitchen)
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/kitchen/fill()
|
||||
for(var/i = 0, i < 2, i++)
|
||||
new /obj/item/reagent_containers/food/condiment/flour(src)
|
||||
new /obj/item/reagent_containers/food/condiment/sugar(src)
|
||||
new /obj/item/reagent_containers/food/condiment/shaker/spacespice(src)
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/kitchen/mining
|
||||
req_access = list()
|
||||
|
||||
// Meat Freezer
|
||||
/obj/structure/closet/secure_closet/freezer/meat
|
||||
name = "meat fridge"
|
||||
name = "meat freezer"
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/meat/fill()
|
||||
..()
|
||||
for(var/i = 0, i < 8, i++)
|
||||
new /obj/item/reagent_containers/food/snacks/meat/monkey(src)
|
||||
new /obj/item/reagent_containers/food/snacks/meat(src)
|
||||
|
||||
// this is enough meat to do 10 grill batches
|
||||
/obj/structure/closet/secure_closet/freezer/meat/super_meat/fill()
|
||||
/obj/structure/closet/secure_closet/freezer/meat/super_meat/fill() // This is enough meat to do 10 grill batches.
|
||||
for(var/i = 0, i < 30, i++)
|
||||
new /obj/item/reagent_containers/food/snacks/meat(src)
|
||||
var/obj/item/reagent_containers/food/condiment/shaker/spacespice/SS = new(src)
|
||||
@@ -38,8 +30,22 @@
|
||||
P.pixel_x = 6
|
||||
P.pixel_y = 8
|
||||
|
||||
// Chicken and Fish Freezer
|
||||
/obj/structure/closet/secure_closet/freezer/chicken_and_fish
|
||||
name = "chicken and fish freezer"
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/chicken_and_fish/fill()
|
||||
..()
|
||||
// 6 Chicken Fillets
|
||||
for(var/i = 0, i < 6, i++)
|
||||
new /obj/item/reagent_containers/food/snacks/meat/chicken(src)
|
||||
// 6 Fish Fillets
|
||||
for(var/i = 0, i < 6, i++)
|
||||
new /obj/item/reagent_containers/food/snacks/fish/fishfillet(src)
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/fridge
|
||||
name = "refrigerator"
|
||||
desc = "A refrigerator."
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/fridge/fill()
|
||||
..()
|
||||
@@ -50,6 +56,19 @@
|
||||
for(var/i = 0, i < 2, i++)
|
||||
new /obj/item/storage/box/fancy/egg_box(src)
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/kitchen
|
||||
name = "kitchen cabinet"
|
||||
desc = "A cabinet."
|
||||
req_access = list(access_kitchen)
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/kitchen/fill()
|
||||
for(var/i = 0, i < 2, i++)
|
||||
new /obj/item/reagent_containers/food/condiment/flour(src)
|
||||
new /obj/item/reagent_containers/food/condiment/sugar(src)
|
||||
new /obj/item/reagent_containers/food/condiment/shaker/spacespice(src)
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/kitchen/mining
|
||||
req_access = list()
|
||||
|
||||
/obj/structure/closet/secure_closet/freezer/money
|
||||
name = "freezer"
|
||||
@@ -62,4 +81,4 @@
|
||||
new /obj/random/spacecash(src)
|
||||
|
||||
for(var/i = 0, i < rand(6,9), i++)
|
||||
new /obj/random/coin(src)
|
||||
new /obj/random/coin(src)
|
||||
@@ -198,10 +198,10 @@
|
||||
desc = "How could you do this? You monster!"
|
||||
|
||||
/mob/living/simple_animal/chicken
|
||||
name = "\improper chicken"
|
||||
name = "chicken"
|
||||
desc = "Hopefully the eggs are good this season."
|
||||
icon = 'icons/mob/npc/livestock.dmi'
|
||||
icon_state = null
|
||||
icon_state = "chicken_white" // Overridden in Initialize(). This is for map visibility.
|
||||
icon_living = null
|
||||
icon_dead = null
|
||||
speak = list("Cluck!","BWAAAAARK BWAK BWAK BWAK!","Bwaak bwak.")
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: SleepyGemmy
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- maptweak: "Fixed some mapping oversights in the service area."
|
||||
@@ -2049,12 +2049,11 @@
|
||||
/area/maintenance/hangar/port)
|
||||
"bCN" = (
|
||||
/obj/machinery/vending/hydronutrients,
|
||||
/obj/effect/floor_decal/spline/plain,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/machinery/light/small{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"bCU" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -4355,7 +4354,6 @@
|
||||
"dtb" = (
|
||||
/obj/structure/flora/ausbushes/sparsegrass,
|
||||
/obj/structure/flora/ausbushes/ywflowers,
|
||||
/mob/living/simple_animal/chicken,
|
||||
/turf/simulated/floor/grass/alt,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"dtN" = (
|
||||
@@ -4841,6 +4839,7 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 4
|
||||
},
|
||||
/mob/living/simple_animal/chicken,
|
||||
/turf/simulated/floor/grass/alt,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"dNa" = (
|
||||
@@ -5571,7 +5570,7 @@
|
||||
/obj/machinery/door/airlock/maintenance{
|
||||
req_access = list(12)
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/turf/simulated/floor/tiled/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"etT" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -7155,15 +7154,12 @@
|
||||
"fyR" = (
|
||||
/obj/structure/closet/secure_closet/hydroponics,
|
||||
/obj/item/watertank,
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/machinery/alarm{
|
||||
dir = 4;
|
||||
pixel_x = -28
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"fzA" = (
|
||||
/obj/structure/sign/nosmoking_1{
|
||||
@@ -10727,13 +10723,10 @@
|
||||
pixel_y = 7
|
||||
},
|
||||
/obj/item/reagent_containers/glass/bucket,
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 6
|
||||
},
|
||||
/obj/machinery/light/small{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"ifw" = (
|
||||
/obj/machinery/door/airlock/external{
|
||||
@@ -10962,7 +10955,7 @@
|
||||
"iqk" = (
|
||||
/obj/machinery/portable_atmospherics/hydroponics,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"irA" = (
|
||||
/obj/machinery/atmospherics/binary/pump{
|
||||
@@ -17704,7 +17697,10 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 8
|
||||
},
|
||||
/obj/item/bikehorn/rubberducky,
|
||||
/obj/item/bikehorn/rubberducky{
|
||||
pixel_x = -9;
|
||||
pixel_y = -8
|
||||
},
|
||||
/turf/simulated/floor/exoplanet/water/shallow,
|
||||
/area/horizon/stairwell/bridge)
|
||||
"nLL" = (
|
||||
@@ -17812,9 +17808,8 @@
|
||||
/area/outpost/mining_main/refinery)
|
||||
"nOi" = (
|
||||
/obj/machinery/seed_storage/garden,
|
||||
/obj/effect/floor_decal/spline/plain,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"nOM" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -22356,10 +22351,7 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"rtC" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -23358,12 +23350,11 @@
|
||||
"snA" = (
|
||||
/obj/structure/reagent_dispensers/watertank,
|
||||
/obj/item/reagent_containers/glass/bucket,
|
||||
/obj/effect/floor_decal/spline/plain,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/machinery/light/small{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"snD" = (
|
||||
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
|
||||
@@ -23418,13 +23409,16 @@
|
||||
/turf/simulated/floor/tiled/full,
|
||||
/area/horizon/stairwell/central)
|
||||
"spL" = (
|
||||
/obj/effect/floor_decal/spline/plain,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/obj/effect/floor_decal/corner/green/diagonal,
|
||||
/obj/effect/floor_decal/spline/plain/cee{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"spQ" = (
|
||||
/obj/structure/bed/stool/chair/shuttle{
|
||||
@@ -28053,9 +28047,6 @@
|
||||
/obj/effect/floor_decal/corner/green{
|
||||
dir = 5
|
||||
},
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/floor_decal/spline/plain/corner{
|
||||
dir = 8
|
||||
},
|
||||
@@ -28068,6 +28059,12 @@
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/obj/effect/floor_decal/spline/plain/corner{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/floor_decal/spline/plain/corner{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"vSS" = (
|
||||
@@ -30351,23 +30348,17 @@
|
||||
"xyG" = (
|
||||
/obj/structure/closet/secure_closet/hydroponics,
|
||||
/obj/item/watertank,
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/machinery/camera/network/service{
|
||||
c_tag = "Service- Hydroponics Lower";
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"xzd" = (
|
||||
/obj/structure/table/stone/marble,
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/firealarm/west,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/hydroponics/lower)
|
||||
"xAf" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
@@ -54870,7 +54861,7 @@ snA
|
||||
pdL
|
||||
vLJ
|
||||
acw
|
||||
mdL
|
||||
nRy
|
||||
olu
|
||||
fKB
|
||||
bpl
|
||||
|
||||
+1051
-1310
File diff suppressed because it is too large
Load Diff
@@ -4051,12 +4051,11 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/horizon/hallway/deck_three/primary/central)
|
||||
"dAz" = (
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 1
|
||||
/obj/effect/floor_decal/industrial/warning/corner{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning,
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
/area/template_noop)
|
||||
/area/horizon/exterior)
|
||||
"dAI" = (
|
||||
/obj/effect/floor_decal/corner/blue{
|
||||
dir = 10
|
||||
@@ -5273,10 +5272,11 @@
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/bridge/selfdestruct)
|
||||
"ewP" = (
|
||||
/obj/structure/lattice/catwalk,
|
||||
/obj/structure/railing/mapped,
|
||||
/turf/simulated/open/airless,
|
||||
/area/template_noop)
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 6
|
||||
},
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
/area/horizon/exterior)
|
||||
"eyi" = (
|
||||
/obj/structure/lattice/catwalk,
|
||||
/obj/structure/railing/mapped{
|
||||
@@ -14955,12 +14955,11 @@
|
||||
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
|
||||
/area/medical/smoking)
|
||||
"lUf" = (
|
||||
/obj/effect/floor_decal/industrial/warning/corner{
|
||||
dir = 4
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 10
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning,
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
/area/template_noop)
|
||||
/area/horizon/exterior)
|
||||
"lUB" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "4-8"
|
||||
@@ -19452,12 +19451,13 @@
|
||||
/turf/simulated/floor/wood,
|
||||
/area/horizon/hallway/deck_three/primary/central)
|
||||
"pwa" = (
|
||||
/obj/effect/floor_decal/industrial/warning/corner{
|
||||
dir = 1
|
||||
/obj/structure/lattice/catwalk,
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning,
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
/area/template_noop)
|
||||
/obj/structure/railing/mapped,
|
||||
/turf/simulated/open/airless,
|
||||
/area/horizon/exterior)
|
||||
"pwO" = (
|
||||
/obj/effect/floor_decal/corner/blue{
|
||||
dir = 9
|
||||
@@ -47200,10 +47200,10 @@ vaL
|
||||
vaL
|
||||
vaL
|
||||
uPJ
|
||||
wGH
|
||||
vkb
|
||||
iqb
|
||||
gVY
|
||||
cPq
|
||||
mKC
|
||||
mUv
|
||||
pwa
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -47402,20 +47402,20 @@ vaL
|
||||
qHx
|
||||
aoA
|
||||
ivg
|
||||
wGH
|
||||
vkb
|
||||
vtk
|
||||
ewP
|
||||
cPq
|
||||
mKC
|
||||
uLZ
|
||||
wfb
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
hBa
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
opC
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
@@ -47604,24 +47604,24 @@ aoA
|
||||
aoA
|
||||
aoA
|
||||
aoA
|
||||
wGH
|
||||
vBY
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
tJH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
vBY
|
||||
otI
|
||||
otI
|
||||
otI
|
||||
opC
|
||||
cPq
|
||||
dAz
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
mjb
|
||||
lUf
|
||||
slH
|
||||
slH
|
||||
dSF
|
||||
@@ -47806,25 +47806,25 @@ vaL
|
||||
aoA
|
||||
aoA
|
||||
ivg
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
vBY
|
||||
opC
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
dAz
|
||||
lUf
|
||||
slH
|
||||
slH
|
||||
dSF
|
||||
@@ -48025,9 +48025,9 @@ giI
|
||||
rnu
|
||||
iWr
|
||||
bqA
|
||||
wGH
|
||||
vBY
|
||||
opC
|
||||
cPq
|
||||
dAz
|
||||
lUf
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
@@ -48228,8 +48228,8 @@ jqi
|
||||
hzB
|
||||
fgF
|
||||
bqA
|
||||
wGH
|
||||
vkb
|
||||
cPq
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
@@ -48431,7 +48431,7 @@ jRy
|
||||
rFu
|
||||
grm
|
||||
bqA
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
@@ -48633,8 +48633,8 @@ ljj
|
||||
oir
|
||||
fkC
|
||||
mIs
|
||||
vBY
|
||||
opC
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -48835,8 +48835,8 @@ kQW
|
||||
rvO
|
||||
aXB
|
||||
qlf
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -49037,8 +49037,8 @@ nxm
|
||||
nSO
|
||||
fvX
|
||||
sqN
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -49239,8 +49239,8 @@ fec
|
||||
rGK
|
||||
vbh
|
||||
aZS
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -49441,8 +49441,8 @@ soE
|
||||
jKp
|
||||
soE
|
||||
qBS
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -49643,8 +49643,8 @@ wFM
|
||||
kAR
|
||||
cAY
|
||||
hrR
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -49845,7 +49845,7 @@ sWA
|
||||
naZ
|
||||
omA
|
||||
sdp
|
||||
leE
|
||||
dAz
|
||||
lUf
|
||||
dSF
|
||||
dSF
|
||||
@@ -50048,7 +50048,7 @@ ltT
|
||||
lFK
|
||||
mrU
|
||||
kBl
|
||||
dAz
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -50250,7 +50250,7 @@ xEZ
|
||||
jxM
|
||||
iwi
|
||||
jIF
|
||||
pwa
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -50452,7 +50452,7 @@ tKU
|
||||
lIB
|
||||
amy
|
||||
mrU
|
||||
vkb
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -50654,7 +50654,7 @@ eFH
|
||||
vaz
|
||||
dhn
|
||||
mrU
|
||||
vkb
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -50856,7 +50856,7 @@ uNc
|
||||
oWy
|
||||
xhy
|
||||
rmQ
|
||||
vkb
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -51058,7 +51058,7 @@ eFH
|
||||
oWy
|
||||
suj
|
||||
mrU
|
||||
vkb
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -51260,7 +51260,7 @@ hfm
|
||||
fis
|
||||
grs
|
||||
mrU
|
||||
vkb
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -51462,7 +51462,7 @@ ltT
|
||||
phw
|
||||
uCJ
|
||||
dFe
|
||||
vkb
|
||||
mKC
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -51663,8 +51663,8 @@ hmu
|
||||
xEZ
|
||||
auq
|
||||
mrU
|
||||
wGH
|
||||
vkb
|
||||
nbl
|
||||
ewP
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -51865,8 +51865,8 @@ hhA
|
||||
rqU
|
||||
ltH
|
||||
mrU
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -52067,8 +52067,8 @@ rxJ
|
||||
xPq
|
||||
iii
|
||||
dFe
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -52269,8 +52269,8 @@ asO
|
||||
asO
|
||||
asO
|
||||
hrR
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -52471,8 +52471,8 @@ eeU
|
||||
dpE
|
||||
xPj
|
||||
sHE
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -52673,8 +52673,8 @@ uIm
|
||||
uIm
|
||||
gjT
|
||||
sHE
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -52875,8 +52875,8 @@ kkw
|
||||
cBE
|
||||
edo
|
||||
bNm
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -53077,8 +53077,8 @@ qrQ
|
||||
qrQ
|
||||
pNE
|
||||
sHE
|
||||
wGH
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -53279,8 +53279,8 @@ vZO
|
||||
vZO
|
||||
rKd
|
||||
sHE
|
||||
bEW
|
||||
kMe
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -53481,7 +53481,7 @@ vZO
|
||||
vZO
|
||||
eri
|
||||
qsz
|
||||
vkb
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
@@ -53682,8 +53682,8 @@ fbz
|
||||
ujs
|
||||
eri
|
||||
qsz
|
||||
wGH
|
||||
vkb
|
||||
cPq
|
||||
mKC
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
@@ -53883,9 +53883,9 @@ waX
|
||||
waX
|
||||
waX
|
||||
qsz
|
||||
wGH
|
||||
bEW
|
||||
kMe
|
||||
cPq
|
||||
nbl
|
||||
ewP
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
@@ -54080,15 +54080,15 @@ sGh
|
||||
drY
|
||||
drY
|
||||
cPq
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
vkb
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
ewP
|
||||
slH
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -54282,14 +54282,14 @@ cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
wGH
|
||||
wGH
|
||||
wGH
|
||||
bEW
|
||||
leE
|
||||
leE
|
||||
kMe
|
||||
dSF
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
cPq
|
||||
ewP
|
||||
slH
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
@@ -54484,10 +54484,11 @@ fJy
|
||||
fJy
|
||||
fJy
|
||||
fJy
|
||||
leE
|
||||
leE
|
||||
leE
|
||||
kMe
|
||||
fJy
|
||||
fJy
|
||||
fJy
|
||||
fJy
|
||||
ewP
|
||||
slH
|
||||
slH
|
||||
dSF
|
||||
@@ -54545,7 +54546,6 @@ dSF
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
"}
|
||||
(119,1,1) = {"
|
||||
dSF
|
||||
@@ -54691,7 +54691,7 @@ slH
|
||||
slH
|
||||
slH
|
||||
slH
|
||||
dSF
|
||||
slH
|
||||
dSF
|
||||
dSF
|
||||
dSF
|
||||
|
||||
Reference in New Issue
Block a user