From b577767df5e5210e71c60f93f0ffebaed257f472 Mon Sep 17 00:00:00 2001 From: r4d6 Date: Wed, 21 Oct 2020 12:15:33 -0400 Subject: [PATCH] Make Cold-Adapted & Heat-Adapted unable to be taken by synths. --- .../carbon/human/species/station/traits_vr/positive.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm index 49e0e2cf3e..d4e4b11d5c 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm @@ -159,13 +159,13 @@ desc = "You've drunk so much that most booze doesn't even faze you. It takes something like a Pan-Galactic or a pint of Deathbell for you to even get slightly buzzed. You may wish to note this down in your medical records." cost = 2 var_changes = list("alcohol_mod" = 0.25) - + /datum/trait/pain_tolerance_basic name = "Pain Tolerant" desc = "You're a little more resistant to pain than most, and experience 10% less pain from from all sources." cost = 1 var_changes = list("pain_mod" = 0.9) - + /datum/trait/pain_tolerance_advanced name = "High Pain Tolerance" desc = "You are noticeably more resistant to pain than most, and experience 20% less pain from all sources." @@ -247,13 +247,15 @@ cost = 2 var_changes = list("cold_level_1" = 200, "cold_level_2" = 150, "cold_level_3" = 90, "breath_cold_level_1" = 180, "breath_cold_level_2" = 100, "breath_cold_level_3" = 60, "cold_discomfort_level" = 210, "heat_level_1" = 305, "heat_level_2" = 360, "heat_level_3" = 700, "breath_heat_level_1" = 345, "breath_heat_level_2" = 380, "breath_heat_level_3" = 780, "heat_discomfort_level" = 295) excludes = list(/datum/trait/hotadapt) - + not_for_synths = 1 + /datum/trait/hotadapt name = "Heat-Adapted" desc = "You are able to withstand much hotter temperatures than other species, and can even be comfortable in extremely hot environments. You are also more vulnerable to cold environments as a consequence of these adaptations." cost = 2 var_changes = list("heat_level_1" = 420, "heat_level_2" = 460, "heat_level_3" = 1100, "breath_heat_level_1" = 440, "breath_heat_level_2" = 510, "breath_heat_level_3" = 1500, "heat_discomfort_level" = 390, "cold_level_1" = 280, "cold_level_2" = 220, "cold_level_3" = 140, "breath_cold_level_1" = 260, "breath_cold_level_2" = 240, "breath_cold_level_3" = 120, "cold_discomfort_level" = 280) excludes = list(/datum/trait/coldadapt) + not_for_synths = 1 // YW Addition end /datum/trait/snowwalker