Browse Source

Add spell Unerring Delivery/Message in A Bottle (Fate 2, Space 1)

Changes from original:
* minor phrasing alterations
master
The Stranjer 4 years ago
parent
commit
025a11f397
1 changed files with 14 additions and 1 deletions
  1. +14
    -1
      spells.rb

+ 14
- 1
spells.rb View File

@@ -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 }


Loading…
Cancel
Save