mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
Conflicts: code/ATMOSPHERICS/components/binary_devices/pump.dm code/ATMOSPHERICS/components/binary_devices/volume_pump.dm code/ATMOSPHERICS/components/unary/vent_pump.dm code/ATMOSPHERICS/pipes.dm
19 lines
593 B
Plaintext
19 lines
593 B
Plaintext
/obj/machinery/atmospherics/binary/pump/high_power
|
|
icon = 'icons/atmos/volume_pump.dmi'
|
|
icon_state = "map_off"
|
|
level = 1
|
|
|
|
name = "high power gas pump"
|
|
desc = "A pump. Has double the power rating of the standard gas pump."
|
|
|
|
active_power_usage = 15000 //This also doubles as a measure of how powerful the pump is, in Watts. 15000 W ~ 20 HP
|
|
|
|
/obj/machinery/atmospherics/binary/pump/high_power/on
|
|
on = 1
|
|
icon_state = "map_on"
|
|
|
|
/obj/machinery/atmospherics/binary/pump/high_power/update_icon()
|
|
if(!powered())
|
|
icon_state = "off"
|
|
else
|
|
icon_state = "[on ? "on" : "off"]" |