2019-08-02 23:01:17 -04:00
|
|
|
-- -*- mode:sql sql-product:sqlite -*-
|
|
|
|
|
|
|
|
/* Decide on format of flavor text; probably markdown? */
|
|
|
|
|
2019-08-02 23:14:58 -04:00
|
|
|
/* Decide on whether to break out the flavor text to another table? */
|
|
|
|
|
2019-08-02 23:32:03 -04:00
|
|
|
/* Probably need to model Half-Elf and Half-Orc as a whole separate
|
|
|
|
ancestry? NO. They are separate heritages, not separate ancestries. */
|
2019-08-02 23:14:58 -04:00
|
|
|
|
|
|
|
INSERT INTO ancestries (ancestry_id, short_name, flavor_text, hp, size_id, speed,
|
2019-08-02 23:01:17 -04:00
|
|
|
boosts, flaws, vision_id)
|
|
|
|
VALUES
|
2019-08-02 23:14:58 -04:00
|
|
|
(1, 'Dwarf', 'TODO', 10, 3, 20, 84, 32, 1),
|
|
|
|
(2, 'Elf', 'TODO', 6, 3, 30, 74, 4, 2),
|
|
|
|
(3, 'Gnome', 'TODO', 8, 2, 25, 100, 1, 2),
|
|
|
|
(4, 'Goblin', 'TODO', 6, 2, 25, 98, 16, 1),
|
|
|
|
(5, 'Halfling', 'TODO', 6, 2, 25, 82, 1, 3),
|
2019-08-02 23:32:03 -04:00
|
|
|
(6, 'Human', 'TODO', 8, 3, 25, 128, 0, 4),
|
|
|
|
|
|
|
|
/* TODO flesh out the ancestry-trait pairs */
|
|
|
|
|
|
|
|
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);
|