2019-08-18 20:21:16 -04:00
|
|
|
-- -*- mode:sql sql-product:sqlite -*-
|
|
|
|
|
|
|
|
PRAGMA foreign_keys = ON;
|
|
|
|
|
2019-08-18 20:32:06 -04:00
|
|
|
-- TODO any other movements?
|
|
|
|
|
2019-08-18 20:21:16 -04:00
|
|
|
BEGIN TRANSACTION;
|
2019-08-18 20:32:06 -04:00
|
|
|
INSERT INTO movements VALUES(0, 'Land'); -- This is already incorporated into
|
|
|
|
-- monsters and ancestries but is
|
|
|
|
-- included here so we have the type of
|
|
|
|
-- speed
|
|
|
|
INSERT INTO movements VALUES(1, 'Burrow');
|
|
|
|
INSERT INTO movements VALUES(2, 'Climb');
|
|
|
|
INSERT INTO movements VALUES(3, 'Fly');
|
|
|
|
INSERT INTO movements VALUES(4, 'Swim');
|
2019-08-18 20:21:16 -04:00
|
|
|
COMMIT;
|