diff --git a/spells.rb b/spells.rb index daf3813..588764c 100644 --- a/spells.rb +++ b/spells.rb @@ -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 }