mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Steals tg's span macros * Fix alphabet * Updated some more spans * Misses a conflict * Fix compile errors * Converts more spans * oops
21 lines
861 B
Plaintext
21 lines
861 B
Plaintext
//Telekinesis lets you interact with objects from range, and gives you a light blue halo around your head.
|
|
/datum/mutation/human/telekinesis
|
|
name = "Telekinesis"
|
|
desc = "A strange mutation that allows the holder to interact with objects through thought."
|
|
quality = POSITIVE
|
|
difficulty = 18
|
|
text_gain_indication = span_notice("You feel smarter!")
|
|
limb_req = BODY_ZONE_HEAD
|
|
instability = 40
|
|
|
|
/datum/mutation/human/telekinesis/New(class_ = MUT_OTHER, timer, datum/mutation/human/copymut)
|
|
..()
|
|
if(!(type in visual_indicators))
|
|
visual_indicators[type] = list(mutable_appearance('icons/effects/genetics.dmi', "telekinesishead", -MUTATIONS_LAYER))
|
|
|
|
/datum/mutation/human/telekinesis/get_visual_indicator()
|
|
return visual_indicators[type][1]
|
|
|
|
/datum/mutation/human/telekinesis/on_ranged_attack(atom/target)
|
|
INVOKE_ASYNC(target, /atom.proc/attack_tk, owner)
|