From 1b44958eb0844009bacb8a82e4a414f11f777eae Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Mon, 18 Feb 2019 08:18:22 +0100 Subject: [PATCH] Laying the foundation for a Piranha Plant Mob. --- .../living/simple_animal/animals/tomato.dm | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/code/modules/mob/living/simple_animal/animals/tomato.dm b/code/modules/mob/living/simple_animal/animals/tomato.dm index 711922eeb0..cae7050c78 100644 --- a/code/modules/mob/living/simple_animal/animals/tomato.dm +++ b/code/modules/mob/living/simple_animal/animals/tomato.dm @@ -22,3 +22,37 @@ attacktext = list("mauled") meat_type = /obj/item/weapon/reagent_containers/food/snacks/tomatomeat + +//CHOMPEDIT PIRANHA PLANT. +//Yes I'm basing this shit on the tomato, sue me. -shark +/mob/living/simple_animal/hostile/tomato/piranha + //icon = overridefile to be made + //icon_state = "piranha" //to be made + //icon_living = "piranha" //to be made + //icon_dead = "piranha_dead" //to be made + name = "Piranha Plant" + desc = "It's a plant, that eats people!" + tt_desc = "Packun Flower" + maxHealth = 100 + health = 100 + harm_intent_damage = 1 + melee_damage_upper = 1 + melee_damage_lower = 1 + attacktext = list("chomped","bit","hompfed","crunched","cronched") + anchored =1 + meat_type = null + //Vore stuff + vore_active = 1 + vore_capacity = 1 + vore_pounce_chance = 80 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DIGEST + vore_digest_chance = 99 + vore_absorb_chance = 0 + vore_escape_chance = 5 + vore_icons = 0 //no vore icons + swallowTime = 10 SECONDS //CHOMPED + +//When I stop being lazy I'll give this its own file -Shark +//Chompeddit end