mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
28 lines
960 B
Plaintext
28 lines
960 B
Plaintext
/datum/technomancer/spell/haste
|
|
name = "Haste"
|
|
desc = "Allows the target to run at speeds that should not be possible for an ordinary being. For five seconds, the target \
|
|
runs extremly fast, and cannot be slowed by any means."
|
|
cost = 100
|
|
obj_path = /obj/item/weapon/spell/modifier/haste
|
|
ability_icon_state = "tech_haste"
|
|
category = SUPPORT_SPELLS
|
|
|
|
/obj/item/weapon/spell/modifier/haste
|
|
name = "haste"
|
|
desc = "Now you can outrun a Teshari!"
|
|
icon_state = "haste"
|
|
cast_methods = CAST_RANGED
|
|
aspect = ASPECT_FORCE
|
|
light_color = "#FF5C5C"
|
|
modifier_type = /datum/modifier/technomancer/haste
|
|
modifier_duration = 5 SECONDS
|
|
|
|
/datum/modifier/technomancer/haste
|
|
name = "haste"
|
|
desc = "Moving is almost effortless!"
|
|
mob_overlay_state = "haste"
|
|
|
|
on_created_text = "<span class='notice'>You suddenly find it much easier to move.</span>"
|
|
on_expired_text = "<span class='warning'>You feel slow again.</span>"
|
|
haste = TRUE
|
|
stacks = MODIFIER_STACK_EXTEND |