From dff31c1b23a54858bcfacd8ad5583d449cf6dfab Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 26 Apr 2023 13:59:08 +0100 Subject: [PATCH] [MIRROR] Fire Proof Goliath Cloak [MDB IGNORE] (#20786) * Fire Proof Goliath Cloak * fixes --------- Co-authored-by: Dawnseer <126404225+Dawnseer@users.noreply.github.com> Co-authored-by: ghost sheep --- code/game/objects/items/stacks/sheets/leather.dm | 1 + code/modules/mining/equipment/explorer_gear.dm | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/code/game/objects/items/stacks/sheets/leather.dm b/code/game/objects/items/stacks/sheets/leather.dm index c8f7ce2397c..11f1cea26a2 100644 --- a/code/game/objects/items/stacks/sheets/leather.dm +++ b/code/game/objects/items/stacks/sheets/leather.dm @@ -255,6 +255,7 @@ GLOBAL_LIST_INIT(sinew_recipes, list ( \ max_amount = 6 novariants = FALSE item_flags = NOBLUDGEON + resistance_flags = FIRE_PROOF w_class = WEIGHT_CLASS_NORMAL layer = MOB_LAYER merge_type = /obj/item/stack/sheet/animalhide/goliath_hide diff --git a/code/modules/mining/equipment/explorer_gear.dm b/code/modules/mining/equipment/explorer_gear.dm index f3f4d1a84c1..ec3c10cdcef 100644 --- a/code/modules/mining/equipment/explorer_gear.dm +++ b/code/modules/mining/equipment/explorer_gear.dm @@ -126,12 +126,14 @@ /obj/item/spear, /obj/item/tank/internals, ) + resistance_flags = FIRE_PROOF armor_type = /datum/armor/cloak_goliath hoodtype = /obj/item/clothing/head/hooded/cloakhood/goliath body_parts_covered = CHEST|GROIN|ARMS //SKYRAT ADDITION START -GOLIATH CLOAK EDIT cold_protection = CHEST|GROIN|ARMS min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT + //SKYRAT ADDITION END /obj/item/clothing/suit/hooded/cloak/goliath/AltClick(mob/user) . = ..() @@ -171,6 +173,8 @@ clothing_flags = SNUG_FIT flags_inv = HIDEEARS|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR transparent_protection = HIDEMASK + resistance_flags = FIRE_PROOF + //SKYRAT ADDITION START -GOLIATH CLOAK EDIT cold_protection = CHEST|GROIN|ARMS min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT //SKYRAT ADDITION END