pathfinder-2-sqlite-MIRROR/data/staves.sql

193 lines
2.2 KiB
MySQL
Raw Normal View History

2019-08-23 20:58:45 -04:00
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
2019-08-28 16:26:47 -04:00
-- Animal Staff --
2019-08-23 20:58:45 -04:00
(
1,
'Animal Staff',
4,
90,
1,
'held in one hand',
'cast a spell',
NULL,
NULL,
"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." -- https://2e.aonprd.com/Equipment.aspx?ID=349 -- See if they fix <%ACTIONS#197> unsure what it is --
),
(
2019-08-28 16:26:47 -04:00
2,
2019-08-23 20:58:45 -04:00
'Animal Staff (Greater)',
8,
460,
1,
'held in one hand',
'cast a spell',
NULL,
NULL,
"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." -- https://2e.aonprd.com/Equipment.aspx?ID=349 -- See if they fix <%ACTIONS#197> unsure what it is --
),
(
2019-08-28 16:26:47 -04:00
3,
2019-08-23 20:58:45 -04:00
'Animal Staff (Major)',
12,
900,
1,
'held in one hand',
'cast a spell',
NULL,
NULL,
"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." -- https://2e.aonprd.com/Equipment.aspx?ID=349 -- See if they fix <%ACTIONS#197> unsure what it is --
),
2019-08-28 16:26:47 -04:00
-- Mentalist's Staff --
(
2019-08-23 20:58:45 -04:00
2019-08-28 16:26:47 -04:00
)
2019-08-23 20:58:45 -04:00
INSERT INTO staff_spell (
staff_spell_id,
staff_id,
spell_id,
"level"
)
VALUES
-- Anmial Staff --
(
1,
2019-08-26 20:40:41 -04:00
253,
2019-08-23 20:58:45 -04:00
0
),
(
1,
2019-08-26 20:40:41 -04:00
273,
2019-08-23 20:58:45 -04:00
1
),
(
1,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
1
),
-- Animal Staff (Greater)
(
2,
2019-08-26 20:40:41 -04:00
253,
2019-08-23 20:58:45 -04:00
0
),
(
2,
2019-08-26 20:40:41 -04:00
273,
2019-08-23 20:58:45 -04:00
1
),
(
2,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
1
),
(
2,
2019-08-26 20:40:41 -04:00
19,
2019-08-23 20:58:45 -04:00
2
),
(
2,
2019-08-26 20:40:41 -04:00
415,
2019-08-23 20:58:45 -04:00
2
),
(
2,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
2
),
(
2,
2019-08-26 20:40:41 -04:00
18,
2019-08-23 20:58:45 -04:00
3
),
(
2,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
3
),
-- Animal Staff (Major)
(
3,
2019-08-26 20:40:41 -04:00
253,
2019-08-23 20:58:45 -04:00
0
),
(
3,
2019-08-26 20:40:41 -04:00
273,
2019-08-23 20:58:45 -04:00
1
),
(
3,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
1
),
(
3,
2019-08-26 20:40:41 -04:00
19,
2019-08-23 20:58:45 -04:00
2
),
(
3,
2019-08-26 20:40:41 -04:00
415,
2019-08-23 20:58:45 -04:00
2
),
(
3,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
2
),
(
3,
2019-08-26 20:40:41 -04:00
18,
2019-08-23 20:58:45 -04:00
3
),
(
3,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
3
),
(
3,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
4
),
(
3,
2019-08-26 20:40:41 -04:00
18,
2019-08-23 20:58:45 -04:00
5
),
(
3,
2019-08-26 20:40:41 -04:00
299,
2019-08-23 20:58:45 -04:00
5
)
(
3,
2019-08-26 20:40:41 -04:00
442,
2019-08-23 20:58:45 -04:00
5
)