From 9fff08f5681db85578e9dd37511bba8a05d12be8 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 30 Aug 2019 01:35:42 -0700 Subject: [PATCH 1/2] Piranha Plant Vore Fix --- .../mob/living/simple_animal/animals/tomato.dm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/tomato.dm b/code/modules/mob/living/simple_animal/animals/tomato.dm index dbbcc14d83..25266e9a38 100644 --- a/code/modules/mob/living/simple_animal/animals/tomato.dm +++ b/code/modules/mob/living/simple_animal/animals/tomato.dm @@ -172,9 +172,18 @@ var/obj/belly/B = vore_selected B.vore_verb = "chomp up" B.name = "stomach" - B.desc = "You're pulled into the tight stomach of the plant. The walls knead weakly around you, coating you in thick, viscous fluids that cling to your body, that soon starts to tingle and burn..." + B.desc = "You're pulled into the tight mouth of the plant. The teeth and walls gnash harshly on you!" B.digest_burn = 0 - B.digest_brute = 12 + B.digest_brute = 5 + +/mob/living/simple_animal/hostile/piranhaplant/spitter/init_vore() + ..() + var/obj/belly/B = vore_selected + B.vore_verb = "chomp up" + B.name = "stomach" + B.desc = "You're pulled into the tight stomach of the plant. The walls knead weakly around you, coating you in thick, viscous fluids that cling to your body, that soon starts to tingle and burn..." + B.digest_burn = 5 + B.digest_brute = 0 /mob/living/simple_animal/hostile/piranhaplant/pitcher icon_state = "pitcher-plant" From 7b0cfba715b6c2b7983598699a982ffc9dc487f0 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Fri, 30 Aug 2019 02:00:04 -0700 Subject: [PATCH 2/2] Add files via upload --- code/modules/mob/living/simple_animal/animals/tomato.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/tomato.dm b/code/modules/mob/living/simple_animal/animals/tomato.dm index 25266e9a38..6c1584d8aa 100644 --- a/code/modules/mob/living/simple_animal/animals/tomato.dm +++ b/code/modules/mob/living/simple_animal/animals/tomato.dm @@ -179,9 +179,8 @@ /mob/living/simple_animal/hostile/piranhaplant/spitter/init_vore() ..() var/obj/belly/B = vore_selected - B.vore_verb = "chomp up" - B.name = "stomach" - B.desc = "You're pulled into the tight stomach of the plant. The walls knead weakly around you, coating you in thick, viscous fluids that cling to your body, that soon starts to tingle and burn..." + B.vore_verb = "slurped up" + B.desc = "You're pulled into the tight mouth of the plant. The tongue mulls you about and squishes you around, coating you in a slurry of digestive fluides that burn hotly and smell foul." B.digest_burn = 5 B.digest_brute = 0 @@ -229,6 +228,7 @@ /mob/living/simple_animal/hostile/piranhaplant/pitcher/init_vore() ..() var/obj/belly/B = vore_selected + B.desc = "You're pulled into the tight stomach of the plant. The walls knead weakly around you, coating you in thick, viscous fluids that cling to your body, that soon starts to tingle and burn..." B.digest_burn = 0.5 B.digest_brute = 0 B.vore_verb = "slurp up"