2019-08-06 17:07:29 -04:00
|
|
|
-- -*- mode:sql sql-product:sqlite -*-
|
|
|
|
|
|
|
|
INSERT INTO langsrarity (rarirty_id, rarity_name)
|
|
|
|
VALUES
|
|
|
|
(1, 'Common'),
|
|
|
|
(2, 'Uncommon'),
|
|
|
|
(3, 'Secret');
|
|
|
|
|
|
|
|
|
|
|
|
-- TODO These values are from Tables 2-1, 2-2, and 2-3 on page 65 CRB
|
|
|
|
|
|
|
|
INSERT INTO langs (lang_id, rarity_id, lang, speakers)
|
|
|
|
VALUES
|
|
|
|
-- Common languages
|
|
|
|
(1, 1, 'Common', 'Humans, dwarves, elves, halflings, and other common ancestries'),
|
|
|
|
(2, 1, 'Draconic', 'TODO'),
|
|
|
|
(3, 1, 'Dwarven', 'TODO'),
|
2019-08-06 18:16:09 -04:00
|
|
|
(4, 1, 'Elven', 'Elves, half-elves'),
|
|
|
|
(5, 1, 'Gnomish', 'Gnomes'),
|
2019-08-06 17:07:29 -04:00
|
|
|
(6, 1, 'Goblin', 'TODO'),
|
|
|
|
(7, 1, 'Halfling', 'TODO'),
|
|
|
|
(8, 1, 'Jotun', 'TODO'),
|
|
|
|
(9, 1, 'Orcish', 'TODO'),
|
|
|
|
(10, 1, 'Sylvan', 'TODO'),
|
|
|
|
(11, 1, 'Undercommon', 'TODO'),
|
|
|
|
-- Uncommon languages
|
2019-08-06 18:16:09 -04:00
|
|
|
(100, 2, 'Abyssal', 'Demons'),
|
|
|
|
(101, 2, 'Aklo', 'Deros, evil fey, otherworldly monsters'),
|
|
|
|
(102, 2, 'Aquan', 'Aquatic creatures, water elemental creatures'),
|
|
|
|
(103, 2, 'Auran', 'Air elemental creatures, flying creatures'),
|
|
|
|
(104, 2, 'Celestial', 'Angels'),
|
|
|
|
(105, 2, 'Gnoll', 'Gnolls'),
|
|
|
|
(106, 2, 'Ignan', 'Fire elemental creatures'),
|
|
|
|
(107, 2, 'Infernal', 'Devils'),
|
|
|
|
(108, 2, 'Necril', 'Ghouls, intelligent undead'),
|
|
|
|
(109, 2, 'Shadowtongue', 'Nidalese, Shadow Plane creatures'),
|
|
|
|
(110, 2, 'Terran', 'Earth elemental creatures'),
|
2019-08-06 17:07:29 -04:00
|
|
|
-- Secret languages
|
|
|
|
(200, 3, 'Druidic', 'Druids');
|
|
|
|
|