diff --git a/spells.rb b/spells.rb index 588764c..d0d8571 100644 --- a/spells.rb +++ b/spells.rb @@ -92,7 +92,8 @@ class Spell :authors => ["Altasaire", "NEETzsche"], :rules_text => "Making the silicon heart dance to the tune of the divine fire within, the Mage invigorates the calculating power of a given device. Mechanically, this is represented as improving the equipment bonus of the device by one per Potency.", :reaches => [ - [1, "The Mage also expands the RAM or cache memory, giving it the 9-Again property in addition to its equipment bonus."] + [1, "The Mage also expands the RAM or cache memory, giving it the 9-Again property in addition to its equipment bonus."], + [2, "The spell can affect quantum computers and other calculating things of deviant science and hypertech."] ] ) @@ -1045,6 +1046,18 @@ class Spell ) + spells << Spell.new( + :name => "Unerring Delivery/Message in A Bottle", + :fate => 2, + :space => 1, + :practice => "Ruling", + :primary_factor => "Duration", + :suggested_rote_skills => ["Persuasion", "Science", "Survival"], + :authors => ["Dark Archon"], + :rules_text => "Sometimes a willworker needs just to make sure that a certain object meets no obstacles on it’s way to its destination. Even an Apprentice of Fate may bless the chosen object in this way, with a little knowledge of Space added. This spell requires a sympathetic connection and \"links\" the target of spell with it. If the target is sent to a person, it will automatically bypass all mundane options for the Duration of the spell. Supernatural attempts to prevent the meeting provoke a Clash of Wills. If Unerring Delivery is cast on a person, then that person gains Potency to all attempts to find the \"linked\" object/person." + ) + + # TESTS duplicate_spells = spells.group_by(&:name).select {| k, v| v.length > 1 }