Files
2022-12-07 11:54:19 +01:00

22 lines
552 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."
idle_power_usage = 450
power_rating = 45000 //45000 W ~ 60 HP
/obj/machinery/atmospherics/binary/pump/high_power/on
use_power = POWER_USE_IDLE
icon_state = "map_on"
/obj/machinery/atmospherics/binary/pump/high_power/update_icon()
if(!powered())
icon_state = "off"
else
icon_state = "[use_power ? "on" : "off"]"