From 4dd9b3f0d50c8ea48388c6cc0a67fe8ab64020ae Mon Sep 17 00:00:00 2001 From: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Date: Sun, 23 Nov 2025 03:03:57 +0000 Subject: [PATCH] Allows inflatable barriers to be printed. (#30970) * Update autolathe_designs.dm * Update code/modules/research/designs/autolathe_designs.dm Co-authored-by: JimKil3 <47290811+JimKil3@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * commit inflation --------- Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Co-authored-by: Fordoxia <143041327+Fordoxia@users.noreply.github.com> Co-authored-by: JimKil3 <47290811+JimKil3@users.noreply.github.com> --- code/game/objects/structures/inflatable.dm | 1 + code/modules/research/designs/autolathe_designs.dm | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/code/game/objects/structures/inflatable.dm b/code/game/objects/structures/inflatable.dm index 78b04ded2f4..79c76551360 100644 --- a/code/game/objects/structures/inflatable.dm +++ b/code/game/objects/structures/inflatable.dm @@ -240,6 +240,7 @@ inhand_icon_state = "syringe_kit" w_class = WEIGHT_CLASS_NORMAL can_hold = list(/obj/item/inflatable) + materials = list(MAT_METAL = 2000, MAT_GLASS = 500) /obj/item/storage/briefcase/inflatable/populate_contents() new /obj/item/inflatable/door(src) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 39daac1ad89..ea305780bc8 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -793,6 +793,14 @@ build_path = /obj/item/weldingtool/largetank/empty category = list("initial", "Tools") +/datum/design/inflatable_briefcase + name = "Inflatable Barrier Box" + id = "inflatable_briefcase" + build_type = AUTOLATHE + materials = list(MAT_METAL = 5000, MAT_GLASS = 1000) + build_path = /obj/item/storage/briefcase/inflatable + category = list("initial", "Construction") + /datum/design/rcd name = "Rapid Construction Device (RCD)" id = "rcd"