Improve insert readability
parent
6bd3652ebf
commit
2e5b1dfcaf
|
@ -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, you’ll 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, you’ll 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.');
|
||||||
|
|
Loading…
Reference in New Issue