add back in ancestries_heritages

merge-requests/13/head
James Miller 2019-08-06 12:10:19 -05:00
parent 228edcb546
commit f3ccc8683d
1 changed files with 38 additions and 4 deletions

View File

@ -62,15 +62,49 @@ VALUES
(503, 'Versatile Heritage', 'Humanitys versatility and ambition have fueled its ascendance to be the most common ancestry in most nations throughout the world. Select a general feat of your choice for which you meet the prerequisites (as with your ancestry feat, you can select this general feat at any point during character creation).', 0, 0);
INSERT INTO ancestries_heritages
(ancestry_id, heritage_id)
INSERT INTO ancestries_heritages (ancestry_id, heritage_id)
VALUES
-- Dwarf
(1, 1),
(1, 2),
(1, 3),
(1, 4),
(1, 5);
(1, 5),
-- Elf
(2, 100),
(2, 101),
(2, 102),
(2, 103),
(2, 104),
-- Gnome
(3, 200),
(3, 201),
(3, 202),
(3, 203),
(3, 204),
-- Goblin
(4, 300),
(4, 301),
(4, 302),
(4, 303),
(4, 304),
-- Halfling
(5, 400),
(5, 401),
(5, 402),
(5, 403),
(5, 404),
-- Human
(6, 500),
(6, 501),
(6, 502),
(6, 503),
(6, 504),
-- Half-elf and half orc (yes, we know they're technically only a heritage,
-- but we link it up to ancestry ids too)
(7, 500),
(8, 501);
/* TODO this table is likely not needed anymore; AND TODO the trait_ids likely don't match anymore. */