From 2e5b1dfcaf5fa9da7dec12d8467b12c5e9a947b7 Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Tue, 3 Sep 2019 13:51:01 -0400 Subject: [PATCH] Improve insert readability --- data/actions.sql | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/data/actions.sql b/data/actions.sql index 1ab3550..ed3dec9 100644 --- a/data/actions.sql +++ b/data/actions.sql @@ -16,7 +16,13 @@ VALUES (4, 'Free Action', 'free'), (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 (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.');