From 883bcb7c3a33157b2605205c8b5b6386a75a9123 Mon Sep 17 00:00:00 2001 From: AlManiak Date: Sun, 10 Nov 2024 18:16:27 +0100 Subject: [PATCH] Added CE gloves --- GainStation13/code/clothing/gloves.dm | 15 +++++++++++++++ GainStation13/icons/obj/clothing/gloves.dmi | Bin 0 -> 401 bytes .../crates_lockers/closets/secure/engineering.dm | 2 +- tgstation.dme | 1 + 4 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 GainStation13/code/clothing/gloves.dm create mode 100644 GainStation13/icons/obj/clothing/gloves.dmi diff --git a/GainStation13/code/clothing/gloves.dm b/GainStation13/code/clothing/gloves.dm new file mode 100644 index 0000000000..23b760d049 --- /dev/null +++ b/GainStation13/code/clothing/gloves.dm @@ -0,0 +1,15 @@ +// GS13 - Port CE Gloves +/obj/item/clothing/gloves/color/yellow/ce //funky looking, basically combat gloves + desc = "Special Insulated gloves with pricy thermal shielding normally only found in combat gloves." + name = "Chief Engineer Insulated Gloves" + icon = 'GainStation13/icons/obj/clothing/gloves.dmi' + icon_state = "ce_insuls" + item_state = "blackgloves" + siemens_coefficient = 0 + permeability_coefficient = 0.05 + strip_delay = 80 + cold_protection = HANDS + min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT + heat_protection = HANDS + max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT + resistance_flags = NONE diff --git a/GainStation13/icons/obj/clothing/gloves.dmi b/GainStation13/icons/obj/clothing/gloves.dmi new file mode 100644 index 0000000000000000000000000000000000000000..300dbd4da6df22150619f96109c70d0293e3659a GIT binary patch literal 401 zcmV;C0dD?@P)fFDZ*Bkpc$`yKaB_9`^iy#0_2eo`Eh^5;&r`5fFwryM;w;ZhDainGjE%TB zGg33tGfE(w;*!LYR3K9+IW;~rueda)Sc!`>C9|j)C}zmTnO2mTn+jnoE4cc(fQ<$K zy~P{Qg|W(?0001}Nkl^YaM|QV-k9S_y(1FfvTK=bPEefFVLtX zOIvP>2_Sla4p<)E`{X~FvA+)}R)z!PMy-Ifg|s#Ns#~MXsj*)IrmU>24chk@PO3G# z22ouyxJksa+7mvEp1fGDq|cyHjd3Q>r$wR$0s0u{L?HI*uEC25hIz;>u6NLR@$j*W v8KfzZ69Z+)TY~d~l1%s<_L6?{XKfu%!!aemgB8e;00000NkvXXu0mjfhM}f% literal 0 HcmV?d00001 diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm index 289599efb9..f0e7784496 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm @@ -11,7 +11,7 @@ new /obj/item/clothing/under/rank/engineering/chief_engineer/skirt(src) new /obj/item/clothing/head/hardhat/white(src) new /obj/item/clothing/head/hardhat/weldhat/white(src) - new /obj/item/clothing/gloves/color/yellow(src) + new /obj/item/clothing/gloves/color/yellow/ce(src) new /obj/item/tank/jetpack/suit(src) new /obj/item/cartridge/ce(src) new /obj/item/radio/headset/heads/ce(src) diff --git a/tgstation.dme b/tgstation.dme index dfc174ddc5..7ba4d39826 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3909,6 +3909,7 @@ #include "GainStation13\code\clothing\backpacks.dm" #include "GainStation13\code\clothing\calorite_collar.dm" #include "GainStation13\code\clothing\fat_mask.dm" +#include "GainStation13\code\clothing\gloves.dm" #include "GainStation13\code\clothing\haydee_suit.dm" #include "GainStation13\code\clothing\head.dm" #include "GainStation13\code\clothing\shoes.dm"