From 183e47a28ef013d5c0f4813f43f5e9388efa8785 Mon Sep 17 00:00:00 2001 From: Alffd Date: Mon, 26 Nov 2018 22:01:22 -0500 Subject: [PATCH] Rework rathens --- code/datums/spells/rathens.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/datums/spells/rathens.dm b/code/datums/spells/rathens.dm index adecaff614c..b2d35ff5393 100644 --- a/code/datums/spells/rathens.dm +++ b/code/datums/spells/rathens.dm @@ -3,16 +3,15 @@ desc = "Summons a powerful shockwave around you that tears the appendix and limbs off of enemies." charge_max = 500 clothes_req = 1 - invocation = "ARSE NATH!" + invocation = "APPEN NATH!" invocation_type = "shout" max_targets = 0 range = 7 cooldown_min = 200 selection_type = "view" - action_icon_state = "superfart" + action_icon_state = "lungpunch" /obj/effect/proc_holder/spell/targeted/rathens/cast(list/targets, mob/user = usr) - playsound(get_turf(user), 'sound/goonstation/effects/superfart.ogg', 25, 1) for(var/mob/living/carbon/human/H in targets) var/datum/effect_system/smoke_spread/s = new s.set_up(5, 0, H)