Skip to content

Commit

Permalink
Unfucks darkspawn veils but they're still weaker (#17866)
Browse files Browse the repository at this point in the history
* brtuh

* Update yogstation/code/game/gamemodes/darkspawn/veil.dm

whoops

Co-authored-by: Molti <108117184+Moltijoe@users.noreply.github.com>

---------

Co-authored-by: Molti <108117184+Moltijoe@users.noreply.github.com>
  • Loading branch information
Mqiib and Moltijoe committed Feb 11, 2023
1 parent 80045a2 commit 44d935e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions yogstation/code/game/gamemodes/darkspawn/veil.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
SSticker.mode.update_darkspawn_icons_added(owner)
SSticker.mode.veils += owner
owner.special_role = "veil"
owner.current?.maxHealth = min(owner.current.maxHealth, 35)
message_admins("[key_name_admin(owner.current)] was veiled by a darkspawn!")
log_game("[key_name(owner.current)] was veiled by a darkspawn!")

Expand All @@ -27,11 +26,16 @@
else
M.visible_message(span_big("[M] looks like their mind is their own again!"))
to_chat(M,span_userdanger("A piercing white light floods your eyes. Your mind is your own again! Though you try, you cannot remember anything about the darkspawn or your time under their command..."))
to_chat(owner, span_notice("As your mind is released from their grasp, you feel much stronger, though you will never again be whole."))
M.maxHealth = max(M.maxHealth, 70)
to_chat(owner, span_notice("As your mind is released from their grasp, you feel your strength returning."))
M.update_sight()
return ..()

/datum/antagonist/veil/apply_innate_effects(mob/living/mob_override)
mob_override.maxHealth -= 40

/datum/antagonist/veil/remove_innate_effects(mob/living/mob_override)
mob_override.maxHealth += 40

/datum/antagonist/veil/greet()
to_chat(owner, "<span class='velvet big'><b>ukq wna ieja jks</b></span>" )
if(ispreternis(owner))
Expand Down

0 comments on commit 44d935e

Please sign in to comment.