mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 20:17:15 +01:00
Woodrat 9.1 "Back in Action"
- Super APC installed in Atmos - Fixed APC, Mining Exterior APC - Fixed Crematorium button, Installed mass driver button. - Chapel hallway APC installed - Gateway plugged in, console installed - Elevator Console Installed, Bell Hop removed. - Hazard stripes should be fixed - Restored missing tiles (Hydro, Cafeteria Neutral, Asteroid exterior) (75% complete) - Kitchen button restored - Rec area bathroom lights restored - Meat is back on the menu, two fridges with meat in the kitchen - Unneeded wires in engineering maint removed. - Medical substation wires fixed. - Locker room maint APC installed - Chapel maint APC installed - Installed another light in robotics - APC central maint installed - Disposals pipe in engineering workshop fixed. - Wire in atmos substation fixed.
This commit is contained in:
@@ -13,13 +13,14 @@
|
||||
#define PIPE_COLOR_GREEN "#00ff00"
|
||||
#define PIPE_COLOR_YELLOW "#ffcc00"
|
||||
#define PIPE_COLOR_BLACK "#444444"
|
||||
#define PIPE_COLOR_PURPLE "#5c1ec0"
|
||||
|
||||
#define CONNECT_TYPE_REGULAR 1
|
||||
#define CONNECT_TYPE_SUPPLY 2
|
||||
#define CONNECT_TYPE_SCRUBBER 4
|
||||
#define CONNECT_TYPE_HE 8
|
||||
|
||||
var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_RED, "blue" = PIPE_COLOR_BLUE, "cyan" = PIPE_COLOR_CYAN, "green" = PIPE_COLOR_GREEN, "yellow" = PIPE_COLOR_YELLOW, "black" = PIPE_COLOR_BLACK)
|
||||
var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_RED, "blue" = PIPE_COLOR_BLUE, "cyan" = PIPE_COLOR_CYAN, "green" = PIPE_COLOR_GREEN, "yellow" = PIPE_COLOR_YELLOW, "black" = PIPE_COLOR_BLACK, "purple" = PIPE_COLOR_PURPLE)
|
||||
|
||||
/proc/pipe_color_lookup(var/color)
|
||||
for(var/C in pipe_colors)
|
||||
|
||||
@@ -357,6 +357,8 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/visible/blue
|
||||
color = PIPE_COLOR_BLUE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/simple/visible/purple
|
||||
color = PIPE_COLOR_PURPLE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden
|
||||
icon_state = "intact"
|
||||
@@ -399,6 +401,9 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/blue
|
||||
color = PIPE_COLOR_BLUE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/purple
|
||||
color = PIPE_COLOR_PURPLE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/simple/insulated
|
||||
icon = 'icons/obj/atmospherics/red_pipe.dmi'
|
||||
icon_state = "intact"
|
||||
@@ -625,6 +630,8 @@
|
||||
/obj/machinery/atmospherics/pipe/manifold/visible/blue
|
||||
color = PIPE_COLOR_BLUE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold/visible/purple
|
||||
color = PIPE_COLOR_PURPLE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold/hidden
|
||||
icon_state = "map"
|
||||
@@ -667,6 +674,9 @@
|
||||
/obj/machinery/atmospherics/pipe/manifold/hidden/blue
|
||||
color = PIPE_COLOR_BLUE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold/hidden/purple
|
||||
color = PIPE_COLOR_PURPLE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold4w
|
||||
icon = 'icons/atmos/manifold.dmi'
|
||||
icon_state = ""
|
||||
@@ -883,6 +893,9 @@
|
||||
/obj/machinery/atmospherics/pipe/manifold4w/visible/blue
|
||||
color = PIPE_COLOR_BLUE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold4w/visible/purple
|
||||
color = PIPE_COLOR_PURPLE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold4w/hidden
|
||||
icon_state = "map_4way"
|
||||
level = 1
|
||||
@@ -924,6 +937,9 @@
|
||||
/obj/machinery/atmospherics/pipe/manifold4w/hidden/blue
|
||||
color = PIPE_COLOR_BLUE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/manifold4w/hidden/purple
|
||||
color = PIPE_COLOR_PURPLE
|
||||
|
||||
/obj/machinery/atmospherics/pipe/cap
|
||||
name = "pipe endcap"
|
||||
desc = "An endcap for pipes"
|
||||
|
||||
Reference in New Issue
Block a user