Merge pull request #100 from eyespy2222/Eyecode1

Calo-RIGHT!
This commit is contained in:
MrSky12
2023-05-02 23:18:22 +02:00
committed by GitHub
7 changed files with 164 additions and 2 deletions
@@ -37,7 +37,7 @@
/datum/reagent/consumable/extilphite
name = "Extilphite"
description = "A very useful chemical that helps soothe bloated stomachs."
color = "#2aed96"
color = "#2aed96"
reagent_state = LIQUID
taste_description = "smoothness"
metabolization_rate = 0.8 * REAGENTS_METABOLISM
@@ -75,3 +75,19 @@
else
return ..()
/datum/reagent/consumable/caloriteblessing
name = "Calorite blessing"
description = "A strange, viscous liquid derived from calorite. It is said to have physically enhancing properties surprisingly unrelated to weight gain when consumed"
color = "#eb6e00"
reagent_state = LIQUID
taste_description = "sweet salvation"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
/datum/reagent/consumable/caloriteblessing/on_mob_metabolize(mob/living/L)
..()
ADD_TRAIT(L, TRAIT_GOTTAGOFAST, type)
/datum/reagent/consumable/caloriteblessing/on_mob_end_metabolize(mob/living/L)
REMOVE_TRAIT(L, TRAIT_GOTTAGOFAST, type)
..()