From 7c56785f5319c03a3a8bb23d81289266f277820e Mon Sep 17 00:00:00 2001 From: The Stranjer <791672+TheStranjer@users.noreply.github.com> Date: Wed, 12 Jun 2019 08:31:23 -0400 Subject: [PATCH] Add Counterfeit (Matter 2) by NEETzsche --- spells.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/spells.rb b/spells.rb index a8d8a7c..5ffd470 100644 --- a/spells.rb +++ b/spells.rb @@ -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 }