mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-28 09:52:38 +00:00
remove workaround chem
This commit is contained in:
@@ -147,13 +147,6 @@
|
||||
inhibitors = list("fluorine" = 0.01)
|
||||
result_amount = 1
|
||||
|
||||
/decl/chemical_reaction/instant/nutridax
|
||||
name = "Nutridax"
|
||||
id = "nutridax"
|
||||
result = "nutridax"
|
||||
required_reagents = list("oxygen" = 1, "lipozine" = 1, "carbon" = 1)
|
||||
result_amount = 3
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
/// Vore Drugs
|
||||
|
||||
|
||||
@@ -92,40 +92,3 @@
|
||||
/datum/reagent/sleevingcure/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
M.remove_a_modifier_of_type(/datum/modifier/resleeving_sickness)
|
||||
M.remove_a_modifier_of_type(/datum/modifier/faux_resleeving_sickness)
|
||||
|
||||
/datum/reagent/nutridax
|
||||
name = "Nutridax"
|
||||
id = "nutridax"
|
||||
description = "A dieting aid that targets free-floating proteins and sugars."
|
||||
taste_description = "bitterness"
|
||||
reagent_state = SOLID
|
||||
color = "#605048"
|
||||
overdose = REAGENTS_OVERDOSE
|
||||
|
||||
/datum/reagent/nutridax/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
if(alien == IS_DIONA)
|
||||
return
|
||||
M.dizziness = 0
|
||||
M.drowsyness = 0
|
||||
M.eye_blurry = 0
|
||||
M.SetConfused(0)
|
||||
if(M.ingested)
|
||||
for(var/datum/reagent/R in M.ingested.reagent_list)
|
||||
if(istype(R, /datum/reagent/nutriment))
|
||||
R.remove_self(removed * 30)
|
||||
if(istype(R, /datum/reagent/drink))
|
||||
R.remove_self(removed * 30)
|
||||
|
||||
/datum/reagent/nutridax/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
if(alien == IS_DIONA)
|
||||
return
|
||||
M.dizziness = 0
|
||||
M.drowsyness = 0
|
||||
M.eye_blurry = 0
|
||||
M.SetConfused(0)
|
||||
if(M.bloodstr)
|
||||
for(var/datum/reagent/R in M.bloodstr.reagent_list)
|
||||
if(istype(R, /datum/reagent/nutriment))
|
||||
R.remove_self(removed * 20)
|
||||
if(istype(R, /datum/reagent/drink))
|
||||
R.remove_self(removed * 30)
|
||||
|
||||
Reference in New Issue
Block a user