Nerfs Spacecrawl (#31825)

* Nerfs Spacecrawl

* Update code/modules/antagonists/heretic/magic/space_crawl.dm

Co-authored-by: iramoye <projecteternal1@gmail.com>
Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com>

---------

Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com>
Co-authored-by: iramoye <projecteternal1@gmail.com>
This commit is contained in:
PollardTheDragon
2026-04-09 18:37:55 -04:00
committed by GitHub
parent 1d2566429c
commit f2fa355ec0
@@ -7,10 +7,8 @@
*/
/datum/spell/bloodcrawl/space_crawl
name = "Space Phase"
desc = "Allows you to phase in and out of existence while in space or glass tiles."
desc = "Allows you to phase in and out of existence while in space."
base_cooldown = 1 MINUTES
action_background_icon = 'icons/mob/actions/actions_ecult.dmi'
action_background_icon_state = "bg_heretic"
action_icon_state = "space_crawl"
@@ -23,9 +21,7 @@
/datum/spell/bloodcrawl/space_crawl/valid_target(turf/target, user)
if(isspaceturf(get_turf(user))) //qwertodo: make this work on basalt / asteroid turf, if we get a planet map
return TRUE
if(istype(get_turf(user), /turf/simulated/floor/transparent))
return TRUE
to_chat(user, SPAN_WARNING("You must stand on a space or glass turf!"))
to_chat(user, SPAN_WARNING("You must stand in space!"))
return FALSE
/datum/spell/bloodcrawl/space_crawl/rise_message(atom/A)