131 lines
5.5 KiB
SQL
131 lines
5.5 KiB
SQL
PRAGMA foreign_keys = ON; -- database requires foreign key checking to be turned
|
|
-- on PER CONNECTION
|
|
|
|
INSERT INTO staff (
|
|
staff_id,
|
|
,"name"
|
|
,"level"
|
|
,price
|
|
,bulk
|
|
,usage
|
|
,activate
|
|
,activate_effect
|
|
,craft_requirements
|
|
,source_id
|
|
,source_pages
|
|
,"description"
|
|
)
|
|
VALUES
|
|
-- Animal Staff --
|
|
(1, 'Animal Staff', 4, 90, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 592, "This staff is topped with carved animal and monster heads. While wielding the staff, you gain a +2 circumstance bonus to Nature checks to identify animals." -- Assuming the bug is a missing activate and effect line since it is not present --
|
|
)
|
|
,(2, 'Animal Staff (Greater)', 8, 460, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 592, "This staff is topped with carved animal and monster heads. While wielding the staff, you gain a +2 circumstance bonus to Nature checks to identify animals." -- Assuming the bug is a missing activate and effect line since it is not present --
|
|
)
|
|
,(3, 'Animal Staff (Major)', 12, 900, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 592, "This staff is topped with carved animal and monster heads. While wielding the staff, you gain a +2 circumstance bonus to Nature checks to identify animals." -- Assuming the bug is a missing activate and effect line since it is not present --
|
|
)
|
|
-- Mentalist's Staff --
|
|
,(4, "Mentalist's Staff", 4, 230, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 593, "This polished wooden staff bears a swirling motif reminiscent of the folds of a brain. While wielding the staff, you gain a +2 circumstance bonus to checks to identify mental magic."
|
|
)
|
|
,(5, "Mentalist's Staff (Greater)", 8, 900, 1, 'held in one hand', 'Cast a spell', "You expend a number of charges from the staff to cast a spell from its list.", "Supply one casting of all listed levels of all listed spells.", 1, 593, "This polished wooden staff bears a swirling motif reminiscent of the folds of a brain. While wielding the staff, you gain a +2 circumstance bonus to checks to identify mental magic."
|
|
)
|
|
,(6, "Mentalist's Staff (Major)", 12, 4000, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 593, "This polished wooden staff bears a swirling motif reminiscent of the folds of a brain. While wielding the staff, you gain a +2 circumstance bonus to checks to identify mental magic."
|
|
)
|
|
-- Staff of Abjuration --
|
|
,(7, "Staff of Abjuration", 6, 230, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 594, "This intricately carved wooden staff is warm to the touch and thrums with inner energy. While wielding the staff, you gain a +2 circumstance bonus to checks to identify abjuration magic."
|
|
)
|
|
,(8, "Staff of Abjuration (Greater)", 10, 900, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 594, "This intricately carved wooden staff is warm to the touch and thrums with inner energy. While wielding the staff, you gain a +2 circumstance bonus to checks to identify abjuration magic."
|
|
)
|
|
,(9, "Staff of Abjuration (Major)", 14, 4000, 1, 'held in one hand', 'Cast a spell', 'You expend a number of charges from the staff to cast a spell from its list.', "Supply one casting of all listed levels of all listed spells.", 1, 594, "This intricately carved wooden staff is warm to the touch and thrums with inner energy. While wielding the staff, you gain a +2 circumstance bonus to checks to identify abjuration magic."
|
|
)
|
|
-- Staff of Conjuration --
|
|
INSERT INTO staff_spell (
|
|
staff_id
|
|
,"level"
|
|
,spell_id
|
|
)
|
|
VALUES
|
|
-- Anmial Staff --
|
|
(1, 0, 253)
|
|
,(1, 1, 273)
|
|
,(1, 1, 442)
|
|
-- Animal Staff (Greater) --
|
|
,(2, 0, 253)
|
|
,(2, 1, 273)
|
|
,(2, 1, 442)
|
|
,(2, 2, 19)
|
|
,(2, 2, 415)
|
|
,(2, 2, 442)
|
|
,(2, 3, 18)
|
|
,(2, 3, 442)
|
|
-- Animal Staff (Major) --
|
|
,(3, 0, 253)
|
|
,(3, 1, 273)
|
|
,(3, 1, 442)
|
|
,(3, 2, 19)
|
|
,(3, 2, 415)
|
|
,(3, 2, 442)
|
|
,(3, 3, 18)
|
|
,(3, 3, 442)
|
|
,(3, 4, 442)
|
|
,(3, 5, 18)
|
|
,(3, 5, 299)
|
|
,(3, 5, 442)
|
|
-- Mentalist's Staff --
|
|
,(4, 0, 88)
|
|
,(4, 1, 291)
|
|
,(4, 1, 322)
|
|
-- Mentalist's Staff (Greater) --
|
|
,(5, 0, 88)
|
|
,(5, 1, 291)
|
|
,(5, 1, 322)
|
|
,(5, 2, 314)
|
|
,(5, 3, 230)
|
|
,(5, 3, 322)
|
|
-- Mentalist's Staff (Major) --
|
|
,(6, 0, 88)
|
|
,(6, 1, 291)
|
|
,(6, 1, 322)
|
|
,(6, 2, 314)
|
|
,(6, 3, 230)
|
|
,(6, 3, 322)
|
|
,(6, 4, 296)
|
|
,(6, 4, 466)
|
|
,(6, 5, 322)
|
|
,(6, 5, 455)
|
|
,(6, 5, 456)
|
|
-- Staff of Abjuration --
|
|
,(7, 0, 399)
|
|
,(7, 1, 11)
|
|
,(7, 1, 167)
|
|
,(7, 2, 112)
|
|
,(7, 2, 148)
|
|
,(7, 2, 370)
|
|
-- Staff of Abjuration (Greater) --
|
|
,(8, 0, 399)
|
|
,(8, 1, 11)
|
|
,(8, 1, 167)
|
|
,(8, 2, 112)
|
|
,(8, 2, 148)
|
|
,(8, 2, 370)
|
|
,(8, 3, 11)
|
|
,(8, 3, 202)
|
|
,(8, 4, 102)
|
|
,(8, 4, 112)
|
|
,(8, 4, 370)
|
|
-- Staff of Abjuration (Major) --
|
|
,(9, 0, 399)
|
|
,(9, 1, 11)
|
|
,(9, 1, 167)
|
|
,(9, 2, 112)
|
|
,(9, 2, 148)
|
|
,(9, 2, 370)
|
|
,(9, 3, 11)
|
|
,(9, 3, 202)
|
|
,(9, 4, 102)
|
|
,(9, 4, 112)
|
|
,(9, 4, 370)
|
|
,(9, 5, 32)
|
|
,(9, 5, 148)
|
|
,(9, 6, 112)
|
|
,(9, 6, 368)
|
|
-- Staff of Conjuration -- |