From f7cf1945be6b6e8f1a3bf1e9f5b4b88fd6f48e9b Mon Sep 17 00:00:00 2001 From: The Stranjer <791672+TheStranjer@users.noreply.github.com> Date: Tue, 1 Oct 2019 17:28:19 -0400 Subject: [PATCH] Split and Sequence (Matter 2) by Altasaire --- spells.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/spells.rb b/spells.rb index a2d4f31..e15edf2 100644 --- a/spells.rb +++ b/spells.rb @@ -1265,6 +1265,21 @@ class Spell :rules_text => "An Adept of Space can create an ever-shifting location, one that cannot be exited by conventional means. The Labyrinth Environmental Tilt is applied to the area of the spell, which is usually a single building, dungeons, or place. Mundane efforts to escape automatically fail, while supernatural ones provoke a Clash of Wills." ) + + spells << Spell.new( + :name => "Split and Sequence", + :matter => 2, + :practice => "Ruling", + :primary_factor => "Potency", + :suggested_rote_skills => ["Crafts", "Science", "Intimidation"], + :withstand => "Durability", + :authors => ["Altasire"], + :rules_text => "At the fundament of any non-living object there is an interplay of Matter-principles, mixed like paint on the canvas of reality. But sometimes one needs to clean the canvas up and put the paints back into their respective bottles.\nThis spell takes an object and squeezes it into its constituent chemical components. It does not break down complex compounds, but provides mechanical separation by kind: so, a car would be reduced to blocks of iron, carbon, copper, and various kinds of plastic and trace metals.", + :reaches => [ + [1, "The caster can specify which alloys they do not wish to separate, and in what manner (letting them keep steel in a single block -- or several blocks based on mark of the steel in question -- in the example above, for instance)."] + ] + ) + # TESTS duplicate_spells = spells.group_by(&:name).select {| k, v| v.length > 1 }