From aeef65c67ef808c5b6d1e20adf454336b8f476df Mon Sep 17 00:00:00 2001 From: James DeVore Date: Mon, 5 Aug 2019 14:48:53 -0400 Subject: [PATCH] finished anc-trait table, INCLUDING half elf and half orc --- data/ancestries.sql | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/data/ancestries.sql b/data/ancestries.sql index 5c01dc7..966f46a 100644 --- a/data/ancestries.sql +++ b/data/ancestries.sql @@ -19,17 +19,22 @@ VALUES /* TODO flesh out the ancestry-trait pairs */ +/* ancestries 7 = half elf and 8 = half orc. Not sure why they aren't in the ancestry table so I just included them - James D */ INSERT INTO ancestries_traits (ancestry_id, trait_id) VALUES - (1, 1), - (1, 9), - (2, 2), - (2, 9), - (3, 3), - (3, 9), - (4, 4), - (4, 9), - (5, 5), - (5, 9), - (6, 6), - (6, 9); +(8,91), +(8,124), +(7,58), +(7,91), +(4,81), +(4,91), +(6,90), +(6,91), +(2,58), +(2,91), +(1,54), +(1,91), +(5,87), +(5,91), +(3,80), +(3,91);