Living Drone / Eye In The Sky

This commit is contained in:
The Stranjer 2019-06-11 16:56:40 -04:00
parent 81f79d0822
commit c98d1e0b19

View File

@ -1027,6 +1027,24 @@ class Spell
)
spells << Spell.new(
:name => "Living Drone / Eye In The Sky",
:life => 2,
:space => 2,
:practice => "Ruling",
:primary_factor => "Duration",
:suggested_rote_skills => ["Empathy", "Animal Ken", "Investigation"],
:authors => ["benisbagina"],
:rules_text => "This spell allows the caster not only to assume direct control of a lesser life-form, but also to see through its eyes, in the manner of modern drones. While piloting the target, the mage loses all Defense and may not take any actions or cast further spells. Casting this spell on multiple targets forces mage to perceive through multiple eyes simultaneously, causing confusion and inability to process sensory input without One Mind, Two Thoughts or analogue.",
:reaches => [
[1, "the mage remains aware of her surroundings, and does not lose Defense."],
[1, "the mage is able to \"switch\" between his targets and perceive through their eyes normally one-by-one."],
[1, "the mage may receive all senses of the living being he operates."]
]
)
# TESTS
duplicate_spells = spells.group_by(&:name).select {| k, v| v.length > 1 }