Browse Source

Split and Sequence (Matter 2) by Altasaire

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

+ 15
- 0
spells.rb View File

@@ -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 => "<i>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.</i>\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 }


Loading…
Cancel
Save