pathfinder-2-sqlite-MIRROR/data/ammunition.sql

37 lines
1.4 KiB
MySQL
Raw Normal View History

2019-08-16 00:26:45 -04:00
-- -*- mode:sql sql-product:sqlite -*-
PRAGMA foreign_keys = ON; -- database requires foreign key checking to be turned
-- on PER CONNECTION
BEGIN TRANSACTION;
2019-09-04 18:35:29 -04:00
INSERT INTO ammunition ()
VALUES(1,'Arrows',0.1,10,0.1,'These projectiles are the ammunition for bows. The shaft of an arrow is made of wood. It is stabilized in flight by fletching at one end and bears a metal head on the other.');
INSERT INTO ammunition VALUES(2,'Blowgun Darts',0.05,10,0.1,'These thin, light darts are typically made of hardwood and stabilized with fletching of down or fur. They are often hollow so they can be used to deliver poison.');
INSERT INTO ammunition VALUES(3,'Bolts',0.1,10,0.1,'Shorter than traditional arrows but similar in construction, bolts are the ammunition used by crossbows.');
INSERT INTO ammunition VALUES(4,'Sling Bullets',0.01,10,0.1,'These are small metal balls, typically either iron or lead, designed to be used as ammunition in slings.');
INSERT INTO sourceentries (
sourceentry_id
,sources_id
,page_start
,page_stop
)
VALUES
2019-09-04 19:18:37 -04:00
-- 200 to 299 is reserved for ammunition --
(200, 1, 282, 282) -- Arrows --
(201, 1, 281, 281) -- Blowgun darts, Bolts, Sling bullets --
2019-09-04 18:35:29 -04:00
;
INSERT INTO ammunition_sourceentries (
id
,ammunition_id
,sourceentry_id
)
VALUES
2019-09-04 19:18:37 -04:00
(1, 1, 200) -- Arrows --
(2, 2, 201) -- Blowgun darts --
(3, 3, 201) -- Bolts --
(4, 4, 201) -- Sling bullets --
2019-09-04 18:35:29 -04:00
;
2019-08-16 00:26:45 -04:00
COMMIT;