Include a PDF field for spells

This commit is contained in:
The Stranjer 2019-07-04 09:24:54 -04:00
parent a5b20c175c
commit a099bc0fb1

View File

@ -13,7 +13,8 @@ class Spell
:reaches, :reaches,
:adds, :adds,
:rules_text, :rules_text,
:cost :cost,
:pdf
attr_accessor :authors attr_accessor :authors
@ -37,7 +38,8 @@ class Spell
rules_text:, rules_text:,
authors:, authors:,
adds: [], adds: [],
cost: nil) cost: nil,
pdf:)
@death = death @death = death
@fate = fate @fate = fate
@ -59,6 +61,7 @@ class Spell
@authors = authors @authors = authors
@adds = adds @adds = adds
@cost = cost @cost = cost
@pdf = pdf
end end
def primary_arcanum def primary_arcanum