Spaced out sourceEntry ids more

source_entries
Brian Haley 2019-09-04 19:18:37 -04:00
parent d7e768641c
commit 66ea7c5b32
2 changed files with 39 additions and 39 deletions

View File

@ -102,18 +102,18 @@ INSERT INTO sourceentries (
,page_stop ,page_stop
) )
VALUES VALUES
-- 1 to 10 is reserved for actionCategories -- -- 1 to 99 is reserved for actionCategories --
(1, 1, 469, 469) -- Basic -- (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 -- ,(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 -- -- 100 to 199 is reserved for Actions --
,(11, 1, 470, 470) -- Aid, Crawl, Delay, Drop prone, Escape, Interact, Leap, Ready, Release -- ,(100, 1, 470, 470) -- Aid, Crawl, Delay, Drop prone, Escape, Interact, Leap, Ready, Release --
,(12, 1, 531, 531) -- Invest an item -- ,(101, 1, 531, 531) -- Invest an item --
,(13, 1, 471, 471) -- Seek, Sense motive, Stand, Step, Stride, Strike, Take cover -- ,(102, 1, 471, 471) -- Seek, Sense motive, Stand, Step, Stride, Strike, Take cover --
,(14, 1, 532, 532) -- Activate an item -- ,(103, 1, 532, 532) -- Activate an item --
,(15, 1, 302, 302) -- Cast a spell -- ,(104, 1, 302, 302) -- Cast a spell --
,(16, 1, 305, 305) -- Dismiss -- ,(105, 1, 305, 305) -- Dismiss --
,(17, 1, 304, 304) -- Sustain a spell -- ,(106, 1, 304, 304) -- Sustain a spell --
,(18, 1, 534, 534) -- Sustain an activation -- ,(107, 1, 534, 534) -- Sustain an activation --
; ;
INSERT INTO actioncategories_sourceentries ( INSERT INTO actioncategories_sourceentries (
@ -133,35 +133,35 @@ INSERT INTO actions_sourceentries (
) )
VALUES VALUES
-- Basic actions from the CRB -- -- Basic actions from the CRB --
(1, 1, 11) -- Aid -- (1, 1, 100) -- Aid --
,(2, 2, 11) -- Crawl -- ,(2, 2, 100) -- Crawl --
,(3, 3, 11) -- Delay -- ,(3, 3, 100) -- Delay --
,(4, 4, 11) -- Drop Prone -- ,(4, 4, 100) -- Drop Prone --
,(5, 5, 11) -- Escape -- ,(5, 5, 100) -- Escape --
,(6, 6, 11) -- Interact -- ,(6, 6, 100) -- Interact --
,(7, 7, 12) -- Invest an item -- ,(7, 7, 101) -- Invest an item --
,(8, 8, 11) -- Leap -- ,(8, 8, 100) -- Leap --
,(9, 9, 11) -- Ready -- ,(9, 9, 100) -- Ready --
,(10, 10, 11) -- Release -- ,(10, 10, 100) -- Release --
,(11, 11, 13) -- Seek -- ,(11, 11, 102) -- Seek --
,(12, 12, 13) -- Sense motive -- ,(12, 12, 102) -- Sense motive --
,(13, 13, 13) -- Stand -- ,(13, 13, 102) -- Stand --
,(14, 14, 13) -- Step -- ,(14, 14, 102) -- Step --
,(15, 15, 13) -- Stride -- ,(15, 15, 102) -- Stride --
,(16, 16, 13) -- Strike -- ,(16, 16, 102) -- Strike --
,(17, 17, 13) -- Take cover -- ,(17, 17, 102) -- Take cover --
-- Specialty basic actions from CRB -- -- Specialty basic actions from CRB --
,(18, 18, 14) -- Activate an item -- ,(18, 18, 103) -- Activate an item --
,(19, 19, 2) -- Arrest a fall -- ,(19, 19, 2) -- Arrest a fall --
,(20, 20, 2) -- Avert gaze -- ,(20, 20, 2) -- Avert gaze --
,(21, 21, 2) -- Burrow -- ,(21, 21, 2) -- Burrow --
,(22, 22, 15) -- Cast a spell -- ,(22, 22, 104) -- Cast a spell --
,(23, 23, 16) -- Dismiss -- ,(23, 23, 105) -- Dismiss --
,(24, 24, 2) -- Fly -- ,(24, 24, 2) -- Fly --
,(25, 25, 2) -- Grab an edge -- ,(25, 25, 2) -- Grab an edge --
,(26, 26, 2) -- Mount -- ,(26, 26, 2) -- Mount --
,(27, 27, 2) -- Point out -- ,(27, 27, 2) -- Point out --
,(28, 28, 2) -- Raise a shield -- ,(28, 28, 2) -- Raise a shield --
,(29, 29, 17) -- Sustain a spell -- ,(29, 29, 106) -- Sustain a spell --
,(30, 30, 18) -- Sustain an activation -- ,(30, 30, 107) -- Sustain an activation --
; ;

View File

@ -17,9 +17,9 @@ INSERT INTO sourceentries (
,page_stop ,page_stop
) )
VALUES VALUES
-- 50 to 99 is reserved for ammunition -- -- 200 to 299 is reserved for ammunition --
(50, 1, 282, 282) -- Arrows -- (200, 1, 282, 282) -- Arrows --
(51, 1, 281, 281) -- Blowgun darts, Bolts, Sling bullets -- (201, 1, 281, 281) -- Blowgun darts, Bolts, Sling bullets --
; ;
INSERT INTO ammunition_sourceentries ( INSERT INTO ammunition_sourceentries (
@ -28,9 +28,9 @@ INSERT INTO ammunition_sourceentries (
,sourceentry_id ,sourceentry_id
) )
VALUES VALUES
(1, 1, 50) -- Arrows -- (1, 1, 200) -- Arrows --
(2, 2, 51) -- Blowgun darts -- (2, 2, 201) -- Blowgun darts --
(3, 3, 51) -- Bolts -- (3, 3, 201) -- Bolts --
(4, 4, 51) -- Sling bullets -- (4, 4, 201) -- Sling bullets --
; ;
COMMIT; COMMIT;