From 66ea7c5b32944e13bb498905608e8ca3e6ffa969 Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Wed, 4 Sep 2019 19:18:37 -0400 Subject: [PATCH] Spaced out sourceEntry ids more --- data/actions.sql | 64 ++++++++++++++++++++++----------------------- data/ammunition.sql | 14 +++++----- 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/data/actions.sql b/data/actions.sql index b9f8340..0b8f88a 100644 --- a/data/actions.sql +++ b/data/actions.sql @@ -102,18 +102,18 @@ INSERT INTO sourceentries ( ,page_stop ) VALUES - -- 1 to 10 is reserved for actionCategories -- + -- 1 to 99 is reserved for actionCategories -- (1, 1, 469, 469) -- Basic -- ,(2, 1, 472, 472) -- Specialty basic, Arrest a fall, Avert gaze, Burrow, Fly, Grab an edge, Mount, Point out, Raise a shield -- - -- 11 to 49 is reserved for Actions -- - ,(11, 1, 470, 470) -- Aid, Crawl, Delay, Drop prone, Escape, Interact, Leap, Ready, Release -- - ,(12, 1, 531, 531) -- Invest an item -- - ,(13, 1, 471, 471) -- Seek, Sense motive, Stand, Step, Stride, Strike, Take cover -- - ,(14, 1, 532, 532) -- Activate an item -- - ,(15, 1, 302, 302) -- Cast a spell -- - ,(16, 1, 305, 305) -- Dismiss -- - ,(17, 1, 304, 304) -- Sustain a spell -- - ,(18, 1, 534, 534) -- Sustain an activation -- + -- 100 to 199 is reserved for Actions -- + ,(100, 1, 470, 470) -- Aid, Crawl, Delay, Drop prone, Escape, Interact, Leap, Ready, Release -- + ,(101, 1, 531, 531) -- Invest an item -- + ,(102, 1, 471, 471) -- Seek, Sense motive, Stand, Step, Stride, Strike, Take cover -- + ,(103, 1, 532, 532) -- Activate an item -- + ,(104, 1, 302, 302) -- Cast a spell -- + ,(105, 1, 305, 305) -- Dismiss -- + ,(106, 1, 304, 304) -- Sustain a spell -- + ,(107, 1, 534, 534) -- Sustain an activation -- ; INSERT INTO actioncategories_sourceentries ( @@ -133,35 +133,35 @@ INSERT INTO actions_sourceentries ( ) VALUES -- Basic actions from the CRB -- - (1, 1, 11) -- Aid -- - ,(2, 2, 11) -- Crawl -- - ,(3, 3, 11) -- Delay -- - ,(4, 4, 11) -- Drop Prone -- - ,(5, 5, 11) -- Escape -- - ,(6, 6, 11) -- Interact -- - ,(7, 7, 12) -- Invest an item -- - ,(8, 8, 11) -- Leap -- - ,(9, 9, 11) -- Ready -- - ,(10, 10, 11) -- Release -- - ,(11, 11, 13) -- Seek -- - ,(12, 12, 13) -- Sense motive -- - ,(13, 13, 13) -- Stand -- - ,(14, 14, 13) -- Step -- - ,(15, 15, 13) -- Stride -- - ,(16, 16, 13) -- Strike -- - ,(17, 17, 13) -- Take cover -- + (1, 1, 100) -- Aid -- + ,(2, 2, 100) -- Crawl -- + ,(3, 3, 100) -- Delay -- + ,(4, 4, 100) -- Drop Prone -- + ,(5, 5, 100) -- Escape -- + ,(6, 6, 100) -- Interact -- + ,(7, 7, 101) -- Invest an item -- + ,(8, 8, 100) -- Leap -- + ,(9, 9, 100) -- Ready -- + ,(10, 10, 100) -- Release -- + ,(11, 11, 102) -- Seek -- + ,(12, 12, 102) -- Sense motive -- + ,(13, 13, 102) -- Stand -- + ,(14, 14, 102) -- Step -- + ,(15, 15, 102) -- Stride -- + ,(16, 16, 102) -- Strike -- + ,(17, 17, 102) -- Take cover -- -- Specialty basic actions from CRB -- - ,(18, 18, 14) -- Activate an item -- + ,(18, 18, 103) -- Activate an item -- ,(19, 19, 2) -- Arrest a fall -- ,(20, 20, 2) -- Avert gaze -- ,(21, 21, 2) -- Burrow -- - ,(22, 22, 15) -- Cast a spell -- - ,(23, 23, 16) -- Dismiss -- + ,(22, 22, 104) -- Cast a spell -- + ,(23, 23, 105) -- Dismiss -- ,(24, 24, 2) -- Fly -- ,(25, 25, 2) -- Grab an edge -- ,(26, 26, 2) -- Mount -- ,(27, 27, 2) -- Point out -- ,(28, 28, 2) -- Raise a shield -- - ,(29, 29, 17) -- Sustain a spell -- - ,(30, 30, 18) -- Sustain an activation -- + ,(29, 29, 106) -- Sustain a spell -- + ,(30, 30, 107) -- Sustain an activation -- ; diff --git a/data/ammunition.sql b/data/ammunition.sql index 9ba5d54..4feafc2 100644 --- a/data/ammunition.sql +++ b/data/ammunition.sql @@ -17,9 +17,9 @@ INSERT INTO sourceentries ( ,page_stop ) VALUES - -- 50 to 99 is reserved for ammunition -- - (50, 1, 282, 282) -- Arrows -- - (51, 1, 281, 281) -- Blowgun darts, Bolts, Sling bullets -- + -- 200 to 299 is reserved for ammunition -- + (200, 1, 282, 282) -- Arrows -- + (201, 1, 281, 281) -- Blowgun darts, Bolts, Sling bullets -- ; INSERT INTO ammunition_sourceentries ( @@ -28,9 +28,9 @@ INSERT INTO ammunition_sourceentries ( ,sourceentry_id ) VALUES - (1, 1, 50) -- Arrows -- - (2, 2, 51) -- Blowgun darts -- - (3, 3, 51) -- Bolts -- - (4, 4, 51) -- Sling bullets -- + (1, 1, 200) -- Arrows -- + (2, 2, 201) -- Blowgun darts -- + (3, 3, 201) -- Bolts -- + (4, 4, 201) -- Sling bullets -- ; COMMIT;