Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,23 @@
if(obscured_slots & HIDEFACE)
return

switch(get_clan()?.alt_sprite)
if("nosferatu")
. += span_warning("[p_They()] look[p_s()] utterly deformed and inhuman!<br>")
if("gargoyle")
. += span_warning("[p_They()] seem[p_s()] to be made out of stone!<br>")
if("kiasyd")
if (!is_eyes_covered())
. += span_boldwarning("[p_They()] [p_have()] no whites in [p_their()] eyes!</b><br>")
if("rotten1")
. += span_warning("[p_They()] seem[p_s()] oddly gaunt.<br>")
if("rotten2")
. += span_warning("[p_They()] [p_have()] a corpselike complexion.<br>")
if("rotten3")
. += span_boldwarning("[p_They()] [p_are()] a decayed corpse!<br>")
if("rotten4")
. += span_boldwarning("[p_They()] [p_are()] a skeletonised corpse!</b><br>")
if(HAS_TRAIT(src, TRAIT_MASQUERADE_VIOLATING_FACE) || HAS_TRAIT(src, TRAIT_MASQUERADE_VIOLATING_EYES))
switch(get_clan()?.alt_sprite)
if("nosferatu")
. += span_warning("[p_They()] look[p_s()] utterly deformed and inhuman!<br>")
if("gargoyle")
. += span_warning("[p_They()] seem[p_s()] to be made out of stone!<br>")
if("kiasyd")
if (!is_eyes_covered())
. += span_boldwarning("[p_They()] [p_have()] no whites in [p_their()] eyes!</b><br>")
if("rotten1")
. += span_warning("[p_They()] seem[p_s()] oddly gaunt.<br>")
if("rotten2")
. += span_warning("[p_They()] [p_have()] a corpselike complexion.<br>")
if("rotten3")
. += span_boldwarning("[p_They()] [p_are()] a decayed corpse!<br>")
if("rotten4")
. += span_boldwarning("[p_They()] [p_are()] a skeletonised corpse!</b><br>")

if(iszomboid(src) && !(obscured_slots & HIDEFACE)) // for necromancy player-controlled zombies
. += span_danger("<b>[p_They()] [p_are()] a decayed corpse!</b><br>")
Expand Down
Loading