mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-05 22:43:46 +00:00
19 lines
716 B
Plaintext
19 lines
716 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"
|
|
quality = POSITIVE
|
|
get_chance = 20
|
|
lowest_value = 256 * 12
|
|
text_gain_indication = "<span class='notice'>You feel smarter!</span>"
|
|
limb_req = BODY_ZONE_HEAD
|
|
|
|
/datum/mutation/human/telekinesis/New()
|
|
..()
|
|
visual_indicators |= mutable_appearance('icons/effects/genetics.dmi', "telekinesishead", -MUTATIONS_LAYER)
|
|
|
|
/datum/mutation/human/telekinesis/get_visual_indicator(mob/living/carbon/human/owner)
|
|
return visual_indicators[1]
|
|
|
|
/datum/mutation/human/telekinesis/on_ranged_attack(mob/living/carbon/human/owner, atom/target)
|
|
target.attack_tk(owner)
|