fix issue 19: heritages

merge-requests/29/head
James Miller 2019-08-11 13:21:47 -05:00
parent bc1dc03bdb
commit dabb5146f4
2 changed files with 4 additions and 2 deletions

View File

@ -37,7 +37,7 @@ VALUES
(201, 'Fey-Touched Gnome', 'The blood of the fey is so strong within you that youre truly one of them. You gain the fey trait, in addition to the gnome and humanoid traits. Choose one cantrip from the <%SPELL.LIST%Primal%%>primal spell list. You can cast this spell as a primal innate spell at will. A cantrip is heightened to a spell level equal to half your level rounded up. You can change this cantrip to a different one from the same list once per day by meditating to realign yourself with the First World; this is a 10-minute activity that has the concentrate trait.', 0, 0),
(202, 'Sensate Gnome', 'You see all colors as brighter, hear all sounds as richer, and especially smell all scents with incredible detail. You gain a special sense: imprecise scent with a range of 30 feet. This means you can use your sense of smell to determine the exact location of a creature (as explained on page 465). The GM will usually double the range if youre downwind from the creature or halve the range if youre upwind.', 0, 0),
(204, 'Umbral Gnome', 'Whether from a connection to dark or shadowy fey, from the underground deep gnomes also known as svirfneblin, or another source, you can see in complete darkness. You gain darkvision.', 0, 0),
(204, 'Wellspring Gnome', 'Some other source of magic has a greater hold on you than the primal magic of your fey lineage does. This connection might come from an occult plane or an ancient occult song; a deity, celestial, or fiend; magical effluent left behind by a mage war; or ancient rune magic.', 0, 0),
(205, 'Wellspring Gnome', 'Some other source of magic has a greater hold on you than the primal magic of your fey lineage does. This connection might come from an occult plane or an ancient occult song; a deity, celestial, or fiend; magical effluent left behind by a mage war; or ancient rune magic.', 0, 0), -- TODO there was an error with wellspring gnome being ID 204; need to double check other data to make sure it has been accounted for elsewhere
-- Start of Goblin Heritages
(300, 'Charhide Goblin', 'Your ancestors have always had a connection to fire and a thicker skin, which allows you to resist burning. You gain fire resistance equal to half your level (minimum 1). You can also recover from being on fire more easily. Your flat check to remove persistent fire damage is DC 10 instead of DC 15, which is reduced to DC 5 if another creature uses a particularly appropriate action to help.', 0, 0),

View File

@ -46,7 +46,9 @@ etc.. */
CREATE TABLE heritages (
heritage_id INTEGER PRIMARY KEY,
short_name TEXT NOT NULL UNIQUE,
description TEXT NOT NULL
description TEXT NOT NULL,
bonus_type TEXT, -- TODO Should this be text, or should this have its own table and FK?
bonus_id INTEGER -- TODO What is this referencing from data/heritages.sql ???
);
CREATE TABLE ancestries_heritages (