-New sprites for lemons, oranges, and walking mushroom critters.

-Added a new chemical: lipozine, a weight loss drug. Made with sodium chloride, ethanol, and radium.
-Added Invisty's new blob sprites.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3522 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
d_h2005@yahoo.com
2012-04-27 06:54:10 +00:00
parent 8fee7b7240
commit 7edcb92d08
7 changed files with 33 additions and 0 deletions
@@ -1665,6 +1665,23 @@ datum
..()
return
lipozine
name = "Lipozine" // The anti-nutriment.
id = "lipozine"
description = "A chemical compound that causes a powerful fat-burning reaction."
reagent_state = LIQUID
nutriment_factor = 10 * REAGENTS_METABOLISM
color = "#BBEDA4" // rgb: 187, 237, 164
on_mob_life(var/mob/living/M as mob)
if(!M) M = holder.my_atom
M:nutrition -= nutriment_factor
M:overeatduration = 0
if(M:nutrition < 0)//Prevent from going into negatives.
M:nutrition = 0
..()
return
soysauce
name = "Soysauce"
id = "soysauce"
@@ -417,6 +417,13 @@ datum
required_reagents = list("silicon" = 1, "hydrogen" = 1, "anti_toxin" = 1)
result_amount = 5
lipozine
name = "Lipozine"
id = "Lipozine"
result = "lipozine"
required_reagents = list("sodiumchloride" = 1, "ethanol" = 1, "radium" = 1)
result_amount = 3
///////////////////////////////////////////////////////////////////////////////////
// foam and foam precursor
+1
View File
@@ -208,6 +208,7 @@
atksilicon = 0
firevuln = 2
brutevuln = 1
wanderspeed = 1
Harvest(var/obj/item/weapon/W, var/mob/living/user)