Improve insert readability

source_entries
Brian Haley 2019-09-03 13:51:01 -04:00
parent 6bd3652ebf
commit 2e5b1dfcaf
1 changed files with 7 additions and 1 deletions

View File

@ -16,7 +16,13 @@ VALUES
(4, 'Free Action', 'free'), (4, 'Free Action', 'free'),
(5, 'Reaction', 'reaction'); (5, 'Reaction', 'reaction');
INSERT INTO actioncategories (actioncategories_id, sources_id, sources_pages, name, descr) INSERT INTO actioncategories (
actioncategories_id
,sources_id
,sources_pages
,name
,descr
)
VALUES VALUES
(1, 1, '469', 'Basic', 'Basic actions represent common tasks like moving around, attacking, and helping others. As such, every creature can use basic actions except in some extreme circumstances, and many of those actions are used very frequently. Most notably, youll use Interact, Step, Stride, and Strike a great deal. Many feats and other actions call upon you to use one of these basic actions or modify them to produce different effects. For example, a more complex action might let you Stride up to double your Speed instead of just up to your Speed, and a large number of activities include a Strike.'), (1, 1, '469', 'Basic', 'Basic actions represent common tasks like moving around, attacking, and helping others. As such, every creature can use basic actions except in some extreme circumstances, and many of those actions are used very frequently. Most notably, youll use Interact, Step, Stride, and Strike a great deal. Many feats and other actions call upon you to use one of these basic actions or modify them to produce different effects. For example, a more complex action might let you Stride up to double your Speed instead of just up to your Speed, and a large number of activities include a Strike.'),
(2, 1, '472', 'Specialty Basic', 'These actions are useful under specific circumstances. Some require you to have a special movement type.'); (2, 1, '472', 'Specialty Basic', 'These actions are useful under specific circumstances. Some require you to have a special movement type.');