From 650fd1a76d78cca13f4cd59e4b5a5df7fd3e5da1 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 29 Sep 2020 00:13:18 +0200 Subject: [PATCH] [MIRROR] ash!mansus grasp now blinds people instead of yeeting them (#1027) * ash!mansus grasp now blinds people instead of yeeting them (#53396) * pokemon * pocket sand * halved the blind time * accidentally added a return * ash!mansus grasp now blinds people instead of yeeting them Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> --- .../antagonists/eldritch_cult/knowledge/ash_lore.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/antagonists/eldritch_cult/knowledge/ash_lore.dm b/code/modules/antagonists/eldritch_cult/knowledge/ash_lore.dm index fdcf3a3dc1c..81a94e2a436 100644 --- a/code/modules/antagonists/eldritch_cult/knowledge/ash_lore.dm +++ b/code/modules/antagonists/eldritch_cult/knowledge/ash_lore.dm @@ -21,7 +21,7 @@ /datum/eldritch_knowledge/ashen_grasp name = "Grasp of Ash" gain_text = "He well knew how to walk between the planes." - desc = "Empowers your mansus grasp to throw away enemies." + desc = "Empowers your mansus grasp to blind opponents you touch with it." cost = 1 next_knowledge = list(/datum/eldritch_knowledge/spell/ashen_shift) route = PATH_ASH @@ -31,10 +31,10 @@ if(!iscarbon(target)) return var/mob/living/carbon/C = target - var/atom/throw_target = get_edge_target_turf(C, user.dir) - if(!C.anchored) - . = TRUE - C.throw_at(throw_target, rand(4,8), 14, user) + to_chat(C, "Your eyes burn horrifically!") //pocket sand! also, this is the message that changeling blind stings use, and no, I'm not ashamed about reusing it + C.become_nearsighted(EYE_DAMAGE) + C.blind_eyes(5) + C.blur_eyes(10) return /datum/eldritch_knowledge/ashen_grasp/on_eldritch_blade(atom/target, mob/user, proximity_flag, click_parameters)