mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
TG: -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. Revision: r3522 Author: d_h2...@yahoo.com
This commit is contained in:
@@ -1873,6 +1873,23 @@ datum
|
|||||||
..()
|
..()
|
||||||
return
|
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
|
soysauce
|
||||||
name = "Soysauce"
|
name = "Soysauce"
|
||||||
id = "soysauce"
|
id = "soysauce"
|
||||||
|
|||||||
@@ -431,6 +431,13 @@ datum
|
|||||||
required_reagents = list("silicon" = 1, "hydrogen" = 1, "anti_toxin" = 1)
|
required_reagents = list("silicon" = 1, "hydrogen" = 1, "anti_toxin" = 1)
|
||||||
result_amount = 5
|
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
|
// foam and foam precursor
|
||||||
|
|||||||
@@ -218,6 +218,7 @@
|
|||||||
atksilicon = 0
|
atksilicon = 0
|
||||||
firevuln = 2
|
firevuln = 2
|
||||||
brutevuln = 1
|
brutevuln = 1
|
||||||
|
wanderspeed = 1
|
||||||
|
|
||||||
|
|
||||||
Harvest(var/obj/item/weapon/W, var/mob/living/user)
|
Harvest(var/obj/item/weapon/W, var/mob/living/user)
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 255 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 78 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 25 KiB |
Reference in New Issue
Block a user