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
+1 -1
View File
@@ -68,7 +68,7 @@
"plasma" = new/datum/tlv(-1.0, -1.0, 0.2, 0.5), // Partial pressure, kpa
"other" = new/datum/tlv(-1.0, -1.0, 0.5, 1.0), // Partial pressure, kpa
"pressure" = new/datum/tlv(ONE_ATMOSPHERE*0.80,ONE_ATMOSPHERE*0.90,ONE_ATMOSPHERE*1.10,ONE_ATMOSPHERE*1.20), /* kpa */
"temperature" = new/datum/tlv(T0C, T0C+10, T0C+40, T0C+66), // K
"temperature" = new/datum/tlv(T0C-60, T0C-30, T0C+40, T0C+66), // K
)
/*
+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)