From f763d05f599d8c98ac9a62ce1e9412699c7d447b Mon Sep 17 00:00:00 2001 From: Razgriz Date: Sun, 7 Apr 2019 20:14:00 -0700 Subject: [PATCH] Increased Solargrub evolution time Changed required evolution charge from 16000 to 32000. Changed evolution probability from 2% to 1%. Originally it would take about maybe 7 minutes for a grub to evolve. Should take more than double that now. --- code/modules/mob/living/simple_animal/vore/solargrub.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/vore/solargrub.dm b/code/modules/mob/living/simple_animal/vore/solargrub.dm index 17736167ed..2e5052dc14 100644 --- a/code/modules/mob/living/simple_animal/vore/solargrub.dm +++ b/code/modules/mob/living/simple_animal/vore/solargrub.dm @@ -99,7 +99,7 @@ List of things solar grubs should be able to do: PN = null - if(prob(2) && charge >= 16000 && can_evolve == 1 && moth_amount.len <= 2) //it's reading from the moth_amount global list to determine if it can evolve. + if(prob(1) && charge >= 32000 && can_evolve == 1 && moth_amount.len <= 2) //it's reading from the moth_amount global list to determine if it can evolve. anchored = 0 PN = attached.powernet release_vore_contents()