From d6259d924d8d9db489e4332dfdff1fde9f460105 Mon Sep 17 00:00:00 2001 From: Mikhail Dzianishchyts Date: Wed, 1 Jan 2025 07:07:39 +0300 Subject: [PATCH] Add customized welding helmets to the loadout (#27528) * Add customized welding helmets to loadout * Add Roboticist to allowed roles * Remove fluff welding helmet --- .../client/preference/loadout/loadout_donor.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/modules/client/preference/loadout/loadout_donor.dm b/code/modules/client/preference/loadout/loadout_donor.dm index aad1a4f22b6..e584e1f622a 100644 --- a/code/modules/client/preference/loadout/loadout_donor.dm +++ b/code/modules/client/preference/loadout/loadout_donor.dm @@ -76,6 +76,20 @@ display_name = "Fur Cap" path = /obj/item/clothing/head/furcap +/datum/gear/donor/welding_blueflame + display_name = "Blue flame decal welding helmet" + path = /obj/item/clothing/head/welding/flamedecal/blue + allowed_roles = list("Chief Engineer", "Station Engineer", "Life Support Specialist", "Roboticist") + donator_tier = 2 + cost = 2 + +/datum/gear/donor/welding_white + display_name = "White decal welding helmet" + path = /obj/item/clothing/head/welding/white + allowed_roles = list("Chief Engineer", "Station Engineer", "Life Support Specialist", "Roboticist") + donator_tier = 2 + cost = 2 + /datum/gear/donor/fawkes display_name = "Guy Fawkes mask" path = /obj/item/clothing/mask/fawkes