From 40a1c23c8c5b75aae57bca61867db9679c45bb95 Mon Sep 17 00:00:00 2001
From: James Miller <james.ryland.miller@gmail.com>
Date: Thu, 8 Aug 2019 17:33:31 -0500
Subject: [PATCH] fix typos in data/spells.sql

---
 data/spells.sql | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/data/spells.sql b/data/spells.sql
index a90585e..513f98d 100644
--- a/data/spells.sql
+++ b/data/spells.sql
@@ -1,9 +1,13 @@
+
 INSERT INTO spelltypes (
+  spelltypes_id,
+  name
+)
+VALUES
   (1, 'Spell'),
   (2, 'Cantrip'),
   (3, 'Focus'),
-  (3, 'Ritual')
-);
+  (4, 'Ritual');
 
 INSERT INTO spellcomponents (
   spellcomponents_id,
@@ -41,4 +45,4 @@ VALUES
   (5, 1, '298','Evocation', 'TODO'),
   (6, 1, '298','Illusion', '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.');