This commit is contained in:
Pinta
2023-02-07 21:02:19 -05:00
parent bba71bcdf9
commit 8b3ee4ffe3
12 changed files with 75 additions and 32 deletions
@@ -51,12 +51,9 @@ Bonus
to_chat(M, "<span class='warning'><i>[pick("So hungry...", "You'd kill someone for a bite of food...", "Hunger cramps seize you...")]</i></span>")
M.overeatduration = max(M.overeatduration - 100, 0)
M.nutrition = max(M.nutrition - 100, 0)
M.fatness = M.fatness - 30
M.adjust_fatness(-30, FATTENING_TYPE_WEIGHT_LOSS)
/datum/symptom/weight_gain
name = "Weight Gain"
desc = "The virus mutates and merges itself with the host's adipocytes, allowing them to perform a form of mitosis and replicate on their own."
stealth = -3
@@ -87,8 +84,8 @@ Bonus
else
to_chat(M, "<span class='warning'><i>[pick("You feel your body churn...", "You feel heavier...", "You hear an ominous gurgle from your belly...", "You feel bulkier...")]</i></span>")
if(A.properties["transmittable"] >= 12) //get chunkier quicker
M.fatness = M.fatness + 70
M.adjust_fatness(70, FATTENING_TYPE_VIRUS)
else if(A.properties["transmittable"] >= 7)
M.fatness = M.fatness + 40
M.adjust_fatness(40, FATTENING_TYPE_VIRUS)
else
M.fatness = M.fatness + 15
M.adjust_fatness(15, FATTENING_TYPE_VIRUS)