Browse Source

Add the following spells and Tilts:

Spells:
* Monitor by benisbagina
* Labyrinth by NEETzsche
* Read Gauntlet by NEETzsche

Tilts:
* Labyrinth (Environmental) by NEETzsche
master
The Stranjer 4 years ago
parent
commit
930cf532e9
2 changed files with 48 additions and 0 deletions
  1. +38
    -0
      spells.rb
  2. +10
    -0
      tilts.rb

+ 38
- 0
spells.rb View File

@@ -1129,6 +1129,33 @@ class Spell
)

spells << Spell.new(
:name => "Monitor",
:life => 1,
:space => 2,
:practice => "Ruling",
:primary_factor => "Duration",
:suggested_rote_skills => ["Science", "Medicine", "Investigation"],
:authors => ["benisbagina"],
:rules_text => "This spell allows the caster to monitor a target's position and its vital signs and biological changes.\n\nFor the duration, the mage is able to perfectly locate the target and is aware of any changes in its biological, toxicological, physical and neurological state. This informs on the general nature of these factors, not on the exact specifics.",
:reaches => [
[1, "the Mage can Scry the target at will for the duration."],
[1, "the Mage is further informed about the state of the target."],
[2, "the spell creates spatial sympathy between the mage and the target, for the duration."]
]
)

spells << Spell.new(
:name => "Read Gauntlet",
:spirit => 1,
:practice => "Unveiling",
:primary_factor => "Potency",
:suggested_rote_skills => ["Occult", "Empathy", "Survival"],
:authors => ["NEETzsche"],
:rules_text => "The willworker can get a perfect read on the Gauntlet's strength in an area. She can see it first hand just how thick it is. She cannot reduce the Gauntlet's strength at this level."
)


spells << Spell.new(
:name => "Glue",
:matter => 2,
:practice => "Ruling",
@@ -1178,6 +1205,17 @@ class Spell
]
)


spells << Spell.new(
:name => "Labyrinth",
:space => 4,
:practice => "Patterning",
:primary_factor => "Duration",
:suggested_rote_skills => ["Occult", "Stealth", "Subterfuge"],
:authors => ["NEETzsche"],
: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."
)

# TESTS

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


+ 10
- 0
tilts.rb View File

@@ -13,6 +13,16 @@ class Tilt
:authors => ["NEETzsche", "Dark Archon"]
)

tilts << Tilt.new(
:name => "Labyrinth",
:rules_text => "The landscape you are in does not have a consistent physical form. This could be a particularly mercurial part of the spirit world, a booby trapped Mage's Sanctum, or any other place where making a map on paper simply won't cut it.",
:effect => "It is impossible to leave the labyrinth by mundane means. Either the effect causing this environmental Tilt must expire, or some other supernatural ability allowing one to leave must take effect, and win a Clash of Wills. All mundane attempts to leave the labyrinth automatically fail. The same applies to attempts to use the environment to any kind of tactical advantage, such as finding cover or hiding in closets; the labyrinth's form is too capricious to entertain such static or simple methods of environmental manipulation.",
:causing => "Some supernatural abilities can cause this Tilt. Other places have this Tilt persistently, such as in Pandemonium.",
:ending => "The Gift, spell, Discipline, or ability expires. The labyrinthine place is destroyed. A supernatural ability that allows one command over the environment can partially end the Tilt by vetoing that element of it with a Clash of Wills.",
:environmental => true,
:authors => ["NEETzsche"]
)

return tilts
end
end

Loading…
Cancel
Save