From 2cab399c3537f11046e322bb2f17ce1b40f0f4c8 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Mon, 4 Mar 2019 10:45:46 +0100 Subject: [PATCH] Frostbite jelly --- code/game/objects/items/devices/suit_cooling.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index f4787ff83d..7577527f2a 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -237,3 +237,17 @@ if(cell.charge <= 0) turn_off(1) +/mob/living/simple_animal/hostile/jelly/cold //you are my test mob now fug you + name = "Frostbite Jelly" + //might make a blue icon someday, not priority this is debug stuff + var/obj/item/weapon/cell/cell + var/cooling = 5 //variable cooling + +/mob/living/simple_animal/hostile/jelly/cold/life() + ..() + if(alive) + src.bodytemperature -= cooling + + + +