diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 061ece2421..e19f7b5f3c 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -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" diff --git a/code/modules/chemical/Chemistry-Recipes.dm b/code/modules/chemical/Chemistry-Recipes.dm index 41b5f84b46..e50ca6f5b8 100644 --- a/code/modules/chemical/Chemistry-Recipes.dm +++ b/code/modules/chemical/Chemistry-Recipes.dm @@ -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 diff --git a/code/modules/critters/critters.dm b/code/modules/critters/critters.dm index 3e8645f4c8..793438fb65 100644 --- a/code/modules/critters/critters.dm +++ b/code/modules/critters/critters.dm @@ -208,6 +208,7 @@ atksilicon = 0 firevuln = 2 brutevuln = 1 + wanderspeed = 1 Harvest(var/obj/item/weapon/W, var/mob/living/user) diff --git a/html/changelog.html b/html/changelog.html index 20b8a5a85c..51548fd1cb 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -83,6 +83,14 @@ Stuff which is in development and not yet visible to players or just code relate should be listed in the changelog upon commit tho. Thanks. --> +
+

April 27 2012

+

Cheridan updated:

+ +

Wednesday, April 25th

diff --git a/icons/mob/blob.dmi b/icons/mob/blob.dmi index 0309b04e79..f4ee966bd1 100644 Binary files a/icons/mob/blob.dmi and b/icons/mob/blob.dmi differ diff --git a/icons/mob/critter.dmi b/icons/mob/critter.dmi index 2b5a718991..67b8bac8a1 100644 Binary files a/icons/mob/critter.dmi and b/icons/mob/critter.dmi differ diff --git a/icons/obj/harvest.dmi b/icons/obj/harvest.dmi index e4d6bcf925..55dcb8babd 100644 Binary files a/icons/obj/harvest.dmi and b/icons/obj/harvest.dmi differ