8000 Change age and blood curse to non-gib deaths by pgmzeta · Pull Request #23463 · goonstation/goonstation · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Change age and blood curse to non-gib deaths #23463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 19, 2025
Merged
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
28 changes: 18 additions & 10 deletions code/modules/status_system/statusEffects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3072,13 +3072,16 @@
if (src.blood_to_collect <= 0)
src.linked_curser.lift_curse(TRUE)
else if (H.blood_volume <= 0 || isdead(H))
H.visible_message(SPAN_ALERT("[H] spontaneously implodes!!! <b>HOLY FUCK!!</b>"), SPAN_ALERT("<b>Ohhhh shit</b>"))
for (var/i in 1 to rand(3, 4))
var/obj/decal/cleanable/blood_splat = make_cleanable(/obj/decal/cleanable/blood/splatter, get_turf(H))
blood_splat.streak_cleanable(pick(cardinal), full_streak = prob(25), dist_upper = rand(4, 6))
playsound(H, 'sound/impact_sounds/Slimy_Splat_2_Short.ogg', 40, TRUE)
H.implode(TRUE)
src.linked_curser.lift_curse_specific(FALSE, H)
H.visible_message(SPAN_ALERT("[H] spontaneously dessicates, drained of all fluids! <b>HOLY FUCK!!</b>"), SPAN_ALERT("<b>Ohhhh shit</b>"))
playsound(H, 'sound/impact_sounds/Flesh_Crush_1.ogg', 70, TRUE)
H.death(FALSE)
H.disfigured = TRUE
H.UpdateName()
H.bioHolder?.AddEffect("husk")
H.bioHolder?.mobAppearance.flavor_text = "A desiccated husk."
H.set_clothing_icon_dirty()
src.linked_curser?.lift_curse_specific(FALSE, H)
src.remove_self()

onRemove()
var/mob/living/carbon/human/H = src.owner
Expand Down Expand Up @@ -3122,9 +3125,13 @@
src.final_msg_given = TRUE
H.playsound_local(H, 'sound/ambience/spooky/Void_Calls.ogg', 75, FALSE)
if (H.bioHolder.age >= src.original_age + 120)
H.visible_message(SPAN_ALERT("[H] collapses into a pile of bones!"))
H.set_mutantrace(/datum/mutantrace/skeleton)
H.death(FALSE)
H.skeletonize()
src.linked_curser.lift_curse_specific(FALSE, H)
H.decomp_stage = DECOMP_STAGE_SKELETONIZED
H.set_clothing_icon_dirty()
src.linked_curser?.lift_curse_specific(FALSE, H)
src.remove_self()

onRemove()
var/mob/living/carbon/human/H = src.owner
Expand Down Expand Up @@ -3199,7 +3206,8 @@
..()
var/mob/living/carbon/human/H = src.owner
if (QDELETED(H) || isdead(H))
src.linked_curser.lift_curse_specific(FALSE, H)
src.linked_curser?.lift_curse_specific(FALSE, H)
src.remove_self()

onRemove()
var/mob/living/carbon/human/H = src.owner
Expand Down
0