From 7bcb2727ea74b3bb84c90b75524e7d8975495cca Mon Sep 17 00:00:00 2001 From: Swan Date: Sun, 15 Dec 2024 14:41:57 +0100 Subject: [PATCH] added lipoifium canister --- code/modules/atmospherics/machinery/portable/canister.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/atmospherics/machinery/portable/canister.dm b/code/modules/atmospherics/machinery/portable/canister.dm index 4432b497d0..18b07095bf 100644 --- a/code/modules/atmospherics/machinery/portable/canister.dm +++ b/code/modules/atmospherics/machinery/portable/canister.dm @@ -61,6 +61,7 @@ "miasma" = /obj/machinery/portable_atmospherics/canister/miasma, "methane" = /obj/machinery/portable_atmospherics/canister/methane, "methyl bromide" = /obj/machinery/portable_atmospherics/canister/methyl_bromide + "lipoifium" = /obj/machinery/portable_atmospherics/canister/lipoifium ) /obj/machinery/portable_atmospherics/canister/interact(mob/user) @@ -167,6 +168,12 @@ icon_state = "purplecyan" gas_type = GAS_METHYL_BROMIDE +/obj/machinery/portable_atmospherics/canister/lipoifium + name = "lipoifium canister" + desc = "Lipoifium. Inhaling causes quick buildup of adipose in one's body." + icon_state = "yellowblack" + gas_type = GAS_FAT + /obj/machinery/portable_atmospherics/canister/proc/get_time_left() if(timing) . = round(max(0, valve_timer - world.time) / 10, 1)