mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-04 14:33:30 +00:00
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:
@@ -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"
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
Reference in New Issue
Block a user