From 05fd8ae6479ca0058441b458dc671f1202262d4e Mon Sep 17 00:00:00 2001 From: Razgriz Date: Tue, 19 Jan 2021 20:17:04 -0700 Subject: [PATCH] Change jellybrig escape chance From 10% to 2%. Good news it is 50% more likely to escape than to start digesting you. --- code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm b/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm index e638d67585..1da1a6ffef 100644 --- a/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm +++ b/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm @@ -34,7 +34,7 @@ GLOBAL_VAR_INIT(queen_amount, 0) //We only gonna want 1 queen in the world. vore_default_mode = DM_HOLD vore_digest_chance = 1 //Chance to switch to digest mode if resisted vore_absorb_chance = 0 - vore_escape_chance = 10 //Chance to escape if resisted. + vore_escape_chance = 2 //Chance to escape if resisted. /datum/ai_holder/simple_mob/jellybrig hostile = FALSE // The majority of simplemobs are hostile, jellybrig is nice.