[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>
This commit is contained in:
SkyratBot
2020-09-29 00:13:18 +02:00
committed by GitHub
co-authored by ATH1909
parent 9139a52fee
commit 650fd1a76d
@@ -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, "<span class='danger'>Your eyes burn horrifically!</span>") //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)