From 071fe63f5e74a5b4bc04d4f3ad81cbfdcb334cbc Mon Sep 17 00:00:00 2001 From: James Miller Date: Fri, 2 Aug 2019 22:01:17 -0500 Subject: [PATCH] update new data --- data/ancestries.sql | 8 ++++++++ data/heritages.sql | 15 +++++++++++++++ data/sizes.sql | 7 +++++++ data/traits.sql | 1 + data/visions.sql | 11 +++++++++++ 5 files changed, 42 insertions(+) create mode 100644 data/ancestries.sql create mode 100644 data/heritages.sql create mode 100644 data/sizes.sql create mode 100644 data/visions.sql diff --git a/data/ancestries.sql b/data/ancestries.sql new file mode 100644 index 0000000..af43904 --- /dev/null +++ b/data/ancestries.sql @@ -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, ); diff --git a/data/heritages.sql b/data/heritages.sql new file mode 100644 index 0000000..a365aef --- /dev/null +++ b/data/heritages.sql @@ -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'); diff --git a/data/sizes.sql b/data/sizes.sql new file mode 100644 index 0000000..b89dcf4 --- /dev/null +++ b/data/sizes.sql @@ -0,0 +1,7 @@ +INSERT INTO sizes (size_id, short_name) VALUES + (1, 'Tiny'), + (2, 'Small'), + (3, 'Medium'), + (4, 'Large'), + (5, 'Huge'), + (6, 'Gargantuan'); diff --git a/data/traits.sql b/data/traits.sql index c8c6003..e90b358 100644 --- a/data/traits.sql +++ b/data/traits.sql @@ -1,3 +1,4 @@ +-- -*- mode:sql sql-product:sqlite -*- /* TODO Fill in all the other traits from here: https://2e.aonprd.com/Traits.aspx */ diff --git a/data/visions.sql b/data/visions.sql new file mode 100644 index 0000000..fa0fed3 --- /dev/null +++ b/data/visions.sql @@ -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');