Makes triple citrus tick on life instead of ingest (#27418)

* Makes triple citrus tick on life instead of ingest

* Slightly lower chance
This commit is contained in:
DGamerL
2024-11-24 19:54:00 +00:00
committed by GitHub
parent 3dd27b5828
commit 4c5a326e2f
@@ -102,9 +102,11 @@
drink_desc = "As colorful and healthy as it is delicious."
taste_description = "citrus juice"
/datum/reagent/consumable/drink/triple_citrus/reaction_mob(mob/living/M, method=REAGENT_TOUCH, volume)
if(method == REAGENT_INGEST)
M.adjustToxLoss(-rand(1,2))
/datum/reagent/consumable/drink/triple_citrus/on_mob_life(mob/living/M)
var/update_flags = STATUS_UPDATE_NONE
if(prob(15))
update_flags |= M.adjustToxLoss(-rand(1, 2), FALSE)
return ..() | update_flags
/datum/reagent/consumable/drink/berryjuice
name = "Berry Juice"