Some chemistry stuff:

-Cyanide pills and cyanide bottles added, only admins can spawn them for now though.
-Cyanide reagent modified to put you to sleep upon ingestion
-Antitoxin now mixable via chemistry
-Inaprovaline now mixable via chemistry

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1086 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
uhangi@gmail.com
2011-02-22 08:08:17 +00:00
parent 47a2fd767b
commit 9e45c0351c
3 changed files with 34 additions and 1 deletions

View File

@@ -280,6 +280,7 @@ datum
if(!M) M = holder.my_atom
M:toxloss += 3
M:oxyloss += 3
M:sleeping += 1
..()
return

View File

@@ -49,6 +49,20 @@ datum
required_reagents = list("ethanol" = 1, "anti-toxin" = 1, "chlorine" = 1)
result_amount = 3
inaprovaline
name = "Inaprovaline"
id = "inaprovaline"
result = "inaprovaline"
required_reagents = list("oxygen" = 1, "carbon" = 1, "sugar" = 1)
result_amount = 3
anti_toxin
name = "Anti-Toxin (Dylovene)"
id = "anti_toxin"
result = "anti_toxin"
required_reagents = list("silicon" = 1, "potassium" = 1, "nitrogen" = 1)
result_amount = 3
mutagen
name = "Unstable mutagen"
id = "mutagen"
@@ -61,7 +75,7 @@ datum
// id = "cyanide"
// result = "cyanide"
// required_reagents = list("hydrogen" = 1, "carbon" = 1, "nitrogen" = 1)
// result_amount = 3
// result_amount = 1
thermite
name = "Thermite"

View File

@@ -1236,6 +1236,16 @@
..()
reagents.add_reagent("toxin", 30)
/obj/item/weapon/reagent_containers/glass/bottle/cyanide
name = "cyanide bottle"
desc = "A small bottle."
icon = 'chemical.dmi'
icon_state = "bottle12"
New()
..()
reagents.add_reagent("cyanide", 30)
/obj/item/weapon/reagent_containers/glass/bottle/stoxin
name = "sleep-toxin bottle"
desc = "A small bottle."
@@ -2429,6 +2439,14 @@
..()
reagents.add_reagent("toxin", 50)
/obj/item/weapon/reagent_containers/pill/cyanide
name = "Cyanide pill"
desc = "Don't swallow this."
icon_state = "pill5"
New()
..()
reagents.add_reagent("cyanide", 50)
/obj/item/weapon/reagent_containers/pill/stox
name = "Sleeping pill"
desc = "Commonly used to treat insomnia."