Compare commits
2 Commits
4683cba41e
...
bdecfba9b3
Author | SHA1 | Date | |
---|---|---|---|
|
bdecfba9b3 | ||
|
a2c57e384b |
@ -230,7 +230,7 @@ class BookOfFaces
|
||||
{:text => spell.authors.join(', '), :font => "Goudy"},
|
||||
]
|
||||
|
||||
pdf.text spell.rules_text
|
||||
pdf.text spell.rules_text, :inline_format => true
|
||||
|
||||
spell.reaches.each do |reach|
|
||||
pdf.formatted_text [
|
||||
|
18
spells.rb
18
spells.rb
@ -986,14 +986,16 @@ class Spell
|
||||
]
|
||||
)
|
||||
|
||||
authors = {}
|
||||
spells.each do |spell|
|
||||
spell.authors.each do |author|
|
||||
authors[author] = 0 if authors[author].nil?
|
||||
|
||||
authors[author] += 1
|
||||
end
|
||||
end
|
||||
spells << Spell.new(
|
||||
:name => "Abuse Body",
|
||||
:life => 2,
|
||||
:practice => "Ruling",
|
||||
:primary_factor => "Duration",
|
||||
:withstand => "Stamina",
|
||||
:suggested_rote_skills => ["Athletics", "Medicine", "Survival"],
|
||||
:authors => ["noire"],
|
||||
:rules_text => "With this spell a mage can control her subject’s bodily functions to a degree that would make even the most inwardly-focused monks terrified. She can do far more than cause heart palpitations; she can control her subject’s instinctual body functions, cause nervous twitches, and interrupt oxygen causing hiccups. For the spell’s Duration, each level of Potency inflicts one rank in one of the following:\n<i>Hiccups & Hyperventilation:</i> Each rank raises the subject’s breathing, doubling the amount of oxygen she needs to function normally, inflicting -1 Initiative.\n<i>Heart Murmurs:</i> By tampering with the subject’s heartbeat, she can halve the interval at which hypoxia from diving or sleeping affects her. Obdormition durations also double, taking twice as long for numbness to pass.\n<i>Functional Dyspepsia:</i> Deregulating the subject’s bodily functions forces her to subsist on twice as much food, projectile vomit (-1L acid attack Stamina + Athletics), and halves the amount of time between checks for deprivation or fatigue."
|
||||
)
|
||||
|
||||
# TESTS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user