From f65b6335006d05420fbfcea8b8580eb9bb19d04e Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Mon, 14 Feb 2022 13:29:01 +0000 Subject: [PATCH] heavy-duty engi gloves added temp protection --- code/modules/clothing/gloves/miscellaneous_vr.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/gloves/miscellaneous_vr.dm b/code/modules/clothing/gloves/miscellaneous_vr.dm index 1035fd34758..4d83bbae5a5 100644 --- a/code/modules/clothing/gloves/miscellaneous_vr.dm +++ b/code/modules/clothing/gloves/miscellaneous_vr.dm @@ -50,10 +50,16 @@ item_state = "heavy_engi" siemens_coefficient = 0 permeability_coefficient = 0.05 + flags = THICKMATERIAL armor = list(melee = 10, bullet = 10, laser = 10, energy = 5, bomb = 0, bio = 30, rad = 30) icon = 'icons/inventory/hands/item_vr.dmi' default_worn_icon = 'icons/inventory/hands/mob_vr.dmi' sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/hands/mob_vr_teshari.dmi', SPECIES_VOX = 'icons/inventory/hands/mob_vr_vox.dmi', - SPECIES_WEREBEAST = 'icons/inventory/hands/mob_vr_werebeast.dmi') \ No newline at end of file + SPECIES_WEREBEAST = 'icons/inventory/hands/mob_vr_werebeast.dmi') + + cold_protection = HANDS + min_cold_protection_temperature = GLOVES_MIN_COLD_PROTECTION_TEMPERATURE + heat_protection = HANDS + max_heat_protection_temperature = GLOVES_MAX_HEAT_PROTECTION_TEMPERATURE \ No newline at end of file