From 9573acc2cac3186363ce93cd52af7af49d565465 Mon Sep 17 00:00:00 2001 From: zeskorion <49600480+zeskorion@users.noreply.github.com> Date: Thu, 9 Jan 2020 21:01:10 -0800 Subject: [PATCH] Add files via upload --- .../mob/living/simple_animal/hostile/heart.dm | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 code/modules/mob/living/simple_animal/hostile/heart.dm diff --git a/code/modules/mob/living/simple_animal/hostile/heart.dm b/code/modules/mob/living/simple_animal/hostile/heart.dm new file mode 100644 index 00000000..4e12b01b --- /dev/null +++ b/code/modules/mob/living/simple_animal/hostile/heart.dm @@ -0,0 +1,35 @@ +/mob/living/simple_animal/hostile/heart + name = "Heart" + desc = "A living heart. It's angry!." + icon = 'icons/obj/surgery.dmi' + icon_state = "heart-on" + icon_living = "heart-on" + icon_dead = "heart-on" + gender = NEUTER + turns_per_move = 5 + speak_emote = list("beats") + emote_see = list("beats") + a_intent = INTENT_HARM + maxHealth = 24 + health = 24 + speed = -1 + harm_intent_damage = 5 + melee_damage_lower = 15 + melee_damage_upper = 15 + response_help = "touches" + response_disarm = "beats" + response_harm = "breaks" + density = FALSE + attacktext = "beats" + ventcrawler = VENTCRAWLER_ALWAYS + attack_sound = 'sound/effects/singlebeat.ogg' + stat_attack = UNCONSCIOUS + attack_same = 1 + gold_core_spawnable = HOSTILE_SPAWN + see_in_dark = 8 + deathmessage = "falls lifeless." + del_on_death = 1 + loot = list(/obj/item/organ/heart) + atmos_requirements = list("min_oxy" = 5, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) + minbodytemp = 150 + maxbodytemp = 500