From 1c47afaff999fb6d2f7bb2cccd42fb7135a57b35 Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Sun, 1 Oct 2017 15:25:19 +0100 Subject: [PATCH 1/3] Shadownerd eyes now heal passively --- code/game/gamemodes/shadowling/shadowling.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index d250200236d..f6d9e5cabe7 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -332,6 +332,8 @@ Made by Xhuis H.heal_overall_damage(5, 5) H.adjustToxLoss(-5) H.adjustBrainLoss(-25) //Shad O. Ling gibbers, "CAN U BE MY THRALL?!!" + H.AdjustEyeBlurry(-1) + H.AdjustEarDamage(-1) H.adjustCloneLoss(-1) H.SetWeakened(0) H.SetStunned(0) @@ -378,4 +380,4 @@ Made by Xhuis /datum/game_mode/proc/update_shadow_icons_removed(datum/mind/shadow_mind) //This should never actually occur, but it's here anyway. var/datum/atom_hud/antag/shadow_hud = huds[ANTAG_HUD_SHADOW] shadow_hud.leave_hud(shadow_mind.current) - set_antag_hud(shadow_mind.current, null) \ No newline at end of file + set_antag_hud(shadow_mind.current, null) From 5acd7943a9770aa88814ed901cba56bab945cc7e Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Sun, 1 Oct 2017 15:43:10 +0100 Subject: [PATCH 2/3] Removes ear healing, actually addresses blindness --- code/game/gamemodes/shadowling/shadowling.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index f6d9e5cabe7..4728ccfad5e 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -333,7 +333,8 @@ Made by Xhuis H.adjustToxLoss(-5) H.adjustBrainLoss(-25) //Shad O. Ling gibbers, "CAN U BE MY THRALL?!!" H.AdjustEyeBlurry(-1) - H.AdjustEarDamage(-1) + H.CureNearsighted() + H.CureBlind() H.adjustCloneLoss(-1) H.SetWeakened(0) H.SetStunned(0) From 910baf713f5369f5af14cd682a834c1653a22557 Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Sun, 1 Oct 2017 17:27:19 +0100 Subject: [PATCH 3/3] Damage to eyes actually goes down now --- code/game/gamemodes/shadowling/shadowling.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index 4728ccfad5e..1e4671998e8 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -329,6 +329,9 @@ Made by Xhuis H << 'sound/weapons/sear.ogg' else if(light_amount < LIGHT_HEAL_THRESHOLD) H.clear_alert("lightexposure") + var/obj/item/organ/internal/eyes/E = H.get_int_organ(/obj/item/organ/internal/eyes) + if(istype(E)) + E.take_damage(-1) H.heal_overall_damage(5, 5) H.adjustToxLoss(-5) H.adjustBrainLoss(-25) //Shad O. Ling gibbers, "CAN U BE MY THRALL?!!"