From f7fdf1107ef00e8e3898fd149fc20978a23770be Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 9 Feb 2021 00:49:37 +0100 Subject: [PATCH] [MIRROR] Makes venusflytrap mobs take fire and cold damage (#3215) * Makes venusflytrap take fire and cold damage (#56565) Venus flytraps were formerly immune to fire and cold damage. Now plasma fires and the coldness of space can hurt them. Fire does double the damage compared to cold. At full health a Venus Flytrap will die in: ~5 seconds inside of a fire ~10 seconds inside of space * Makes venusflytrap mobs take fire and cold damage Co-authored-by: Tim --- .../mob/living/simple_animal/hostile/venus_human_trap.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm index 48a9158dd90..e9960dc4113 100644 --- a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm +++ b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm @@ -106,6 +106,8 @@ attacked_sound = 'sound/creatures/venus_trap_hurt.ogg' deathsound = 'sound/creatures/venus_trap_death.ogg' attack_sound = 'sound/creatures/venus_trap_hit.ogg' + unsuitable_cold_damage = 5 + unsuitable_heat_damage = 10 atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) unsuitable_atmos_damage = 0 /// copied over from the code from eyeballs (the mob) to make it easier for venus human traps to see in kudzu that doesn't have the transparency mutation