Calorite golems!

Calorite golems are a new type of golem that can be made using 10 sheets of calorite that, thanks to the combined magical forces of both adamantine and calorite, can use magic to heal the wounded, make food more nourishing, and make people around them faster for a moment. Unfortunately, calorite golems lack the armor that other golems have, and their fists cannot stun or do much damage on their own.
This commit is contained in:
eyespy
2023-05-01 21:38:52 +10:00
parent a0e2076ca9
commit 87872dbcdb
7 changed files with 166 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)
..()