Browse Source

Add Counterfeit (Matter 2) by NEETzsche

master
The Stranjer 4 years ago
parent
commit
7c56785f53
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      spells.rb

+ 14
- 0
spells.rb View File

@@ -1105,6 +1105,20 @@ class Spell
]
)

spells << Spell.new(
:name => "Counterfeit",
:matter => 2,
:practice => "Veiling",
:primary_factor => "Duration",
:suggested_rote_skills => ["Larceny", "Subterfuge", "Crafts"],
:authors => ["NEETzsche"],
:rules_text => "The mage makes a fake item appear real. It does not matter how fake the item naturally appears. For example, he could take a small piece of paper of roughly the right size of a monetary note and write \"100 USD\" on it, and casting this spell on it will make it appear completely real. He could also use this spell to convince people that his toy water gun is a real assault rifle. Mundane efforts to detect this as a counterfeit automatically fail while supernatural efforts provoke a Clash of Wills.",
:adds => [
{ :arcana => { :fate => 2}, :effect => "The item appears to be cursed or blessed. The willworker can specify the boons, hexes, and other such effects it has."},
{ :arcana => { :prime => 2}, :effect => "He can make the item appear to be touched by the Supernal, such as Imbued Item, or even of Supernal origin outright, as in an Artifact."},
{ :arcana => { :spirit => 2}, :effect => "He can make the item appear to be unduly influenced spiritually. It might appear possessed or as a Fetish."} ]
)

# TESTS

duplicate_spells = spells.group_by(&:name).select {| k, v| v.length > 1 }


Loading…
Cancel
Save