12 lines
441 B
SQL
12 lines
441 B
SQL
-- -*- mode:sql sql-product:sqlite -*-
|
|
|
|
/* TODO add in any different vision types from Bestiary / Monsters */
|
|
|
|
INSERT INTO visions (vision_id,
|
|
short_name,
|
|
description)
|
|
VALUES
|
|
(1, 'Darkvision', 'You can see in darkness and dim light just as well as you can see in bright light, though your vision in darkness is in black and white.'),
|
|
(2, 'Low-Light Vision', 'TODO'),
|
|
(3, 'Keen Eyes', 'TODO');
|