mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
[MIRROR] Mint can gib obese people again [MDB IGNORE] (#18987)
Mint can gib obese people again (#72970) ## About The Pull Request Changes minttoxin(a toxin) to mintextract(a food). ## Why It's Good For The Game Fixes https://github.com/tgstation/tgstation/issues/72969 The chef's mint is intended to gib fat people. Due to https://github.com/tgstation/tgstation/pull/70764, liver functionality was reworked so that instead of being purged rapidly, toxin's in a mobs system with 3 units or less have no effect. Since the chef's mint only has 2 units of mint toxin, it's intended functionality is impossible under normal circumstances. By changing the reagent type from toxin to consumable, it restores the ability to gib. ## Changelog 🆑 fix: Mint Toxin(a toxin) has been changed to Mint Extract(a food). The chef's mint can once again gib, fatties beware. /🆑 Co-authored-by: the-orange-cow <76538214+the-orange-cow@users.noreply.github.com>
This commit is contained in:
co-authored by
the-orange-cow
parent
c6397baa50
commit
69bd792a4c
@@ -681,7 +681,7 @@
|
||||
emagged_reagents = list(
|
||||
/datum/reagent/consumable/ethanol,
|
||||
/datum/reagent/iron,
|
||||
/datum/reagent/toxin/minttoxin,
|
||||
/datum/reagent/consumable/mintextract,
|
||||
/datum/reagent/consumable/ethanol/atomicbomb,
|
||||
/datum/reagent/consumable/ethanol/fernet
|
||||
)
|
||||
|
||||
@@ -1095,3 +1095,16 @@
|
||||
nutriment_factor = 1.5 * REAGENTS_METABOLISM
|
||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
|
||||
default_container = /obj/item/reagent_containers/condiment/creamer
|
||||
|
||||
/datum/reagent/consumable/mintextract
|
||||
name = "Mint Extract"
|
||||
description = "Useful for dealing with undesirable customers."
|
||||
color = "#CF3600" // rgb: 207, 54, 0
|
||||
taste_description = "mint"
|
||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
|
||||
|
||||
/datum/reagent/consumable/mintextract/on_mob_life(mob/living/carbon/affected_mob, delta_time, times_fired)
|
||||
if(HAS_TRAIT(affected_mob, TRAIT_FAT))
|
||||
affected_mob.investigate_log("has been gibbed by consuming [src] while fat.", INVESTIGATE_DEATHS)
|
||||
affected_mob.inflate_gib()
|
||||
return ..()
|
||||
|
||||
@@ -207,21 +207,6 @@
|
||||
. = TRUE
|
||||
..()
|
||||
|
||||
/datum/reagent/toxin/minttoxin
|
||||
name = "Mint Toxin"
|
||||
description = "Useful for dealing with undesirable customers."
|
||||
color = "#CF3600" // rgb: 207, 54, 0
|
||||
toxpwr = 0
|
||||
taste_description = "mint"
|
||||
ph = 8
|
||||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
|
||||
|
||||
/datum/reagent/toxin/minttoxin/on_mob_life(mob/living/carbon/affected_mob, delta_time, times_fired)
|
||||
if(HAS_TRAIT(affected_mob, TRAIT_FAT))
|
||||
affected_mob.investigate_log("has been gibbed by consuming [src] while fat.", INVESTIGATE_DEATHS)
|
||||
affected_mob.inflate_gib()
|
||||
return ..()
|
||||
|
||||
/datum/reagent/toxin/carpotoxin
|
||||
name = "Carpotoxin"
|
||||
description = "A deadly neurotoxin produced by the dreaded spess carp."
|
||||
|
||||
Reference in New Issue
Block a user