From 22baea35a43f2453cc08857af8e7acb96c3fa3e4 Mon Sep 17 00:00:00 2001 From: InsaneRed <47158596+InsaneRed@users.noreply.github.com> Date: Mon, 29 Jan 2024 13:02:53 +0300 Subject: [PATCH] Queen give_evo changes (#5505) # About the pull request changes the required_larva to 1 instead of 3 # Explain why it's good for the game with our pop we never have 3 burrowed larva, i still think it wont be able to get used even with the limit being one because of how our que system and etc works but atleast this should make it get used more compared to the 3 burrowed limit # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: balance: You now only need 1 burrowed larva to trade it for evolution as Queen instead of 3 burrowed larva. /:cl: Co-authored-by: InsaneRed --- .../mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm index cbbc6ae21013..1f37651b2c8e 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm @@ -313,7 +313,7 @@ if(!choice) return var/evo_points_per_larva = 250 - var/required_larva = 3 + var/required_larva = 1 var/mob/living/carbon/xenomorph/target_xeno for(var/mob/living/carbon/xenomorph/xeno in user_xeno.hive.totalXenos)