From 5e64352006df039121613a4ae98336e208e9671f Mon Sep 17 00:00:00 2001
From: DynaJ0ule <117537167+DynaJ0ule@users.noreply.github.com>
Date: Thu, 15 Dec 2022 15:44:54 -0500
Subject: [PATCH] lower treshold and add immunity
---
code/datums/diseases/advance/symptoms/weight.dm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/code/datums/diseases/advance/symptoms/weight.dm b/code/datums/diseases/advance/symptoms/weight.dm
index 03ea4e84..2479d2ab 100644
--- a/code/datums/diseases/advance/symptoms/weight.dm
+++ b/code/datums/diseases/advance/symptoms/weight.dm
@@ -70,7 +70,7 @@ Bonus
symptom_delay_max = 45
threshold_desc = list(
"Transmission 7" = "Increases the rate of cell replication.",
- "Transmission 14" = "Increases the rate of cell replication further"
+ "Transmission 12" = "Increases the rate of cell replication further"
)
@@ -78,16 +78,17 @@ Bonus
if(!..())
return
var/mob/living/M = A.affected_mob
+ if(HAS_TRAIT(M, TRAIT_LIPOIFIER_IMMUNE))
+ return
switch(A.stage)
if(1, 2, 3, 4)
if(prob(base_message_chance))
to_chat(M, "[pick("You feel oddly full...", "You feel more plush...", "You feel more huggable...", "You hear an odd gurgle from your stomach")]")
else
to_chat(M, "[pick("You feel your body churn...", "You feel heavier...", "You hear an ominous gurgle from your belly...", "You feel bulkier...")]")
- if(A.properties["transmittable"] >= 14) //get chunkier quicker
+ if(A.properties["transmittable"] >= 12) //get chunkier quicker
M.fatness = M.fatness + 70
else if(A.properties["transmittable"] >= 7)
M.fatness = M.fatness + 40
else
M.fatness = M.fatness + 15
-