From 5497b2cfe3e41c9dc53392493e2e98e1fbc80903 Mon Sep 17 00:00:00 2001 From: The Stranjer <791672+TheStranjer@users.noreply.github.com> Date: Mon, 10 Jun 2019 12:39:27 -0400 Subject: [PATCH] Flight --- spells.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/spells.rb b/spells.rb index 98d4ee5..daf3813 100644 --- a/spells.rb +++ b/spells.rb @@ -1013,6 +1013,20 @@ class Spell ) + spells << Spell.new( + :name => "Flight", + :forces => 2, + :practice => "Ruling", + :primary_factor => "Duration", + :suggested_rote_skills => ["Athletics", "Occult", "Drive"], + :authors => ["NEETzsche", "Altasaire"], + :rules_text => "The willworker can fly. High altitudes are likely to result in the Heavy Winds Environmental Tilt. The caster may apply his Speed in any direction, including directly upwards.\n\nAccelerating forward in the fashion of a rocket requires the use of Velocity Control (Forces •••). Once his acceleration exceeds ten miles per hour, he suffers one point of Bashing damage per turn from whiplash. He cannot exceed the speed of sound with this spell.", + :reaches => [ + [2, "The caster does not suffer damage from whiplash."] + ] + + ) + # TESTS duplicate_spells = spells.group_by(&:name).select {| k, v| v.length > 1 }