mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user