Skip to content
9 changes: 7 additions & 2 deletions modular_darkpack/modules/city_time/code/status_effects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
. = ..()
. += span_notice("You are currently [user.visible_to_sky() ? "visible" : "not visible"] to the sun.")
if(get_kindred_splat(user))
. += span_warning("The sun will sear your flesh and bring final death.")

//CRIMSON GRID EDIT ADD PR: Humanity 10 Vamps can walk under the Sun CHANGE: Made it clearer if you can walk under the sun or not.
var/mob/living/kindred = user
if(!kindred.is_enlightenment() && (kindred.st_get_stat(STAT_MORALITY)>=10))
. += span_green("Your dedication perserves you. For this few minutes the Sun shall not sear you")
else
. += span_warning("The sun will sear your flesh and bring final death.")
Comment on lines +16 to +20

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

crimson edit addition/change?

//CRIMSON GRID EDIT END
/datum/status_effect/sunlight_burning
id = "sunlight_burning"
alert_type = /atom/movable/screen/alert/status_effect/sunlight_burning
Expand Down