From 4d795b8fb47614f550fc77eba2ac15b56af226a3 Mon Sep 17 00:00:00 2001 From: ATH1909 <42606352+ATH1909@users.noreply.github.com> Date: Thu, 3 Oct 2019 04:19:33 -0500 Subject: [PATCH] Update genetics.dm (#46748) --- code/datums/diseases/advance/symptoms/genetics.dm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/genetics.dm b/code/datums/diseases/advance/symptoms/genetics.dm index 6c403351726..b9e2fa4364f 100644 --- a/code/datums/diseases/advance/symptoms/genetics.dm +++ b/code/datums/diseases/advance/symptoms/genetics.dm @@ -16,7 +16,7 @@ Bonus */ /datum/symptom/genetic_mutation - name = "Viral DNA Activator" + name = "Dormant DNA Activator" desc = "The virus bonds with the DNA of the host, activating random dormant mutations within their DNA. When the virus is cured, the host's genetic alterations are undone." stealth = -2 resistance = -3 @@ -25,8 +25,8 @@ Bonus level = 6 severity = 4 base_message_chance = 50 - symptom_delay_min = 60 - symptom_delay_max = 100 + symptom_delay_min = 30 + symptom_delay_max = 60 var/excludemuts = NONE var/no_reset = FALSE var/mutadone_proof = NONE @@ -40,8 +40,9 @@ Bonus return if(A.properties["stealth"] >= 5) //only give them bad mutations excludemuts = POSITIVE - if(A.properties["stage_rate"] >= 10) //activate dormant mutations more often at around twice the pace - symptom_delay_max = 60 + if(A.properties["stage_rate"] >= 10) //activate dormant mutations more often at around 1.5x the pace + symptom_delay_min = 20 + symptom_delay_max = 40 if(A.properties["resistance"] >= 8) //mutadone won't save you now mutadone_proof = (NEGATIVE | MINOR_NEGATIVE) if(A.properties["resistance"] >= 14) //one does not simply escape Nurgle's grasp