Diona Cult Manifestation Tweak (#8986)

This commit is contained in:
Geeves
2020-06-02 11:55:19 +02:00
committed by GitHub
parent 2a29132e5d
commit 7824a04975
4 changed files with 25 additions and 6 deletions
@@ -0,0 +1,11 @@
/datum/species/proc/take_manifest_ghost_damage(var/mob/living/carbon/C)
C.take_organ_damage(1, 0)
return TRUE
/datum/species/diona/take_manifest_ghost_damage(mob/living/carbon/C)
C.take_organ_damage(2, 0)
C.adjustNutritionLoss(5)
if(C.nutrition <= C.max_nutrition * 0.05)
to_chat(C, SPAN_WARNING("We cannot support our summoned apparitions with our biomass any longer..."))
return FALSE
return TRUE