fix typos in data/spells.sql

merge-requests/29/head
James Miller 2019-08-08 17:33:31 -05:00
parent fb29ba482d
commit 40a1c23c8c
1 changed files with 7 additions and 3 deletions

View File

@ -1,9 +1,13 @@
INSERT INTO spelltypes ( INSERT INTO spelltypes (
spelltypes_id,
name
)
VALUES
(1, 'Spell'), (1, 'Spell'),
(2, 'Cantrip'), (2, 'Cantrip'),
(3, 'Focus'), (3, 'Focus'),
(3, 'Ritual') (4, 'Ritual');
);
INSERT INTO spellcomponents ( INSERT INTO spellcomponents (
spellcomponents_id, spellcomponents_id,
@ -41,4 +45,4 @@ VALUES
(5, 1, '298','Evocation', 'TODO'), (5, 1, '298','Evocation', 'TODO'),
(6, 1, '298','Illusion', 'TODO'), (6, 1, '298','Illusion', 'TODO'),
(7, 1, '298','Necromancy', 'TODO'), (7, 1, '298','Necromancy', 'TODO'),
(8, 1, '298','Transmutation', 'Transmutation spells make alterations to or transform the physical form of a creature or object. The morph and polymorph traits appear primarily in transmutation spells.'), (8, 1, '298','Transmutation', 'Transmutation spells make alterations to or transform the physical form of a creature or object. The morph and polymorph traits appear primarily in transmutation spells.');