Changed a lot of things, too lazy to recall them atm. Attempted a shotgun-on-back fix, but didn't work.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@305 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
uporotiy
2010-10-17 14:27:57 +00:00
parent f47e4661d8
commit 5490a3e40e
19 changed files with 4814 additions and 5035 deletions

View File

@@ -44,7 +44,20 @@ datum
on_mob_life(var/mob/M)
holder.remove_reagent(src.id, 0.4) //By default it slowly disappears.
return
/*
metroid
name = "Metroid Jelly"
id = "metroid"
description = "A green liquid produced from one of the deadliest lifeforms in existence."
reagent_state = LIQUID
on_mob_life(var/mob/M)
if(prob(10))
M << "You don't feel too good."
M.toxloss+=20
else if(prob(40))
M.bruteloss-=5
..() //Code no work :< -- Urist
*/
milk
name = "Milk"
id = "milk"

View File

@@ -1912,4 +1912,36 @@
icon_state = "glass_empty"
name = "Drinking glass"
desc = "Your standard drinking glass"
return
return
///jar
/*
/obj/item/weapon/reagent_containers/food/drinks/jar
name = "empty jar"
desc = "A jar. You're not sure what it's supposed to hold."
icon = 'food.dmi'
icon_state = "jar"
item_state = "beaker"
New()
var/datum/reagents/R = new/datum/reagents(50)
reagents = R
R.my_atom = src
on_reagent_change()
if (reagents.reagent_list.len > 0)
switch(reagents.get_master_reagent_id())
if("metroid")
icon_state = "jar_metroid"
name = "metroid jam"
desc = "A jar of metroid jam. Delicious!"
else
icon_state ="jar_what"
name = "jar of something"
desc = "You can't really tell what this is."
else
icon_state = "jar"
name = "empty jar"
desc = "A jar. You're not sure what it's supposed to hold."
return //Code no work :< -- Urist
*/