From c00a6d38ceeabb3179e4a41f4546a8dcff9b53f8 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Tue, 10 May 2016 16:25:39 -0400 Subject: [PATCH] Makes things better --- .../mob/living/carbon/human/examine_vr.dm | 47 ++++++++++--------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine_vr.dm b/code/modules/mob/living/carbon/human/examine_vr.dm index ec04cd68525..d847a43f1ed 100644 --- a/code/modules/mob/living/carbon/human/examine_vr.dm +++ b/code/modules/mob/living/carbon/human/examine_vr.dm @@ -1,24 +1,25 @@ -/mob/living/carbon/human/examine/proc/examine_weight(mob/user) - var/message = null +/mob/living/carbon/human/examine/proc/examine_weight( ) + var/message = "" - if(weight < 75) - message = "\red [T.He] [T.is] terribly lithe and frail!\n" - else if(weight >= 75 && weight < 100) - message = "[T.He] has a very slender frame.\n" - else if(weight >= 100 && weight < 125) - message = "[T.He] has a lightweight, athletic build.\n" - else if(weight >= 125 && weight < 175) - message = "[T.He] has a healthy, average body.\n" - else if(weight >= 175 && weight < 225) - message = "[T.He] has a thick, heavy physique.\n" - else if(weight >= 225 && weight < 275) - message = "[T.He] has a plush, chubby figure.\n" - else if(weight >= 275 && weight < 325) - message = "[T.He] has an especially plump body with a round potbelly and large hips.\n" - else if(weight >= 325 && weight < 375) - message = "[T.He] has a very fat frame with a bulging potbelly, squishy rolls of pudge, very wide hips, and plump set of jiggling thighs.\n" - else if(weight >= 375 && weight < 475) - message = "\red [T.He] [T.is] incredibly obese. [T.his] massive potbelly sags over [T.his] waistline while [T.his] fat ass would probably require two chairs to sit down comfortably!\n" - else if(weight >= 475) - message = "\red [T.He] [T.is] so morbidly obese, you wonder how they can even stand, let alone waddle around the station. [T.He] can't get any fatter without being immobilized.\n" - return message \ No newline at end of file + switch(weight) + if(0 to 74) + message = "\red [T.He] [T.is] terribly lithe and frail!\n" + if(75 to 99) + message = "[T.He] has a very slender frame.\n" + if(100 to 124) + message = "[T.He] has a lightweight, athletic build.\n" + if(125 to 174) + message = "[T.He] has a healthy, average body.\n" + if(175 to 224) + message = "[T.He] has a thick, heavy physique.\n" + if(225 to 274) + message = "[T.He] has a plush, chubby figure.\n" + if(275 to 325) + message = "[T.He] has an especially plump body with a round potbelly and large hips.\n" + if(325 to 374) + message = "[T.He] has a very fat frame with a bulging potbelly, squishy rolls of pudge, very wide hips, and plump set of jiggling thighs.\n" + if(375 to 474) + message = "\red [T.He] [T.is] incredibly obese. [T.his] massive potbelly sags over [T.his] waistline while [T.his] fat ass would probably require two chairs to sit down comfortably!\n" + else + message = "\red [T.He] [T.is] so morbidly obese, you wonder how they can even stand, let alone waddle around the station. [T.He] can't get any fatter without being immobilized.\n" + return message \ No newline at end of file