From fc5ff4d2a2dc1c551a62dee54f2edaa582c8616c Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 9 Feb 2021 12:24:51 +1000 Subject: [PATCH] Better names and descriptions for new scale traits. --- .../species/station/traits_vr/neutral.dm | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 8b248e4808f..696483d1d88 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -234,7 +234,7 @@ // Body shape traits /datum/trait/taller - name = "Taller" + name = "Tall" desc = "Your body is taller than average." cost = 0 custom_only = FALSE @@ -246,7 +246,7 @@ H.update_transform() /datum/trait/tall - name = "Tall" + name = "Slightly Tall" desc = "Your body is a bit taller than average." cost = 0 custom_only = FALSE @@ -258,7 +258,7 @@ H.update_transform() /datum/trait/short - name = "Short" + name = "Slightly Short" desc = "Your body is a bit shorter than average." cost = 0 custom_only = FALSE @@ -270,8 +270,8 @@ H.update_transform() /datum/trait/shorter - name = "Shorter" - desc = "You are shorter than average." + name = "Short" + desc = "Your body is shorter than average." cost = 0 custom_only = FALSE var_changes = list("icon_scale_y" = 0.915) @@ -281,21 +281,9 @@ ..(S,H) H.update_transform() -/datum/trait/fat - name = "Overweight" - desc = "You are heavier than average." - cost = 0 - custom_only = FALSE - var_changes = list("icon_scale_x" = 1.054) - excludes = list(/datum/trait/obese, /datum/trait/thin, /datum/trait/thinner) - -/datum/trait/fat/apply(var/datum/species/S,var/mob/living/carbon/human/H) - ..(S,H) - H.update_transform() - /datum/trait/obese - name = "Obese" - desc = "You are much heavier than average." + name = "Very Bulky" + desc = "Your body is much wider than average." cost = 0 custom_only = FALSE var_changes = list("icon_scale_x" = 1.095) @@ -305,9 +293,21 @@ ..(S,H) H.update_transform() +/datum/trait/fat + name = "Bulky" + desc = "Your body is wider than average." + cost = 0 + custom_only = FALSE + var_changes = list("icon_scale_x" = 1.054) + excludes = list(/datum/trait/obese, /datum/trait/thin, /datum/trait/thinner) + +/datum/trait/fat/apply(var/datum/species/S,var/mob/living/carbon/human/H) + ..(S,H) + H.update_transform() + /datum/trait/thin name = "Thin" - desc = "You are skinnier than average." + desc = "Your body is thinner than average." cost = 0 custom_only = FALSE var_changes = list("icon_scale_x" = 0.945) @@ -319,7 +319,7 @@ /datum/trait/thinner name = "Very Thin" - desc = "You are much skinnier than average." + desc = "Your body is much thinner than average." cost = 0 custom_only = FALSE var_changes = list("icon_scale_x" = 0.905)