diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm index 704cd21199..ed66abb5aa 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm @@ -57,13 +57,13 @@ var_changes = list("burn_mod" = 1.30) /datum/trait/conductive - name = "Conductive (Minor)" + name = "Conductive" desc = "Increases your susceptibility to electric shocks by a small amount." cost = -1 var_changes = list("siemens_coefficient" = 1.15) -/datum/trait/conductiveplus - name = "Non-Conductive (Major)" +/datum/trait/conductive_plus + name = "Conductive (Plus)" desc = "Increases your susceptibility to electric shocks by a moderate amount." cost = -2 var_changes = list("siemens_coefficient" = 1.3) 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 e92f667867..984f886acb 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 @@ -33,13 +33,13 @@ H.setMaxHealth(S.total_health) /datum/trait/nonconductive - name = "Non-Conductive (Minor)" + name = "Non-Conductive" desc = "Decreases your susceptibility to electric shocks by a small amount." cost = 1 var_changes = list("siemens_coefficient" = 0.85) -/datum/trait/nonconductiveplus - name = "Non-Conductive (Major)" +/datum/trait/nonconductive_plus + name = "Non-Conductive (Plus)" desc = "Decreases your susceptibility to electric shocks by a moderate amount." cost = 2 var_changes = list("siemens_coefficient" = 0.7)