Air alarm parameters changed - they will go to orange/red only when the temperature is cold enough to be dangerous.

Rotten meat is now named similarly to normal meat, but has a different sprite.
Cold room tweaked a bit more.
Kitchen juicer moved from the central table to the table below the microwave.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2816 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
heisen51@gmail.com
2011-12-26 05:53:55 +00:00
parent 248b10b073
commit 5dbb70f7f3
4 changed files with 20 additions and 20 deletions
+3 -3
View File
@@ -220,8 +220,8 @@
if(T0C to (T0C + 100))
health = max(0, health - 1)
if(health <= 0)
name = "rotten meat"
desc = "A slab of meat. It looks rotten."
icon_state = "rottenmeat"
var/toxin_amount = reagents.get_reagent_amount("nutriment") * 3
reagents.add_reagent("toxin",toxin_amount)
processing_objects.Remove(src)
@@ -238,8 +238,8 @@
if(T0C to (T0C + 100))
health = max(0, health - 1)
if(health <= 0)
name = "rotten synthetic meat"
desc = "A slab of synthetic meat. It looks rotten."
icon_state = "rottenmeat"
var/toxin_amount = reagents.get_reagent_amount("nutriment") * 3
reagents.add_reagent("toxin",toxin_amount)
processing_objects.Remove(src)
@@ -275,8 +275,8 @@
if(T0C to (T0C + 100))
health = max(0, health - 1)
if(health <= 0)
name = "-rotten meat"
desc = "A slab of meat. It looks rotten."
icon_state = "rottenmeat"
var/toxin_amount = reagents.get_reagent_amount("nutriment") * 3
reagents.add_reagent("toxin",toxin_amount)
processing_objects.Remove(src)