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)