mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-02 13:34:49 +00:00
Adds in examine weight. WIP
This commit is contained in:
@@ -188,6 +188,8 @@
|
||||
else*/
|
||||
msg += "[T.He] [T.is] wearing \icon[wear_id] \a [wear_id].\n"
|
||||
|
||||
if(attempt_vr(src,"examine_weight",args)) return //VOREStation Code
|
||||
|
||||
//Jitters
|
||||
if(is_jittery)
|
||||
if(jitteriness >= 300)
|
||||
|
||||
22
code/modules/mob/living/carbon/human/examine_vr.dm
Normal file
22
code/modules/mob/living/carbon/human/examine_vr.dm
Normal file
@@ -0,0 +1,22 @@
|
||||
/mob/living/carbon/human/examine/proc/examine_weight(mob/user)
|
||||
|
||||
if(weight < 75)
|
||||
msg += "\red [T.He] [T.is] terribly lithe and frail!\n"
|
||||
else if(weight >= 75 && weight < 100)
|
||||
msg += "[T.He] has a very slender frame.\n"
|
||||
else if(weight >= 100 && weight < 125)
|
||||
msg += "[T.He] has a lightweight, athletic build.\n"
|
||||
else if(weight >= 125 && weight < 175)
|
||||
msg += "[T.He] has a healthy, average body.\n"
|
||||
else if(weight >= 175 && weight < 225)
|
||||
msg += "[T.He] has a thick, heavy physique.\n"
|
||||
else if(weight >= 225 && weight < 275)
|
||||
msg += "[T.He] has a plush, chubby figure.\n"
|
||||
else if(weight >= 275 && weight < 325)
|
||||
msg += "[T.He] has an especially plump body with a round potbelly and large hips.\n"
|
||||
else if(weight >= 325 && weight < 375)
|
||||
msg += "[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)
|
||||
msg += "\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)
|
||||
msg += "\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"
|
||||
Reference in New Issue
Block a user