From ff4ceaec5c45e7344b5133999e6a7992ccf760a5 Mon Sep 17 00:00:00 2001 From: Exavere Date: Wed, 22 Sep 2021 10:32:28 -0500 Subject: [PATCH] Adds Epinephrine to Gutlunch mobs --- .../mob/living/simple_animal/hostile/mining/gutlunch.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mining/gutlunch.dm b/code/modules/mob/living/simple_animal/hostile/mining/gutlunch.dm index c5c50177511..87e35f1157e 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining/gutlunch.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining/gutlunch.dm @@ -1,7 +1,7 @@ //Gutlunches, passive mods that devour blood and gibs /mob/living/simple_animal/hostile/asteroid/gutlunch name = "gutlunch" - desc = "A scavenger that eats raw meat, often found alongside ash walkers. Produces a thick, nutritious milk." + desc = "A scavenger that eats raw meat, often found alongside ash walkers. Produces a thick, medicinally nutritious milk." icon = 'icons/mob/lavaland/lavaland_monsters.dmi' icon_state = "gutlunch" icon_living = "gutlunch" @@ -104,7 +104,9 @@ if(prob(60)) reagents.add_reagent("cream", rand(2, 5)) if(prob(45)) - reagents.add_reagent("salglu_solution", rand(2,5)) + reagents.add_reagent("salglu_solution", rand(2, 5)) + if(prob(30)) + reagents.add_reagent("epinephrine", rand(2, 5)) //Male gutlunch. They're smaller and more colorful!