update new data

merge-requests/1/head
James Miller 2019-08-02 22:01:17 -05:00
parent 1cfccaa183
commit 071fe63f5e
5 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,8 @@
-- -*- mode:sql sql-product:sqlite -*-
/* Decide on format of flavor text; probably markdown? */
INSERT INTO ancestries (ancestry_id, short_name, flavor_text, hp, size_id,
boosts, flaws, vision_id)
VALUES
(1, 'Dwarf', 'TODO', 10, );

15
data/heritages.sql 100644
View File

@ -0,0 +1,15 @@
-- -*- mode:sql sql-product:sqlite -*-
/* TODO figure out how to model the reaction with heritages */
/* TODO fill in the rest of the heritages */
INSERT INTO heritages (heritage_id,
short_name,
description)
VALUES
(1, 'Ancient-Blooded Dwarf', 'Dwarven heroes of old could shrug off their enemies'' magic, and some of the resistance manifests in you. You gain the Call on Ancient Blood reaction.'),
(2, 'Death Warden Dwarf', 'TODO'),
(3, 'Forge Dwarf', 'TODO'),
(4, 'Rock Dwarf', 'TODO'),
(5, 'Strong-Blooded Dwarf', 'TODO');

7
data/sizes.sql 100644
View File

@ -0,0 +1,7 @@
INSERT INTO sizes (size_id, short_name) VALUES
(1, 'Tiny'),
(2, 'Small'),
(3, 'Medium'),
(4, 'Large'),
(5, 'Huge'),
(6, 'Gargantuan');

View File

@ -1,3 +1,4 @@
-- -*- mode:sql sql-product:sqlite -*-
/* TODO Fill in all the other traits from here: https://2e.aonprd.com/Traits.aspx */

11
data/visions.sql 100644
View File

@ -0,0 +1,11 @@
-- -*- mode:sql sql-product:sqlite -*-
/* TODO add in any different vision types from Bestiary / Monsters */
INSERT INTO visions (vision_id,
short_name,
description)
VALUES
(1, 'Darkvision', 'You can see in darkness and dim light just as well as you can see in bright light, though your vision in darkness is in black and white.'),
(2, 'Low-Light Vision', 'TODO'),
(3, 'Keen Eyes', 'TODO');