Merge pull request #14789 from SatinIsle/Lipozine-Plus

Lipozine Plus
This commit is contained in:
Heroman3003
2023-04-16 09:16:21 +10:00
committed by GitHub
2 changed files with 43 additions and 1 deletions
@@ -163,6 +163,20 @@
required_reagents = list("carbon" = 3, "iron" = 1, "nitrogen" = 3)
result_amount = 7
/decl/chemical_reaction/instant/lipozilase
name = "Lipozilase"
id = "Lipozilase"
result = "lipozilase"
required_reagents = list("lipozine" = 1, "diethylamine" = 1)
result_amount = 2
/decl/chemical_reaction/instant/lipostipo
name = "Lipostipo"
id = "Lipostipo"
result = "lipostipo"
required_reagents = list("lipozine" = 1, "nutriment" = 1, "fluorine" = 1)
result_amount = 3
///////////////////////////////////////////////////////////////////////////////////
/// Reagent colonies.
/decl/chemical_reaction/instant/meatcolony
+29 -1
View File
@@ -110,4 +110,32 @@
if(alien == IS_DIONA)
return
if(prob(10)) //Miniscule chance of removing some toxins.
M.adjustToxLoss(-10 * removed)
M.adjustToxLoss(-10 * removed)
/datum/reagent/lipozilase // The anti-nutriment that rapidly removes weight.
name = "Lipozilase"
id = "lipozilase"
description = "A chemical compound that causes a dangerously powerful fat-burning reaction."
taste_description = "blandness"
reagent_state = LIQUID
color = "#47AD6D"
overdose = REAGENTS_OVERDOSE
/datum/reagent/lipozilase/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
M.adjust_nutrition(-20 * removed)
if(M.weight > 50)
M.weight -= 0.3
/datum/reagent/lipostipo // The drug that rapidly increases weight.
name = "Lipostipo"
id = "lipostipo"
description = "A chemical compound that causes a dangerously powerful fat-adding reaction."
taste_description = "blubber"
reagent_state = LIQUID
color = "#61731C"
overdose = REAGENTS_OVERDOSE
/datum/reagent/lipostipo/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
M.adjust_nutrition(-20 * removed)
if(M.weight < 500)
M.weight += 0.3