forked from GitHub-Mirrors/foundry-sw5e
setup new pack system
This commit is contained in:
parent
365d3d0063
commit
7293439229
4401 changed files with 982970 additions and 4393 deletions
31
gulpfile.js
31
gulpfile.js
|
@ -1,5 +1,7 @@
|
|||
const gulp = require("gulp");
|
||||
const less = require("gulp-less");
|
||||
const through = require('through2');
|
||||
const fs = require('fs');
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Constants
|
||||
|
@ -40,6 +42,31 @@ function compileDarkLess() {
|
|||
|
||||
const css = gulp.parallel(compileLESS, compileGlobalLess, compileLightLess, compileDarkLess);
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Compile packs
|
||||
/* ----------------------------------------- */
|
||||
|
||||
const SW5E_PACKS = [src + "packs/packs/**"]
|
||||
|
||||
function jsonToDB() {
|
||||
return through.obj(async (chunk, enc, cb) => {
|
||||
let result = "";
|
||||
|
||||
const files = await fs.promises.readdir(chunk.path);
|
||||
|
||||
for( const file of files ) {
|
||||
result += JSON.stringify(JSON.parse(fs.readFileSync(chunk.path + "/" + file, "utf-8"))) + "\n";
|
||||
}
|
||||
|
||||
chunk.contents = new Buffer(result);
|
||||
cb(null, chunk)
|
||||
})
|
||||
}
|
||||
|
||||
function compilePacks() {
|
||||
return gulp.src(src + "packs/packs/*").pipe(jsonToDB()).pipe(gulp.dest(dest + "packs/packs"));
|
||||
}
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Copy Files
|
||||
/* ----------------------------------------- */
|
||||
|
@ -55,7 +82,7 @@ async function copy() {
|
|||
gulp.src(src + "fonts/**").pipe(gulp.dest(dest + "fonts/"));
|
||||
gulp.src(src + "lang/**").pipe(gulp.dest(dest + "lang/"));
|
||||
gulp.src(src + "module/**").pipe(gulp.dest(dest + "module/"));
|
||||
gulp.src(src + "packs/**").pipe(gulp.dest(dest + "packs/"));
|
||||
gulp.src(src + "packs/icons/**").pipe(gulp.dest(dest + "packs/Icons"));
|
||||
gulp.src(src + "templates/**").pipe(gulp.dest(dest + "templates/"));
|
||||
gulp.src(src + "ui/**").pipe(gulp.dest(dest + "ui/"));
|
||||
resolve();
|
||||
|
@ -66,7 +93,7 @@ async function copy() {
|
|||
/* build
|
||||
/* ----------------------------------------- */
|
||||
|
||||
const build = gulp.parallel(css, copy)
|
||||
const build = gulp.parallel(css, compilePacks, copy)
|
||||
|
||||
/* ----------------------------------------- */
|
||||
/* Watch Updates
|
||||
|
|
87
package-lock.json
generated
87
package-lock.json
generated
|
@ -1025,6 +1025,17 @@
|
|||
"requires": {
|
||||
"graceful-fs": "^4.1.11",
|
||||
"through2": "^2.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"fs.realpath": {
|
||||
|
@ -1205,6 +1216,17 @@
|
|||
"replace-ext": "^1.0.0",
|
||||
"through2": "^2.0.0",
|
||||
"vinyl-sourcemaps-apply": "^0.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"gulplog": {
|
||||
|
@ -2256,6 +2278,17 @@
|
|||
"remove-bom-buffer": "^3.0.0",
|
||||
"safe-buffer": "^5.1.0",
|
||||
"through2": "^2.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"remove-trailing-separator": {
|
||||
|
@ -2690,12 +2723,23 @@
|
|||
}
|
||||
},
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"version": "4.0.2",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
|
||||
"integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
"readable-stream": "3"
|
||||
},
|
||||
"dependencies": {
|
||||
"readable-stream": {
|
||||
"version": "3.6.0",
|
||||
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
||||
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
||||
"requires": {
|
||||
"inherits": "^2.0.3",
|
||||
"string_decoder": "^1.1.1",
|
||||
"util-deprecate": "^1.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"through2-filter": {
|
||||
|
@ -2705,6 +2749,17 @@
|
|||
"requires": {
|
||||
"through2": "~2.0.0",
|
||||
"xtend": "~4.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"time-stamp": {
|
||||
|
@ -2765,6 +2820,17 @@
|
|||
"integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=",
|
||||
"requires": {
|
||||
"through2": "^2.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tslib": {
|
||||
|
@ -2986,6 +3052,17 @@
|
|||
"value-or-function": "^3.0.0",
|
||||
"vinyl": "^2.0.0",
|
||||
"vinyl-sourcemap": "^1.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"through2": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
|
||||
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
|
||||
"requires": {
|
||||
"readable-stream": "~2.3.6",
|
||||
"xtend": "~4.0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"vinyl-sourcemap": {
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"main": "sw5e.js",
|
||||
"dependencies": {
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-less": "^4.0.1"
|
||||
"gulp-less": "^4.0.1",
|
||||
"through2": "^4.0.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,114 +0,0 @@
|
|||
{"name":"Flute","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Flute.webp","_id":"0rXtxM4H9wfh4NnA"}
|
||||
{"name":"Slicer's Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>Slicers used specialized computers and scramble keys, many built by the slicers themselves, to eke out a living in the digital world. These computers were carefully guarded and constantly modified and upgraded by the slicer, who rarely discussed its specs except with like-minded individuals. Complex access codes and even self-destruct mechanisms were often used to prevent a slicer’s computer from falling into the wrong hands. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to hack into computers or bypass security.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":6,"price":800,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Slicer_s%20Kit.webp","_id":"16V3E2zNGzP77JdU"}
|
||||
{"name":"Grenade, Ion","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>Ion grenades are hand-held explosive devices that release a blast of ion energy. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 2d4 ion damage on a failed save, or half as much as on a successful one. Any electronics within the blast radius are disabled until rebooted.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":250,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":10,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d4",""]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Ion.webp","_id":"272qKqEN2znXm9Ye"}
|
||||
{"name":"Xantha","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":7,"price":170,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Xantha.webp","_id":"2pZY5Dw63wPkopPz"}
|
||||
{"_id":"4F4ppZsYeYU1N8mH","name":"Tracker utility vest","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>A utility vest is a sleeveless item of clothing that includes several evenly-distributed pockets, popular among hunters, smugglers, and adventurers. The vest is made of leathery, hide material to resist rips, corrosion and water. The wearer can carry up to 10 light items (up to 1 lb each) without increasing their total encumbrance.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":150,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":10,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]},"cptooltipmode":"hid"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Tracker%20Utility%20Vest.webp"}
|
||||
{"name":"Holocomm","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A holocomm is a communications unit that utilizes the HoloNet. It enables users to send and receive messages through holographic-based transmission networks.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Holocomm.webp","_id":"4SzhraHgsIKXoDu3"}
|
||||
{"name":"Holster","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>A holster can be worn on the leg, hip, or back, and can be used to store a single weapon. You can draw a weapon stored in a holster without using an action. Once you’ve done so, you can’t do so again until you store a weapon in the holster as an action.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":2,"price":75,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":1,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Holster.webp","_id":"59Jkji0FuhY9CnkW"}
|
||||
{"name":"Biochemist's Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>This kit includes all of the necessary components to create and house standard adrenals, medpacs, and stimpacs. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify adrenals, medpacs, and stimpacs. Also, proficiency with this kit is required to create adrenals, medpacs, and stimpacs.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":8,"price":500,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Biochemist_s%20Kit.webp","_id":"5Hm6nv1vS3fYq8rp"}
|
||||
{"_id":"5RAGllbndPdnhW64","name":"Bedroll","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":7,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"damage":{"parts":[]},"attributes":{"spelldc":10}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Bedroll.webp"}
|
||||
{"name":"Code Cylinder","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Code cylinders are security devices in the shape of short cylinders that contain coded information about their bearers and grant them access to secure areas.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Code%20Cylinder.webp","_id":"5uYoOu7FyOQ4O7BZ"}
|
||||
{"name":"Mirror","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":0.5,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Mirror.webp","_id":"6lonjxIiNOkKjBZB"}
|
||||
{"name":"Stylus Pen","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A stylus pen is designed to write on both solid surfaces and touch screen interfaces.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Stylus%20Pen.webp","_id":"8DAKXuUkVeZBF36X"}
|
||||
{"name":"Friction-grip gear","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A special set of gloves and boots that allow the wearer to stick to and climb surfaces. While wearing these items, you gain the ability to move along vertical surfaces and ceilings while leaving your hands free. You also gain a climbing speed equal your walking speed.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":12,"price":2000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Friction-grip%20Gear.webp","_id":"8sX023Ca4gIn1gbU"}
|
||||
{"name":"Camtono","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>A camtono is a secured, handle container used for transporting valuable goods. The camtono features a keyed lock, which requires a DC 20 security kit to force open. It can hold up to 5 lb., not exceeding a volume of 1/4 cubic foot.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":3,"price":750,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":5,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Camtono.webp","_id":"A6aTeaijnzz3I4xQ"}
|
||||
{"name":"Drum","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":60,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Drum.webp","_id":"A8KyyUNLReS4nJ9W"}
|
||||
{"name":"Repulsor Pack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Repulsor packs are used to slow descent from a high elevation. Activating or deactivating the repulsor pack requires a bonus action and, while active, your rate of descent slow to 60 feet per round, and you ignore the effects of wind of less than moderate speed (no more than 10 mph). The repulsor pack lasts for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":10,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Repolsor%20Pack.webp","_id":"Ao4Ab7SAkw10TAZq"}
|
||||
{"name":"Datapad","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A datapad is a small electronic device used for the input, storage and displaying of inform-ation. It features a holoprojective surface for 3D viewing.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datapad.webp","_id":"At8RCEDvMZ94O6QC"}
|
||||
{"name":"Shovel","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":5,"price":7,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Shovel.webp","_id":"BTIEhM7xeRYI0U8M"}
|
||||
{"name":"Bandfill","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Bandfill.webp","_id":"CTKBssCmPYPIjOBP"}
|
||||
{"name":"Basic Poison","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>As an action, you can use the poison in this vial to coat one vibroweapon, one slug cartridge, or one wrist launcher dart. A creature hit by the poisoned weapon must make a DC 13 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":125,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"object"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d4","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"poison","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Basic%20Poison.webp","_id":"DjhVaMp7y9kv8huC"}
|
||||
{"name":"Glowrod","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Glowrods create a beam of light illuminating the area around you in bright light for a 20-foot radius and dim light for an additional 20 feet. The glowrod lasts for 10 hours and can be recharged by connecting to a power source or by replacing the power cell.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":2,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"autoDestroy":true,"autoUse":true},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"rod","attributes":{"spelldc":10}},"flags":{"favtab":{"isFavourite":true},"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Utility/Glowrod.webp","_id":"DtQyQTRBjeJ9KtOq"}
|
||||
{"name":"Respirator","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A respirator, or breath mask, is a portable device that allowed an oxygen-breather to survive in low-oxygen atmospheres. Although not suitable for use in outer-space, these hands-free masks were essential equipment for deep-space travel that might require activity outside of a starship.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":200,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Life%20Support/Respirator.webp","_id":"EDuNz0jxDB750uB1"}
|
||||
{"name":"Datacard","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A datacard or data disk is a flat, hand-held device used in conjunction with a datapad to store information.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0,"price":5,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacard.webp","_id":"EUATVxP9x6mPT8x6"}
|
||||
{"name":"Stealth field generator","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Stealth field generators are special devices typically worn on belts that function as a portable, personal cloaking device. Activating or deactivating the generator requires a bonus action and, while active, you have advantage on Dexterity (Stealth) ability checks that rely on sight. The generator lasts for 1 minute and can be recharged by a power source or replacing the power cell. This effect ends early if you make an attack or cast a force- or tech- power.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":8000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Stealth%20Field%20Generator.webp","_id":"Exm15q29p3U8Gg33"}
|
||||
{"name":"Restraining Bolt","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.</p>\n<p>Installing a restraining bolt takes 1 minute. The droid must make a DC 13 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":350,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Restraining%20Bolt.webp","_id":"F6Df6KevuW0rTE7K"}
|
||||
{"name":"Chronometer","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A chronometer is a device that measures and keeps linear time.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Chronometer.webp","_id":"FxuQ56TR8mhY6RiB"}
|
||||
{"name":"Karrak","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>A powerful painkiller, karrak allows creatures to continue through the most grievous injuries. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check or saving throw using Constitution, and at the start of each of the creature’s turns it gains 2d4 temporary hit points. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check or saving throw using Contitution, and for the duration their current and maximum hit points are reduced by 2d4. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":90,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"Add to ability check or saving throw using Constitution.","critical":null,"damage":{"parts":[["2d4 ","temphp"]],"versatile":""},"formula":"d4","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Karrak.webp","_id":"GHtBwdTRCHIpi8sz"}
|
||||
{"name":"Lute","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":350,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Lute.webp","_id":"HDCRyHCl9BoJU8dj"}
|
||||
{"name":"Repair Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>A repair kit included the basic tools needed to repair a droid after being damaged in combat. The kit has three uses. As an action, you can expend one use of the kit to restore 2d4+2 hit points to a droid or construct within 5 feet.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":750,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":"inst"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":3,"max":3,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d4 +2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Repair%20Kit.webp","_id":"HOQqmAhZvaKBPoXM"}
|
||||
{"name":"Ommni Box","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":10,"price":250,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Omnibox.webp","_id":"I7meEgjaaG2fzHtX"}
|
||||
{"name":"Datacron","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the infor-mation.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":1000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp","_id":"IN4aom0cLi0kmpsD"}
|
||||
{"name":"Mandoviol","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":425,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Mandoviol.webp","_id":"IkEwux444DkKp4QJ"}
|
||||
{"name":"Medpac","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>A medpac is a quick-acting syringe filled with a concentrated dose of kolto. As an action, you can use this medpac to restore 2d4+2 hit points to a creature within 5 feet.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d4 + 2","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Medpac.webp","_id":"Ipew2cMqiiKVSAgW"}
|
||||
{"name":"Pocket Scrambler","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A pocket scrambler is a simple add-on to any commlink that automatically encodes any messages sent out. The transmitted message can only be read by a device equipped with a matched scrambler.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":800,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Pocket%20Scrambler.webp","_id":"J13oK71qmUiWYym8"}
|
||||
{"name":"Giggledust","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>This sandy-brown powder causes everything to appear slightly humorous while enhancing a creature’s nimbleness. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Dexterity. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Dexterity. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":80,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Add to ability check, attack roll, or saving throw using Dexterity.","critical":null,"damage":{"parts":[],"versatile":""},"formula":"d4","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Giggledust.webp","_id":"J1KpCMSHmimri4iW"}
|
||||
{"name":"Commlink","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Commlinks are standard handheld communication devices, fitted with microphones and receivers. A standard, personal commlinks have a range of up to 30 miles, but are reduced in dense, urban areas or areas of high level interference.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Commlink.webp","_id":"KNtbo1StdsDm135s"}
|
||||
{"name":"Valahorn","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":4,"price":340,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Valahorn.webp","_id":"KTsNtB8A1CWKPW0G"}
|
||||
{"name":"Shock Gloves","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A shock glove is a type of armored glove that is coated with a webbed lacing. When used for an attack, this webbing carries a charge that deals 1d4 lightning damage to any objects that the glove come in contact with. If you are engaged in combat with the target of the attack, you must make a grapple check instead of an attack roll, using a Strength (Athletics) check contested by the target’s Strength (Athletics) or Dexterity (Acrobatics) check (the target chooses the ability to use).</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":1,"price":500,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Shock%20Gloves.webp","_id":"NRE6RgiMJlZwmo4y"}
|
||||
{"name":"Yaladai","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Yaladai is a powerful stimulant that grants extreme clarity, improving relaxation and focus. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that increases their current and maximum force points by 2d4. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, their current and maximum force points are reduced by 2d4. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":70,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"2d4","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Yaladai.webp","_id":"NfFT6edC8csXH2l3"}
|
||||
{"name":"Chest","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":25,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":300,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Case.webp","_id":"Np1QPOCE9EMfTTTY"}
|
||||
{"name":"Missile, Fragementation","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>This wrist launcher ammunition deals 1d6 kinetic damage on a hit. Additionally, hit or miss, the missile then explodes. The target and each creature within 5 feet must make a DC 13 Dexterity saving throw, taking 1d6 kinetic damage on a failed save or half as much on a successful one.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0.5,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":5,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":null,"per":"","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"rwak","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Missile%2C%20Fragmentation.webp","_id":"Ojkrl5msPVueqyXm"}
|
||||
{"name":"Projector Canister, Flame","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>When triggered, this wrist launcher ammunition produces a burst of flame in a line 15 feet long and 5 feet wide or a 15-foot cone. A single fuel canister holds enough fuel for three attacks in a line or a single attack in a cone. Each creature must make a DC 13 Dexterity saving throw, taking 1d8 fire damage or half as much on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren’t being worn or carried.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":350,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":15,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":3,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d8","fire"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Projector%20Canister%2C%20Flame.webp","_id":"QKzanDFaJdhqdY0r"}
|
||||
{"name":"Mine, Fragmentaion","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>When you use your action to set it, this mine sets an imperceptible laser line extending up to 15 feet. When the laser is tripped, the mine explodes, and each creature within 15 feet of it must make a DC 13 Dexterity saving throw. On a failed save, a creature takes 3d6 kinetic damage, or half as much on a successful one.</p>","chat":"","unidentified":""},"source":"PHB ","quantity":1,"weight":2,"price":500,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":15,"units":"ft","type":"radius"},"range":{"value":15,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["3d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Mine%2C%20Fragmentation.webp","_id":"QdofeL9gjEkKdn0F"}
|
||||
{"name":"Backpack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":5,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":30,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Backpack.webp","_id":"QloC8FAAaq8wJFgf"}
|
||||
{"name":"Canteen","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":3,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Canteen.webp","_id":"R8D0QBVHrtwONw38"}
|
||||
{"name":"Macrobinoculars","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Macrobinoculars are handheld viewing devices that allow users to observe distant objects. Some models are able to see into space from the surface of a planet.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":750,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Macrobinoculars.webp","_id":"RLUL25bVOiQo9V0o"}
|
||||
{"name":"Grenade, Electrostun","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>Electrostun grenades are usually used when the object of a mission is to detain, capture, or subdue rather than kill. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 1d6 lightning damage on a failed save, or half as much as on a successful one. Additionally, on a failed save, the creature is stunned until the end of its next turn.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":250,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":10,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d6","lightning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Electrostun.webp","_id":"RTr0nZ7oGStuqH8d"}
|
||||
{"name":"Muon Gold","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Muon gold is a lubricant-based spice that gives users intensified mental clarity and focus for a short time. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that increases their current and maximum tech points by 2d4. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, their current and maximum tech points are reduced by 2d4. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":650,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"2d4","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Muon%20Gold.webp","_id":"RWrBkt91CAYqzCmX"}
|
||||
{"name":"Dart","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>This wrist launcher ammunition deals 1d6 kinetic damage on a hit.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0,"price":5,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":"enemy"},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":null,"per":"","autoDestroy":false},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"rwak","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Dart.webp","_id":"S5MMoZO0A8FiGFIo"}
|
||||
{"name":"Remote detonator","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A small handhold device with a single button, used to activate explosives. Over the course of 1 minute, you can synchronize the deton-ator with a single explosive device, such as a breaching charge, grenade, or mine. As an action, you can remotely detonate the paired explosive.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":150,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Remote%20Detonator.webp","_id":"Sbe5QkH8xd9jU9AY"}
|
||||
{"name":"Flight Suit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Flight suits, or jumpsuits, are a type of outfit worn by pilots. They are worn in conjunction with flight helmets. They come in a variety of different colors and provide life support, and protect from hostile environments.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":5,"price":1000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Life%20Support/Flight%20Suit.webp","_id":"T9zF8WmPgy1NJBUr"}
|
||||
{"name":"Traz","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":6,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Traz.webp","_id":"UQu4duMtxYEXKAbo"}
|
||||
{"name":"Tent, two-person","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":5,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Tent.webp","_id":"UxL0trd3omeqzBk4"}
|
||||
{"name":"Homing Beacon","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A homing beacon is a device used to track starships or any other entity being transported. Homing beacons transmit using non-mass HoloNet transceivers able to be tracked through hyperspace. Homing beacons are small enough that they can easily be hidden inside a ship, or tucked into some crevice on its exterior.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":450,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Homing%20Beacon.webp","_id":"V2hSxkLfq461mvNz"}
|
||||
{"name":"Power Cell","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Power cells fuel blaster weapons that deal energy or ion damage. Additionally, power cells are used to energize certain tools.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation": {"type": "none","cost": null,"condition": ""},"duration": {"value": null,"units": ""},"target": {"value": null,"width": null,"units": "","type": ""},"range":{"value": null,"long": null,"units": ""},"uses": {"value": 100,"max": "100","per": "charges","autoDestroy": false},"consume": {"type": "","target": "","amount": null},"ability": null,"actionType": "","attackBonus": 0,"chatFlavor": "","critical": null,"damage": {"parts": [],"versatile": ""},"formula": "","save": {"ability": "","dc": null,"scaling": "spell"},"consumableType": "ammo","attributes": {"spelldc": 10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Power%20Cell.webp","_id":"VUkO1T2aYMuUcBZM"}
|
||||
{"name":"Propulsion pack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Propulsion packs enhance underwater movement. Activating or deactivating the propulsion pack requires a bonus action and, while active, you have a swimming speed of 30 feet. The propulsion pack lasts for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":20,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Propulsion%20Pack.webp","_id":"XR1obpDj1PqDLfA8"}
|
||||
{"name":"Emergency Battery","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>All non-expendable droids need recharging as they are used. The battery has ten uses. As an action, you can expend one use of the kit to stabilize a droid that has 0 hit points, without needing to make an Intelligence (Technology) check.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":5,"price":70,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":10,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Stabilize Droid","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Emergency%20Battery.webp","_id":"Z0YM3aYCyCRhL6cx"}
|
||||
{"name":"Smugglepack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>This backpack comes with a main compartment that can store up to 15 lb., not exceeding a volume of 1/2 cubic foot. Additionally, it has a hidden storage compartment that can hold up to 5 lb, not exceeding a volume of 1/4 cubic foot. Finding the hidden compartment requires a DC 15 Investigation check.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":6,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Smugglerpack.webp","_id":"Zlj5z56A4oVQ5iEC"}
|
||||
{"name":"Field Rations(1 Day)","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":5,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Utility/Field%20Rations.webp","_id":"aTnelIgKQkHySGO8"}
|
||||
{"_id":"b5VLu2y247JeDz3Q","name":"Binders","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>These durasteel restraints can bind a Small or Medium creature. Escaping the binders requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of binders comes with one key. Without the key, a creature proficient with security kits can pick the binders’ lock with a successful DC 15 Dexterity check. Binders have 15 hit points.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":6,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Binders.webp"}
|
||||
{"name":"Antitoxkit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>An antitoxkit contained a variety of wide-spectrum antidote hypospray injectors that were designed to neutralize all known poisons. A kit has five charges. As an action, you can administer a charge of the kit to cure a target of one poison affecting them or to give them advantage on saving throws against poison for 1 hour. It confers no benefit to droids or constructs.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":4,"price":600,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":5,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"Cure Poison","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Antitoxkit.webp","_id":"c1fsl0zNO2jbQDjy"}
|
||||
{"name":"Fibercord Cable, 50 ft","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Rolled</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":2,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"damage":{"parts":[]},"attributes":{"spelldc":10}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Fibercord.webp","_id":"cWfyILdqZ8m73wVt"}
|
||||
{"name":"Hovercart","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>This repulsorcraft is designed to efficiently move large amounts of goods. It has a speed of 30 feet and can hold up to 2,000 lb., not exceeding a volume of 120 cubic feet.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":150,"price":2000,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":2000,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Hovercart.webp","_id":"csq3Gy4uUjMMjGMo"}
|
||||
{"name":"Fusion Cutter","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>A fusion cutter is a handheld cutting tool popular among technicians. It cut through almost any reinforced material, given enough time. The internal power cell supplies an hour’s worth of continuous operation.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":2,"price":25,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Utility/Fusion%20Cutter.webp","_id":"cwQ3qHjcVSaB6O7M"}
|
||||
{"name":"Aquatic Rebreather","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Aquatic breathers are breath masks designed to operate underwater. While worn, the wearer can breathe both air and water.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Life%20Support/Aquatic%20Rebreather.webp","_id":"d508bDYXnIHgIRYL"}
|
||||
{"name":"Power Belt","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>This belt has slots to hold six power cells, and can be connected to directly power a single blaster weapon that uses power cells. Once per turn, if the powered weapon would be reloaded, it can be done without using an action. Connecting or disconnecting a weapon takes an action. Replacing an expended power cell takes an action.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":1,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":6,"weightless":true},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Power%20Belt.webp","_id":"dArOs86s3KFujI3A"}
|
||||
{"name":"Holocron, Jedi","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":1000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron%2C%20Jedi.webp","_id":"eWWgW7KKG7T9xPQi"}
|
||||
{"name":"Comm Jammer","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A comm jammer is a device used to scramble communications. A comm jammer can block transmissions from unenhanced communications devices in a 100 foot radius.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":450,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Comm%20Jammer.webp","_id":"fGHNS8jAO97FoOj4"}
|
||||
{"name":"Disguise Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance, in addition to a tool that lets them holographically mimic clothing. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":4,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Disguise%20Kit.webp","_id":"fSb6sQtBYBvrKfon"}
|
||||
{"name":"Tripod","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A tripod is a device used to mount a two-handed blaster weapon to offer increased stability. Over the course of 1 minute, you can deploy or collapse the tripod. While deployed, you ignore the Strength requirement on ranged weapons with the strength property, and your speed is reduced to 0.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":16,"price":450,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Tripod.webp","_id":"fzBAaF0XzX3DTlAp"}
|
||||
{"name":"Breaching Charge","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>A device used to blow holes in larger constructs, a breaching charge creates a devastating explosion. Installing a breaching charge takes 1 minute. The charge can be set with a 6-second timer, or detonated remotely using a remote detonator.</p>\n<p>Once detonated, the breaching charge destroys an unenhanced section of wall up to 10 feet wide, 10 feet tall, and 5 feet deep. Additionally, each creature within 20 feet of the charge must make a DC 13 Dexterity saving throw. A creature takes 3d6 fire damage and 3d6 kinetic damage on a failed save, or half as much on a successful one. A construct makes this save with disadvantage. If the breaching charge is installed on the construct, it automatically fails the saving throw.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":4,"price":750,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":20,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["3d6","fire"],["3d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Breaching%20Charge.webp","_id":"g1Xig6pkFygVTs01"}
|
||||
{"name":"Projector Canister, Carbonite","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>When triggered, this wrist launcher ammunition produces a beam of carbonite energy in a line 15 feet long and 5 feet wide or a 15-foot cone. A single fuel canister holds enough fuel for three attacks in a line or a single attack in a cone. Each creature must make a DC 13 Constitution saving throw. On a failed save, a creature takes 1d4 cold damage and has its speed reduced by half until the end of your next turn. On a successful save, a creature takes half damage and isn’t slowed. If this damage reduces a creature to 0 hit points, that creature is frozen in carbonite for 1 hour.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":150,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"none","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":15,"units":"ft","type":"line"},"range":{"value":null,"long":null,"units":""},"uses":{"value":3,"max":3,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d4","cold"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Projector%20Canister%2C%20Carbonite.webp","_id":"gH8V1Lvp60X2b2FT"}
|
||||
{"name":"Chindinkalu horn","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":7,"price":120,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Chindinkalu%20Horn.webp","_id":"gr4iELayxqZtxg7q"}
|
||||
{"name":"Fanfar","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":4,"price":220,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Fanfar.webp","_id":"hQsuUhExnWS9qpCO"}
|
||||
{"name":"Enviro-suit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Environment suits, atmospheric suits, or EVA suits, are pressure suits that enabled wearers to survive and operate in zero gravity space and other dangerous conditions.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":15,"price":2000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Life%20Support/Enviro-suit.webp","_id":"hf7WTDBfO8zCt2HQ"}
|
||||
{"name":"Heat Generator","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Heat generators are special devices typically worn on belts that function as a portable, personal heat supply. Activating or deactivating the generator requires a bonus action and, while active, you are adapted to cold climates, as described in chapter 5 of the Dungeon Master’s Guide. The generator lasts for 10 minutes and can be recharged by a power source or replacing the power cell.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":4,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Heat%20Generator.webp","_id":"jNOd9KenJ49LtURj"}
|
||||
{"name":"Grappling Hook","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A grappling hook allows a user to climb or ascend large objects. It can be mounted to a blaster, belt, or elsewhere. It has a 50-foot length.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":4,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Grappling%20Hook.webp","_id":"kQbAa9ljnbl6ZhYn"}
|
||||
{"name":"Holotrace Device","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A holotrace device is a wrist-worn gadget that can be used to trace a holographic transmission back to its source.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":5,"price":1000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Holotrace%20Device.webp","_id":"kaV6ehRv2KaHOj5n"}
|
||||
{"name":"Crate","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>40 Gallons Liquid, 4 Cubic Feet Solid</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":70,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":120,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Crate.webp","_id":"kuCbaQRvtvExVI6D"}
|
||||
{"name":"Mess Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>This box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Mess%20Kit.webp","_id":"kuepEFh2nRPdNKl5"}
|
||||
{"name":"Mechanic's Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>This kit contains all of the commonly required tools to make repairs on constructs, such as ships, speeders, and turrets. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to perform repairs or install ship upgrades.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":25,"price":650,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Mechanic_s%20Kit.webp","_id":"kxtdNQ3crFH9UCuw"}
|
||||
{"_id":"l12esNtvPBB7LoWF","name":"Andris","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Refined andris crystal, a spice mined most commonly on Sevarcos II, sharpens a creature’s mind when smoked. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Wisdom. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Wisdom. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":75,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":5,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":" Add to ability check, attack roll, or saving throw using Wisdom.","critical":null,"damage":{"parts":[],"versatile":""},"formula":"d4","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10},"cptooltipmode":"hid"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Andris.webp"}
|
||||
{"name":"Slitherhorn","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":120,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Slitherhorn.webp","_id":"lPG1Di7j4RzvmdMG"}
|
||||
{"_id":"lzk3w9JSFTccDwQc","name":"Blanket","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":3,"price":5,"attuned":false,"equipped":false,"rarity":"","identified":true,"damage":{"parts":[]},"attributes":{"spelldc":10}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Blanket.webp"}
|
||||
{"name":"Shoulder Cannon","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>A shoulder cannon is a weapon mounted on a creature’s shoulder with an integrated targeting interface that uses traditional power cells. When you would make a ranged weapon attack, you can fire this weapon instead. It has the ammunition (range 60/240), burst 4, and reload 4 properties, and deals 1d8 energy damage on a hit. The shoulder cannon has a proficiency bonus of +2 and a Dexterity score of 16, which are used instead of your proficiency bonus and Dexterity modifier when making attack and damage rolls with it.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":9,"price":3200,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"enemy"},"range":{"value":60,"long":240,"units":"ft"},"uses":{"value":0,"max":0,"per":""},"consume":{"type":"ammo","target":"","amount":1},"ability":"","actionType":"rwak","attackBonus":5,"chatFlavor":"","critical":null,"damage":{"parts":[["1d8 + 3","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"weaponType":"simpleR","properties":{"amm":true,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":true,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Shoulder%20Cannon.webp","_id":"m1xOrZbVJXy9jrQg"}
|
||||
{"name":"Wristpad","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A wristpad is a harness with an integrated datapad and holoprojector interface that fits on the forearm and includes self-charging battery packs.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":600,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Wristpad.webp","_id":"mGiqI759C7te33Jw"}
|
||||
{"name":"Pouch","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":5,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":6,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Pouch.webp","_id":"ms32a7hpt43RJUeV"}
|
||||
{"name":"Holorecorder","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A holorecorder is a device used to record and project holograms. Some droid models are equipped with internal holorecorders.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holorecorder.webp","_id":"n8VDbaI6MzaxWSkO"}
|
||||
{"name":"Holocron, Sith","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":1000,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron%2C%20Sith.webp","_id":"nEqd3Yt653yCbHed"}
|
||||
{"name":"Grenade, Gas","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>Gas grenades are primarily used to flush enemies out of cover and other protected areas, though there are of course other uses. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. The grenade explodes in a 15-foot-radius sphere of yellow-green fog centered on a point you choose within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of at least 10 miles per hour disperses it.</p>\n<p>When a creature enters the fog’s area for the first time on a turn or starts its turn there, that creature must make a DC 13 Constitution saving throw. The creature takes 1d8 poison damage on a failed save, or half as much damage on a successful one. Additionally, on a failed save, the creature is poisoned while it is in the cloud. Droids, constructs and humanoids wearing appropriate protective equipment are unaffected.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":15,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d8","poison"]],"versatile":""},"formula":"","save":{"ability":"con","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Gas.webp","_id":"nrSoJ33rycJm1tYJ"}
|
||||
{"name":"Fizzz","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":160,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Fizzz.webp","_id":"o6IpY0vJ9aGvgBQ8"}
|
||||
{"name":"Demolitions Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>This kit contains the appropriate equipment for disarming and setting explosives. It contains a plastic face guard and heavy duty gloves, as well as precision cutting and gripping tools, and various common components of grenades and mines. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to disarm or set an explosive.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":4,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Demolitions%20Kit.webp","_id":"oH2HgXxSM0EFnj7A"}
|
||||
{"name":"Chef's Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>This kit includes all of the necessary implements to prepare and serve food to up to six people. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify food. Also, proficiency with this kit is required to create field rations.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":8,"price":70,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Chef_s%20Kit.webp","_id":"pHOnHawoE6CLWNey"}
|
||||
{"name":"Grenade, Fragmentation","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>Frag grenades are cheap, low-damage grenades used mainly by military personnel, mercenaries, bounty hunters, and adventurers. Grenades can be set to detonate on impact or set with a timer that lasts several seconds before detonating. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 2d6 kinetic damage on a failed save, or half as much as on a successful one.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":10,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Fragmentation.webp","_id":"pp05gqbvmncpHgV3"}
|
||||
{"_id":"qPSOnaMx7dd5Ynzf","name":"Cilona","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Cilona, the active ingredient in deathsticks, is a hallucinogen that causes an ecstatic feeling that improves strength and endurance. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Strength. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Strength. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":60,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Add to ability check, attack roll, or saving throw using Strength.","critical":null,"damage":{"parts":[],"versatile":""},"formula":"d4","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10},"cptooltipmode":"hid"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Cilona.webp"}
|
||||
{"name":"Thermal Detonator","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>Thermal detonators are palm-sized, spherical, and extremely deadly explosive weapons. In addition to being surprisingly powerful for their size, they can only be turned off by whoever turned them on. Thermal detonators have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 2d6 fire and 2d6 kinetic damage on a failed save, or half as much as on a successful one. Additionally, on a failed save, the creature is knocked prone.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":750,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":10,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d6","fire"],["2d6","bludgeoning"]],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Thermal%20Detonator.webp","_id":"qiLWpJa33pythE4J"}
|
||||
{"name":"Hydrospanner","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":2,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Utility/Hydrospanner.webp","_id":"rL1D14LmLu43gUDj"}
|
||||
{"name":"Kloo Horn","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":330,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Kloo%20Horn.webp","_id":"txKO9MDEwindPjME"}
|
||||
{"name":"Slug Cartridge","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Slug cartridges are ammunition for blaster weapons that deal kinetic damage. When you reload a weapon that uses cartridges, you can reload any number of cartridges up to the weapon’s reload number as a part of the same action.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":0,"price":2,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"autoDestroy":false},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Slug%20Cartridge.webp","_id":"u4xaL0xLRJobIj30"}
|
||||
{"name":"Yarrock","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Yarrock is a strong hallucinogen which is said to instill a creature with a clear vision of “the meaning of life”, granting a boost to confidence. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Charisma. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Charisma. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":85,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Add to ability check, attack roll, or saving throw using Charisma.","critical":null,"damage":{"parts":[],"versatile":""},"formula":"1d4","save":{"ability":"wis","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Yarrock.webp","_id":"uSzMnQlBpw5rhDcF"}
|
||||
{"name":"Glitterstim","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>A silvery-green webbing sharp to the touch, yet when liquidized causes a heightened mental state and pleasurable boost. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Intelligence. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack</p>\n<p>roll, or saving throw using Intelligence. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":0.16,"price":95,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Add to ability check, attack roll, or saving throw using Intelligence.","critical":null,"damage":{"parts":[],"versatile":""},"formula":"d4","save":{"ability":"con","dc":13,"scaling":"flat"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Spice/Glitterstim.webp","_id":"uUjV9Ay7TxLOtXVw"}
|
||||
{"name":"Forgery Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":5,"price":150,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Forgery%20Kit.webp","_id":"uoNaJRSb7ocwldUu"}
|
||||
{"name":"Security Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>A security kit includes the tools and electronic components necessary to bypass electronic and mechanical locks. It includes sensor devices, a specialized commlink designed to detect silent alarms, a small file, a set of lockpicks, a small mirror mounted to an elongated handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":650,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Security%20Kit.webp","_id":"usVyAnJZ5vf3kWf6"}
|
||||
{"name":"Jetpack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Jetpacks are personal aerial transportation devices that allow the operator to fly into and through the air with great mobility. Activating or deactivating the jetpack requires a bonus action and, while active, you have a flying speed of 30 feet. The jetpack last for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":20,"price":4500,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Jetpack.webp","_id":"vuxf6Qbd5pMj2gCH"}
|
||||
{"name":"Shawm","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Shawm.webp","_id":"wS3DLDX5AIMLhJ84"}
|
||||
{"name":"Ram, portable","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.</p>","chat":"","unidentified":""},"source":"","quantity":1,"weight":35,"price":40,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.abilities.str.value","value":"4","mode":"+","targetSpecific":false,"id":1,"itemId":"5AIp4xk1BWeJpS0A","active":false,"_targets":[],"label":"Abilities Strength"}]}},"img":"systems/sw5e/packs/Icons/Utility/Ram.webp","_id":"wVdZknqxKQi7KQ7O"}
|
||||
{"name":"Rocket boots","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>Rocket boots are a form of rocket propulsion system affixed to a pair of boots instead of being worn on the back like a standard jetpack. Activating or deactivating the boots requires a bonus action and, while active, you have a flying speed of 20 feet. The rocket boots last for 1 minute and can be recharged by a power source or replacing the power cell.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":2500,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Rocket%20Boots.webp","_id":"x2SznYftRVTKCXAa"}
|
||||
{"name":"Bandolier","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"<p>A bandolier is worn across the chest. It has 12 slots that can each hold a single item that weighs less than 2 lb, such as a vibrodagger, a fragmentation grenade, or a power cell.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":100,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"items","value":12,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Bandolier.webp","_id":"xQQs7o1UkKcIcftB"}
|
||||
{"name":"Trauma Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>A common traumakit can be stocked with bacta packs, and contains spray-bandages, bone stabilizers, antiseptics, and other essentials for the treatment of wounds. As an action, you can expend a use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check. A traumakit can be used to stabilize 5 times before it must be restocked at its original cost.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":3,"price":50,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":"inst"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":5,"max":5,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Stabilize Creature","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Traumakit.webp","_id":"xuU4A9rszdWjOh2A"}
|
||||
{"name":"Bipod","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A bipod is a device mounted to a two-handed blaster weapon to offer increased stability while prone. As an action, you can deploy or collapse the bipod. While deployed, you ignore the Strength requirement on ranged weapons with the strength property while you are prone, and your speed is reduced to 0.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":200,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Bipod.webp","_id":"y4BGQwOX4ZifcFtA"}
|
||||
{"name":"Headcomm","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"<p>A headcomm can be installed in a helmet or worn independently. It functions as a hands-free commlink.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":200,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Headcomm.webp","_id":"zHERdLuCUPpxzaSJ"}
|
||||
{"name":"Poisoner's Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"<p>A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":500,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Poisoner_s%20Kit.webp","_id":"zaLzNlsfzRf71Xpl"}
|
||||
{"name":"Mine, Plasma","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"<p>When you use your action to set it, this mine sets an imperceptible laser line extending up to 15 feet. When the laser is tripped, the mine explodes, coating the area in a 15-foot radius around it in fire that burns for 1 minute. When a creature enters the fire or starts its turn there it must make a DC 13 Dexterity saving throw. On a failed save, the creature takes 2d6 fire damage, or half as much on a successful one. A construct makes this save with disadvantage.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":550,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":15,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Mine%2C%20Plasma.webp","_id":"zrSOUA8dUg9lHVdS"}
|
||||
{"name":"Power Cell","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"<p>Power cells fuel blaster weapons that deal energy or ion damage. Additionally, power cells are used to energize certain tools.</p>","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":240,"max":240,"per":"charges","autoDestroy":false},"consume":{"type":"","target":"","amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Power%20Cell.webp","_id":"VUkO1T2aYMuUcBZM"}
|
82
src/packs/packs/adventuringgear.db/Andris.json
Normal file
82
src/packs/packs/adventuringgear.db/Andris.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"_id": "l12esNtvPBB7LoWF",
|
||||
"name": "Andris",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Refined andris crystal, a spice mined most commonly on Sevarcos II, sharpens a creature\u2019s mind when smoked. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Wisdom. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Wisdom. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 0.16,
|
||||
"price": 75,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 5,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "other",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": " Add to ability check, attack roll, or saving throw using Wisdom.",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "d4",
|
||||
"save": {
|
||||
"ability": "con",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"cptooltipmode": "hid"
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Spice/Andris.webp"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Antitoxkit.json
Normal file
81
src/packs/packs/adventuringgear.db/Antitoxkit.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Antitoxkit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>An antitoxkit contained a variety of wide-spectrum antidote hypospray injectors that were designed to neutralize all known poisons. A kit has five charges. As an action, you can administer a charge of the kit to cure a target of one poison affecting them or to give them advantage on saving throws against poison for 1 hour. It confers no benefit to droids or constructs.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 600,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "hour"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 5,
|
||||
"max": 5,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "heal",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "Cure Poison",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Medical/Antitoxkit.webp",
|
||||
"_id": "c1fsl0zNO2jbQDjy"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Aquatic Rebreather.json
Normal file
32
src/packs/packs/adventuringgear.db/Aquatic Rebreather.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Aquatic Rebreather",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Aquatic breathers are breath masks designed to operate underwater. While worn, the wearer can breathe both air and water.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Life%20Support/Aquatic%20Rebreather.webp",
|
||||
"_id": "d508bDYXnIHgIRYL"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Backpack.json
Normal file
50
src/packs/packs/adventuringgear.db/Backpack.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Backpack",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 5,
|
||||
"price": 50,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "weight",
|
||||
"value": 30,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Storage/Backpack.webp",
|
||||
"_id": "QloC8FAAaq8wJFgf"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Bandfill.json
Normal file
41
src/packs/packs/adventuringgear.db/Bandfill.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Bandfill",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 300,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Bandfill.webp",
|
||||
"_id": "CTKBssCmPYPIjOBP"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Bandolier.json
Normal file
50
src/packs/packs/adventuringgear.db/Bandolier.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Bandolier",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A bandolier is worn across the chest. It has 12 slots that can each hold a single item that weighs less than 2 lb, such as a vibrodagger, a fragmentation grenade, or a power cell.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "items",
|
||||
"value": 12,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Bandolier.webp",
|
||||
"_id": "xQQs7o1UkKcIcftB"
|
||||
}
|
86
src/packs/packs/adventuringgear.db/Basic Poison.json
Normal file
86
src/packs/packs/adventuringgear.db/Basic Poison.json
Normal file
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Basic Poison",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>As an action, you can use the poison in this vial to coat one vibroweapon, one slug cartridge, or one wrist launcher dart. A creature hit by the poisoned weapon must make a DC 13 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 125,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "object"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d4",
|
||||
"poison"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "con",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "poison",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Medical/Basic%20Poison.webp",
|
||||
"_id": "DjhVaMp7y9kv8huC"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Bedroll.json
Normal file
32
src/packs/packs/adventuringgear.db/Bedroll.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"_id": "5RAGllbndPdnhW64",
|
||||
"name": "Bedroll",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 7,
|
||||
"price": 10,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"damage": {
|
||||
"parts": []
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Bedroll.webp"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Binders.json
Normal file
32
src/packs/packs/adventuringgear.db/Binders.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"_id": "b5VLu2y247JeDz3Q",
|
||||
"name": "Binders",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>These durasteel restraints can bind a Small or Medium creature. Escaping the binders requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of binders comes with one key. Without the key, a creature proficient with security kits can pick the binders\u2019 lock with a successful DC 15 Dexterity check. Binders have 15 hit points.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 6,
|
||||
"price": 50,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Binders.webp"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Biochemists Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Biochemists Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Biochemist's Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This kit includes all of the necessary components to create and house standard adrenals, medpacs, and stimpacs. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify adrenals, medpacs, and stimpacs. Also, proficiency with this kit is required to create adrenals, medpacs, and stimpacs.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 8,
|
||||
"price": 500,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Biochemist_s%20Kit.webp",
|
||||
"_id": "5Hm6nv1vS3fYq8rp"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Bipod.json
Normal file
32
src/packs/packs/adventuringgear.db/Bipod.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Bipod",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A bipod is a device mounted to a two-handed blaster weapon to offer increased stability while prone. As an action, you can deploy or collapse the bipod. While deployed, you ignore the Strength requirement on ranged weapons with the strength property while you are prone, and your speed is reduced to 0.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 200,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Bipod.webp",
|
||||
"_id": "y4BGQwOX4ZifcFtA"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Blanket.json
Normal file
32
src/packs/packs/adventuringgear.db/Blanket.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"_id": "lzk3w9JSFTccDwQc",
|
||||
"name": "Blanket",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 5,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"damage": {
|
||||
"parts": []
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Blanket.webp"
|
||||
}
|
106
src/packs/packs/adventuringgear.db/Breaching Charge.json
Normal file
106
src/packs/packs/adventuringgear.db/Breaching Charge.json
Normal file
|
@ -0,0 +1,106 @@
|
|||
{
|
||||
"name": "Breaching Charge",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A device used to blow holes in larger constructs, a breaching charge creates a devastating explosion. Installing a breaching charge takes 1 minute. The charge can be set with a 6-second timer, or detonated remotely using a remote detonator.</p>\n<p>Once detonated, the breaching charge destroys an unenhanced section of wall up to 10 feet wide, 10 feet tall, and 5 feet deep. Additionally, each creature within 20 feet of the charge must make a DC 13 Dexterity saving throw. A creature takes 3d6 fire damage and 3d6 kinetic damage on a failed save, or half as much on a successful one. A construct makes this save with disadvantage. If the breaching charge is installed on the construct, it automatically fails the saving throw.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 750,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 20,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"3d6",
|
||||
"fire"
|
||||
],
|
||||
[
|
||||
"3d6",
|
||||
"bludgeoning"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Breaching%20Charge.webp",
|
||||
"_id": "g1Xig6pkFygVTs01"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Camtono.json
Normal file
50
src/packs/packs/adventuringgear.db/Camtono.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Camtono",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A camtono is a secured, handle container used for transporting valuable goods. The camtono features a keyed lock, which requires a DC 20 security kit to force open. It can hold up to 5 lb., not exceeding a volume of 1/4 cubic foot.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 750,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "weight",
|
||||
"value": 5,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Storage/Camtono.webp",
|
||||
"_id": "A6aTeaijnzz3I4xQ"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Canteen.json
Normal file
32
src/packs/packs/adventuringgear.db/Canteen.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Canteen",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 10,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Canteen.webp",
|
||||
"_id": "R8D0QBVHrtwONw38"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Chefs Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Chefs Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Chef's Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This kit includes all of the necessary implements to prepare and serve food to up to six people. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify food. Also, proficiency with this kit is required to create field rations.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 8,
|
||||
"price": 70,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Chef_s%20Kit.webp",
|
||||
"_id": "pHOnHawoE6CLWNey"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Chest.json
Normal file
50
src/packs/packs/adventuringgear.db/Chest.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Chest",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 25,
|
||||
"price": 50,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "weight",
|
||||
"value": 300,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Storage/Case.webp",
|
||||
"_id": "Np1QPOCE9EMfTTTY"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Chindinkalu horn.json
Normal file
41
src/packs/packs/adventuringgear.db/Chindinkalu horn.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Chindinkalu horn",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 7,
|
||||
"price": 120,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Chindinkalu%20Horn.webp",
|
||||
"_id": "gr4iELayxqZtxg7q"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Chronometer.json
Normal file
32
src/packs/packs/adventuringgear.db/Chronometer.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Chronometer",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A chronometer is a device that measures and keeps linear time.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Chronometer.webp",
|
||||
"_id": "FxuQ56TR8mhY6RiB"
|
||||
}
|
82
src/packs/packs/adventuringgear.db/Cilona.json
Normal file
82
src/packs/packs/adventuringgear.db/Cilona.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"_id": "qPSOnaMx7dd5Ynzf",
|
||||
"name": "Cilona",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Cilona, the active ingredient in deathsticks, is a hallucinogen that causes an ecstatic feeling that improves strength and endurance. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Strength. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Strength. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 0.16,
|
||||
"price": 60,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "other",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "Add to ability check, attack roll, or saving throw using Strength.",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "d4",
|
||||
"save": {
|
||||
"ability": "wis",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"cptooltipmode": "hid"
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Spice/Cilona.webp"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Code Cylinder.json
Normal file
32
src/packs/packs/adventuringgear.db/Code Cylinder.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Code Cylinder",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Code cylinders are security devices in the shape of short cylinders that contain coded information about their bearers and grant them access to secure areas.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 20,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Code%20Cylinder.webp",
|
||||
"_id": "5uYoOu7FyOQ4O7BZ"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Comm Jammer.json
Normal file
32
src/packs/packs/adventuringgear.db/Comm Jammer.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Comm Jammer",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A comm jammer is a device used to scramble communications. A comm jammer can block transmissions from unenhanced communications devices in a 100 foot radius.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 450,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Communications/Comm%20Jammer.webp",
|
||||
"_id": "fGHNS8jAO97FoOj4"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Commlink.json
Normal file
32
src/packs/packs/adventuringgear.db/Commlink.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Commlink",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Commlinks are standard handheld communication devices, fitted with microphones and receivers. A standard, personal commlinks have a range of up to 30 miles, but are reduced in dense, urban areas or areas of high level interference.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 50,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Communications/Commlink.webp",
|
||||
"_id": "KNtbo1StdsDm135s"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Crate.json
Normal file
50
src/packs/packs/adventuringgear.db/Crate.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Crate",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>40 Gallons Liquid, 4 Cubic Feet Solid</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 70,
|
||||
"price": 20,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "weight",
|
||||
"value": 120,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Storage/Crate.webp",
|
||||
"_id": "kuCbaQRvtvExVI6D"
|
||||
}
|
86
src/packs/packs/adventuringgear.db/Dart.json
Normal file
86
src/packs/packs/adventuringgear.db/Dart.json
Normal file
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Dart",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This wrist launcher ammunition deals 1d6 kinetic damage on a hit.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0,
|
||||
"price": 5,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "",
|
||||
"cost": null,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": null,
|
||||
"units": "",
|
||||
"type": "enemy"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": null,
|
||||
"max": null,
|
||||
"per": "",
|
||||
"autoDestroy": false
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "rwak",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d6",
|
||||
"bludgeoning"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "ammo",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Ammunition/Dart.webp",
|
||||
"_id": "S5MMoZO0A8FiGFIo"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Datacard.json
Normal file
32
src/packs/packs/adventuringgear.db/Datacard.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Datacard",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A datacard or data disk is a flat, hand-held device used in conjunction with a datapad to store information.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0,
|
||||
"price": 5,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacard.webp",
|
||||
"_id": "EUATVxP9x6mPT8x6"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Datacron.json
Normal file
32
src/packs/packs/adventuringgear.db/Datacron.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Datacron",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A datacron is a type of holocron that can be accessed by non-Force-sensitives and are mainly used to store encrypted data. They are complete with an interactive projection to access the infor-mation.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 1000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datacron.webp",
|
||||
"_id": "IN4aom0cLi0kmpsD"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Datapad.json
Normal file
32
src/packs/packs/adventuringgear.db/Datapad.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Datapad",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A datapad is a small electronic device used for the input, storage and displaying of inform-ation. It features a holoprojective surface for 3D viewing.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Datapad.webp",
|
||||
"_id": "At8RCEDvMZ94O6QC"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Demolitions Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Demolitions Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Demolitions Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This kit contains the appropriate equipment for disarming and setting explosives. It contains a plastic face guard and heavy duty gloves, as well as precision cutting and gripping tools, and various common components of grenades and mines. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to disarm or set an explosive.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 400,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Demolitions%20Kit.webp",
|
||||
"_id": "oH2HgXxSM0EFnj7A"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Disguise Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Disguise Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Disguise Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance, in addition to a tool that lets them holographically mimic clothing. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 400,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Disguise%20Kit.webp",
|
||||
"_id": "fSb6sQtBYBvrKfon"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Drum.json
Normal file
41
src/packs/packs/adventuringgear.db/Drum.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Drum",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 60,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Drum.webp",
|
||||
"_id": "A8KyyUNLReS4nJ9W"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Emergency Battery.json
Normal file
81
src/packs/packs/adventuringgear.db/Emergency Battery.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Emergency Battery",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>All non-expendable droids need recharging as they are used. The battery has ten uses. As an action, you can expend one use of the kit to stabilize a droid that has 0 hit points, without needing to make an Intelligence (Technology) check.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 5,
|
||||
"price": 70,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 10,
|
||||
"max": 10,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "other",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "Stabilize Droid",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Medical/Emergency%20Battery.webp",
|
||||
"_id": "Z0YM3aYCyCRhL6cx"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Enviro-suit.json
Normal file
32
src/packs/packs/adventuringgear.db/Enviro-suit.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Enviro-suit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Environment suits, atmospheric suits, or EVA suits, are pressure suits that enabled wearers to survive and operate in zero gravity space and other dangerous conditions.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 15,
|
||||
"price": 2000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Life%20Support/Enviro-suit.webp",
|
||||
"_id": "hf7WTDBfO8zCt2HQ"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Fanfar.json
Normal file
41
src/packs/packs/adventuringgear.db/Fanfar.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Fanfar",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 220,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Fanfar.webp",
|
||||
"_id": "hQsuUhExnWS9qpCO"
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Fibercord Cable, 50 ft",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Rolled</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 20,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"damage": {
|
||||
"parts": []
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Fibercord.webp",
|
||||
"_id": "cWfyILdqZ8m73wVt"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Field Rations(1 Day).json
Normal file
81
src/packs/packs/adventuringgear.db/Field Rations(1 Day).json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Field Rations(1 Day)",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 5,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "",
|
||||
"cost": 0,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": null,
|
||||
"units": "",
|
||||
"type": ""
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 0,
|
||||
"max": 0,
|
||||
"per": null,
|
||||
"autoDestroy": false
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": null,
|
||||
"amount": null
|
||||
},
|
||||
"ability": null,
|
||||
"actionType": "",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Field%20Rations.webp",
|
||||
"_id": "aTnelIgKQkHySGO8"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Fizzz.json
Normal file
41
src/packs/packs/adventuringgear.db/Fizzz.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Fizzz",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 160,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Fizzz.webp",
|
||||
"_id": "o6IpY0vJ9aGvgBQ8"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Flight Suit.json
Normal file
32
src/packs/packs/adventuringgear.db/Flight Suit.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Flight Suit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Flight suits, or jumpsuits, are a type of outfit worn by pilots. They are worn in conjunction with flight helmets. They come in a variety of different colors and provide life support, and protect from hostile environments.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 5,
|
||||
"price": 1000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Life%20Support/Flight%20Suit.webp",
|
||||
"_id": "T9zF8WmPgy1NJBUr"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Flute.json
Normal file
41
src/packs/packs/adventuringgear.db/Flute.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Flute",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 20,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Flute.webp",
|
||||
"_id": "0rXtxM4H9wfh4NnA"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Forgery Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Forgery Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Forgery Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 5,
|
||||
"price": 150,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Forgery%20Kit.webp",
|
||||
"_id": "uoNaJRSb7ocwldUu"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Friction-grip gear.json
Normal file
32
src/packs/packs/adventuringgear.db/Friction-grip gear.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Friction-grip gear",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A special set of gloves and boots that allow the wearer to stick to and climb surfaces. While wearing these items, you gain the ability to move along vertical surfaces and ceilings while leaving your hands free. You also gain a climbing speed equal your walking speed.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 12,
|
||||
"price": 2000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Friction-grip%20Gear.webp",
|
||||
"_id": "8sX023Ca4gIn1gbU"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Fusion Cutter.json
Normal file
41
src/packs/packs/adventuringgear.db/Fusion Cutter.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Fusion Cutter",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A fusion cutter is a handheld cutting tool popular among technicians. It cut through almost any reinforced material, given enough time. The internal power cell supplies an hour\u2019s worth of continuous operation.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 25,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Fusion%20Cutter.webp",
|
||||
"_id": "cwQ3qHjcVSaB6O7M"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Giggledust.json
Normal file
81
src/packs/packs/adventuringgear.db/Giggledust.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Giggledust",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This sandy-brown powder causes everything to appear slightly humorous while enhancing a creature\u2019s nimbleness. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Dexterity. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack roll, or saving throw using Dexterity. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 0.16,
|
||||
"price": 80,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "other",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "Add to ability check, attack roll, or saving throw using Dexterity.",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "d4",
|
||||
"save": {
|
||||
"ability": "wis",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Spice/Giggledust.webp",
|
||||
"_id": "J1KpCMSHmimri4iW"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Glitterstim.json
Normal file
81
src/packs/packs/adventuringgear.db/Glitterstim.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Glitterstim",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A silvery-green webbing sharp to the touch, yet when liquidized causes a heightened mental state and pleasurable boost. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check, attack roll, or saving throw using Intelligence. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check, attack</p>\n<p>roll, or saving throw using Intelligence. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 0.16,
|
||||
"price": 95,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "other",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "Add to ability check, attack roll, or saving throw using Intelligence.",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "d4",
|
||||
"save": {
|
||||
"ability": "con",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Spice/Glitterstim.webp",
|
||||
"_id": "uUjV9Ay7TxLOtXVw"
|
||||
}
|
85
src/packs/packs/adventuringgear.db/Glowrod.json
Normal file
85
src/packs/packs/adventuringgear.db/Glowrod.json
Normal file
|
@ -0,0 +1,85 @@
|
|||
{
|
||||
"name": "Glowrod",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Glowrods create a beam of light illuminating the area around you in bright light for a 20-foot radius and dim light for an additional 20 feet. The glowrod lasts for 10 hours and can be recharged by connecting to a power source or by replacing the power cell.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 10,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "",
|
||||
"cost": 0,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": null,
|
||||
"units": "",
|
||||
"type": ""
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 0,
|
||||
"max": 0,
|
||||
"per": null,
|
||||
"autoDestroy": true,
|
||||
"autoUse": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": null,
|
||||
"amount": null
|
||||
},
|
||||
"ability": null,
|
||||
"actionType": "",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "rod",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"favtab": {
|
||||
"isFavourite": true
|
||||
},
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Glowrod.webp",
|
||||
"_id": "DtQyQTRBjeJ9KtOq"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Grappling Hook.json
Normal file
32
src/packs/packs/adventuringgear.db/Grappling Hook.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Grappling Hook",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A grappling hook allows a user to climb or ascend large objects. It can be mounted to a blaster, belt, or elsewhere. It has a 50-foot length.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 50,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Grappling%20Hook.webp",
|
||||
"_id": "kQbAa9ljnbl6ZhYn"
|
||||
}
|
102
src/packs/packs/adventuringgear.db/Grenade Electrostun.json
Normal file
102
src/packs/packs/adventuringgear.db/Grenade Electrostun.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"name": "Grenade, Electrostun",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Electrostun grenades are usually used when the object of a mission is to detain, capture, or subdue rather than kill. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 1d6 lightning damage on a failed save, or half as much as on a successful one. Additionally, on a failed save, the creature is stunned until the end of its next turn.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 250,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 10,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d6",
|
||||
"lightning"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Electrostun.webp",
|
||||
"_id": "RTr0nZ7oGStuqH8d"
|
||||
}
|
102
src/packs/packs/adventuringgear.db/Grenade Fragmentation.json
Normal file
102
src/packs/packs/adventuringgear.db/Grenade Fragmentation.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"name": "Grenade, Fragmentation",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Frag grenades are cheap, low-damage grenades used mainly by military personnel, mercenaries, bounty hunters, and adventurers. Grenades can be set to detonate on impact or set with a timer that lasts several seconds before detonating. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 2d6 kinetic damage on a failed save, or half as much as on a successful one.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 10,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"2d6",
|
||||
"bludgeoning"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Fragmentation.webp",
|
||||
"_id": "pp05gqbvmncpHgV3"
|
||||
}
|
102
src/packs/packs/adventuringgear.db/Grenade Gas.json
Normal file
102
src/packs/packs/adventuringgear.db/Grenade Gas.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"name": "Grenade, Gas",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Gas grenades are primarily used to flush enemies out of cover and other protected areas, though there are of course other uses. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. The grenade explodes in a 15-foot-radius sphere of yellow-green fog centered on a point you choose within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of at least 10 miles per hour disperses it.</p>\n<p>When a creature enters the fog\u2019s area for the first time on a turn or starts its turn there, that creature must make a DC 13 Constitution saving throw. The creature takes 1d8 poison damage on a failed save, or half as much damage on a successful one. Additionally, on a failed save, the creature is poisoned while it is in the cloud. Droids, constructs and humanoids wearing appropriate protective equipment are unaffected.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 300,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 15,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d8",
|
||||
"poison"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "con",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Gas.webp",
|
||||
"_id": "nrSoJ33rycJm1tYJ"
|
||||
}
|
102
src/packs/packs/adventuringgear.db/Grenade Ion.json
Normal file
102
src/packs/packs/adventuringgear.db/Grenade Ion.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"name": "Grenade, Ion",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Ion grenades are hand-held explosive devices that release a blast of ion energy. Grenades have a range equal to 30 feet + your Strength modifier x 5. As an action, you can throw a grenade at a point you can see within range. Each creature within 10 feet must make a DC 13 Dexterity saving throw. A creature takes 2d4 ion damage on a failed save, or half as much as on a successful one. Any electronics within the blast radius are disabled until rebooted.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 250,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 10,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"2d4",
|
||||
""
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Grenade%2C%20Ion.webp",
|
||||
"_id": "272qKqEN2znXm9Ye"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Headcomm.json
Normal file
32
src/packs/packs/adventuringgear.db/Headcomm.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Headcomm",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A headcomm can be installed in a helmet or worn independently. It functions as a hands-free commlink.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 200,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Communications/Headcomm.webp",
|
||||
"_id": "zHERdLuCUPpxzaSJ"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Heat Generator.json
Normal file
32
src/packs/packs/adventuringgear.db/Heat Generator.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Heat Generator",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Heat generators are special devices typically worn on belts that function as a portable, personal heat supply. Activating or deactivating the generator requires a bonus action and, while active, you are adapted to cold climates, as described in chapter 5 of the Dungeon Master\u2019s Guide. The generator lasts for 10 minutes and can be recharged by a power source or replacing the power cell.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 4,
|
||||
"price": 400,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Heat%20Generator.webp",
|
||||
"_id": "jNOd9KenJ49LtURj"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Holocomm.json
Normal file
32
src/packs/packs/adventuringgear.db/Holocomm.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Holocomm",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A holocomm is a communications unit that utilizes the HoloNet. It enables users to send and receive messages through holographic-based transmission networks.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 300,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Communications/Holocomm.webp",
|
||||
"_id": "4SzhraHgsIKXoDu3"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Holocron Jedi.json
Normal file
32
src/packs/packs/adventuringgear.db/Holocron Jedi.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Holocron, Jedi",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 1000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron%2C%20Jedi.webp",
|
||||
"_id": "eWWgW7KKG7T9xPQi"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Holocron Sith.json
Normal file
32
src/packs/packs/adventuringgear.db/Holocron Sith.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Holocron, Sith",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Holocrons are information-storage devices used by force wielders that contain ancient lessons or valuable information in holographic form. They appear as palm-sized, glowing polyhedrons of crystalline material and hardware, and can only be activated and used through the power of the Force.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 1000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holocron%2C%20Sith.webp",
|
||||
"_id": "nEqd3Yt653yCbHed"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Holorecorder.json
Normal file
32
src/packs/packs/adventuringgear.db/Holorecorder.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Holorecorder",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A holorecorder is a device used to record and project holograms. Some droid models are equipped with internal holorecorders.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Data%20Recording%20and%20Storage/Holorecorder.webp",
|
||||
"_id": "n8VDbaI6MzaxWSkO"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Holotrace Device.json
Normal file
32
src/packs/packs/adventuringgear.db/Holotrace Device.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Holotrace Device",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A holotrace device is a wrist-worn gadget that can be used to trace a holographic transmission back to its source.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 5,
|
||||
"price": 1000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Communications/Holotrace%20Device.webp",
|
||||
"_id": "kaV6ehRv2KaHOj5n"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Holster.json
Normal file
50
src/packs/packs/adventuringgear.db/Holster.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Holster",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A holster can be worn on the leg, hip, or back, and can be used to store a single weapon. You can draw a weapon stored in a holster without using an action. Once you\u2019ve done so, you can\u2019t do so again until you store a weapon in the holster as an action.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 75,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "items",
|
||||
"value": 1,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Holster.webp",
|
||||
"_id": "59Jkji0FuhY9CnkW"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Homing Beacon.json
Normal file
32
src/packs/packs/adventuringgear.db/Homing Beacon.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Homing Beacon",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A homing beacon is a device used to track starships or any other entity being transported. Homing beacons transmit using non-mass HoloNet transceivers able to be tracked through hyperspace. Homing beacons are small enough that they can easily be hidden inside a ship, or tucked into some crevice on its exterior.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 450,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Homing%20Beacon.webp",
|
||||
"_id": "V2hSxkLfq461mvNz"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Hovercart.json
Normal file
50
src/packs/packs/adventuringgear.db/Hovercart.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Hovercart",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This repulsorcraft is designed to efficiently move large amounts of goods. It has a speed of 30 feet and can hold up to 2,000 lb., not exceeding a volume of 120 cubic feet.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 150,
|
||||
"price": 2000,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "weight",
|
||||
"value": 2000,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Storage/Hovercart.webp",
|
||||
"_id": "csq3Gy4uUjMMjGMo"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Hydrospanner.json
Normal file
41
src/packs/packs/adventuringgear.db/Hydrospanner.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Hydrospanner",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 10,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Hydrospanner.webp",
|
||||
"_id": "rL1D14LmLu43gUDj"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Jetpack.json
Normal file
32
src/packs/packs/adventuringgear.db/Jetpack.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Jetpack",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Jetpacks are personal aerial transportation devices that allow the operator to fly into and through the air with great mobility. Activating or deactivating the jetpack requires a bonus action and, while active, you have a flying speed of 30 feet. The jetpack last for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 20,
|
||||
"price": 4500,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Jetpack.webp",
|
||||
"_id": "vuxf6Qbd5pMj2gCH"
|
||||
}
|
86
src/packs/packs/adventuringgear.db/Karrak.json
Normal file
86
src/packs/packs/adventuringgear.db/Karrak.json
Normal file
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Karrak",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A powerful painkiller, karrak allows creatures to continue through the most grievous injuries. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that allows them to roll an additional d4 when making an ability check or saving throw using Constitution, and at the start of each of the creature\u2019s turns it gains 2d4 temporary hit points. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, during which they must roll a d4 and subtract the result when making an ability check or saving throw using Contitution, and for the duration their current and maximum hit points are reduced by 2d4. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 0.16,
|
||||
"price": 90,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "heal",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "Add to ability check or saving throw using Constitution.",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"2d4 ",
|
||||
"temphp"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "d4",
|
||||
"save": {
|
||||
"ability": "wis",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Spice/Karrak.webp",
|
||||
"_id": "GHtBwdTRCHIpi8sz"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Kloo Horn.json
Normal file
41
src/packs/packs/adventuringgear.db/Kloo Horn.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Kloo Horn",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 330,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Kloo%20Horn.webp",
|
||||
"_id": "txKO9MDEwindPjME"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Lute.json
Normal file
41
src/packs/packs/adventuringgear.db/Lute.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Lute",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 350,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Lute.webp",
|
||||
"_id": "HDCRyHCl9BoJU8dj"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Macrobinoculars.json
Normal file
32
src/packs/packs/adventuringgear.db/Macrobinoculars.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Macrobinoculars",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Macrobinoculars are handheld viewing devices that allow users to observe distant objects. Some models are able to see into space from the surface of a planet.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 750,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Macrobinoculars.webp",
|
||||
"_id": "RLUL25bVOiQo9V0o"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Mandoviol.json
Normal file
41
src/packs/packs/adventuringgear.db/Mandoviol.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Mandoviol",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 425,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Mandoviol.webp",
|
||||
"_id": "IkEwux444DkKp4QJ"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Mechanics Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Mechanics Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Mechanic's Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This kit contains all of the commonly required tools to make repairs on constructs, such as ships, speeders, and turrets. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to perform repairs or install ship upgrades.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 25,
|
||||
"price": 650,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Mechanic_s%20Kit.webp",
|
||||
"_id": "kxtdNQ3crFH9UCuw"
|
||||
}
|
86
src/packs/packs/adventuringgear.db/Medpac.json
Normal file
86
src/packs/packs/adventuringgear.db/Medpac.json
Normal file
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Medpac",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A medpac is a quick-acting syringe filled with a concentrated dose of kolto. As an action, you can use this medpac to restore 2d4+2 hit points to a creature within 5 feet.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 300,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "heal",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"2d4 + 2",
|
||||
"healing"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Medical/Medpac.webp",
|
||||
"_id": "Ipew2cMqiiKVSAgW"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Mess Kit.json
Normal file
32
src/packs/packs/adventuringgear.db/Mess Kit.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Mess Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 20,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Mess%20Kit.webp",
|
||||
"_id": "kuepEFh2nRPdNKl5"
|
||||
}
|
102
src/packs/packs/adventuringgear.db/Mine Fragmentaion.json
Normal file
102
src/packs/packs/adventuringgear.db/Mine Fragmentaion.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"name": "Mine, Fragmentaion",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>When you use your action to set it, this mine sets an imperceptible laser line extending up to 15 feet. When the laser is tripped, the mine explodes, and each creature within 15 feet of it must make a DC 13 Dexterity saving throw. On a failed save, a creature takes 3d6 kinetic damage, or half as much on a successful one.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB ",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 500,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 15,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": 15,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"3d6",
|
||||
"bludgeoning"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Mine%2C%20Fragmentation.webp",
|
||||
"_id": "QdofeL9gjEkKdn0F"
|
||||
}
|
97
src/packs/packs/adventuringgear.db/Mine Plasma.json
Normal file
97
src/packs/packs/adventuringgear.db/Mine Plasma.json
Normal file
|
@ -0,0 +1,97 @@
|
|||
{
|
||||
"name": "Mine, Plasma",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>When you use your action to set it, this mine sets an imperceptible laser line extending up to 15 feet. When the laser is tripped, the mine explodes, coating the area in a 15-foot radius around it in fire that burns for 1 minute. When a creature enters the fire or starts its turn there it must make a DC 13 Dexterity saving throw. On a failed save, the creature takes 2d6 fire damage, or half as much on a successful one. A construct makes this save with disadvantage.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 550,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 15,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges"
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"weaponType": "improv",
|
||||
"properties": {
|
||||
"amm": false,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": false,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Explosive/Mine%2C%20Plasma.webp",
|
||||
"_id": "zrSOUA8dUg9lHVdS"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Mirror.json
Normal file
32
src/packs/packs/adventuringgear.db/Mirror.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Mirror",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 50,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Mirror.webp",
|
||||
"_id": "6lonjxIiNOkKjBZB"
|
||||
}
|
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Missile, Fragementation",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This wrist launcher ammunition deals 1d6 kinetic damage on a hit. Additionally, hit or miss, the missile then explodes. The target and each creature within 5 feet must make a DC 13 Dexterity saving throw, taking 1d6 kinetic damage on a failed save or half as much on a successful one.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 0.5,
|
||||
"price": 100,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "none",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 5,
|
||||
"units": "ft",
|
||||
"type": "radius"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": null,
|
||||
"max": null,
|
||||
"per": "",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "rwak",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d6",
|
||||
"bludgeoning"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "ammo",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Ammunition/Missile%2C%20Fragmentation.webp",
|
||||
"_id": "Ojkrl5msPVueqyXm"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Muon Gold.json
Normal file
81
src/packs/packs/adventuringgear.db/Muon Gold.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Muon Gold",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Muon gold is a lubricant-based spice that gives users intensified mental clarity and focus for a short time. As an action, you can apply this substance to a creature within 5 feet. For the next minute, the creature experiences a high that increases their current and maximum tech points by 2d4. At the end of the high, the creature must succeed on a DC 13 Wisdom saving throw or experience a low that lasts 10 minutes, their current and maximum tech points are reduced by 2d4. At the end of the low, the creature must make a DC 13 Constitution saving throw to resist addiction.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 0.16,
|
||||
"price": 650,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": 1,
|
||||
"units": "minute"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 1,
|
||||
"max": 1,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "other",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "2d4",
|
||||
"save": {
|
||||
"ability": "wis",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Spice/Muon%20Gold.webp",
|
||||
"_id": "RWrBkt91CAYqzCmX"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Ommni Box.json
Normal file
41
src/packs/packs/adventuringgear.db/Ommni Box.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Ommni Box",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 10,
|
||||
"price": 250,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Omnibox.webp",
|
||||
"_id": "I7meEgjaaG2fzHtX"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Pocket Scrambler.json
Normal file
32
src/packs/packs/adventuringgear.db/Pocket Scrambler.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Pocket Scrambler",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A pocket scrambler is a simple add-on to any commlink that automatically encodes any messages sent out. The transmitted message can only be read by a device equipped with a matched scrambler.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 800,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Communications/Pocket%20Scrambler.webp",
|
||||
"_id": "J13oK71qmUiWYym8"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Poisoners Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Poisoners Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Poisoner's Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A poisoner\u2019s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 500,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Poisoner_s%20Kit.webp",
|
||||
"_id": "zaLzNlsfzRf71Xpl"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Pouch.json
Normal file
50
src/packs/packs/adventuringgear.db/Pouch.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Pouch",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 5,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "weight",
|
||||
"value": 6,
|
||||
"weightless": false
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Storage/Pouch.webp",
|
||||
"_id": "ms32a7hpt43RJUeV"
|
||||
}
|
50
src/packs/packs/adventuringgear.db/Power Belt.json
Normal file
50
src/packs/packs/adventuringgear.db/Power Belt.json
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"name": "Power Belt",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "backpack",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>This belt has slots to hold six power cells, and can be connected to directly power a single blaster weapon that uses power cells. Once per turn, if the powered weapon would be reloaded, it can be done without using an action. Connecting or disconnecting a weapon takes an action. Replacing an expended power cell takes an action.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 400,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"capacity": {
|
||||
"type": "items",
|
||||
"value": 6,
|
||||
"weightless": true
|
||||
},
|
||||
"currency": {
|
||||
"cp": 0,
|
||||
"sp": 0,
|
||||
"ep": 0,
|
||||
"gp": 0,
|
||||
"pp": 0
|
||||
},
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Power%20Belt.webp",
|
||||
"_id": "dArOs86s3KFujI3A"
|
||||
}
|
81
src/packs/packs/adventuringgear.db/Power Cell.json
Normal file
81
src/packs/packs/adventuringgear.db/Power Cell.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "Power Cell",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Power cells fuel blaster weapons that deal energy or ion damage. Additionally, power cells are used to energize certain tools.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 10,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "",
|
||||
"cost": null,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": null,
|
||||
"units": "",
|
||||
"type": ""
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 240,
|
||||
"max": 240,
|
||||
"per": "charges",
|
||||
"autoDestroy": false
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": null,
|
||||
"actionType": "",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "ammo",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Ammunition/Power%20Cell.webp",
|
||||
"_id": "VUkO1T2aYMuUcBZM"
|
||||
}
|
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Projector Canister, Carbonite",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>When triggered, this wrist launcher ammunition produces a beam of carbonite energy in a line 15 feet long and 5 feet wide or a 15-foot cone. A single fuel canister holds enough fuel for three attacks in a line or a single attack in a cone. Each creature must make a DC 13 Constitution saving throw. On a failed save, a creature takes 1d4 cold damage and has its speed reduced by half until the end of your next turn. On a successful save, a creature takes half damage and isn\u2019t slowed. If this damage reduces a creature to 0 hit points, that creature is frozen in carbonite for 1 hour.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 150,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "none",
|
||||
"cost": null,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 15,
|
||||
"units": "ft",
|
||||
"type": "line"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 3,
|
||||
"max": 3,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d4",
|
||||
"cold"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "con",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "ammo",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Ammunition/Projector%20Canister%2C%20Carbonite.webp",
|
||||
"_id": "gH8V1Lvp60X2b2FT"
|
||||
}
|
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Projector Canister, Flame",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>When triggered, this wrist launcher ammunition produces a burst of flame in a line 15 feet long and 5 feet wide or a 15-foot cone. A single fuel canister holds enough fuel for three attacks in a line or a single attack in a cone. Each creature must make a DC 13 Dexterity saving throw, taking 1d8 fire damage or half as much on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren\u2019t being worn or carried.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 2,
|
||||
"price": 350,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "none",
|
||||
"cost": null,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 15,
|
||||
"units": "ft",
|
||||
"type": "line"
|
||||
},
|
||||
"range": {
|
||||
"value": null,
|
||||
"long": null,
|
||||
"units": ""
|
||||
},
|
||||
"uses": {
|
||||
"value": 3,
|
||||
"max": 3,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "save",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d8",
|
||||
"fire"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "dex",
|
||||
"dc": 13,
|
||||
"scaling": "flat"
|
||||
},
|
||||
"consumableType": "ammo",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Ammunition/Projector%20Canister%2C%20Flame.webp",
|
||||
"_id": "QKzanDFaJdhqdY0r"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Propulsion pack.json
Normal file
32
src/packs/packs/adventuringgear.db/Propulsion pack.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Propulsion pack",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Propulsion packs enhance underwater movement. Activating or deactivating the propulsion pack requires a bonus action and, while active, you have a swimming speed of 30 feet. The propulsion pack lasts for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 20,
|
||||
"price": 400,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Propulsion%20Pack.webp",
|
||||
"_id": "XR1obpDj1PqDLfA8"
|
||||
}
|
53
src/packs/packs/adventuringgear.db/Ram portable.json
Normal file
53
src/packs/packs/adventuringgear.db/Ram portable.json
Normal file
|
@ -0,0 +1,53 @@
|
|||
{
|
||||
"name": "Ram, portable",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 35,
|
||||
"price": 40,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": true,
|
||||
"alwaysActive": false,
|
||||
"effects": [
|
||||
{
|
||||
"modSpecKey": "data.abilities.str.value",
|
||||
"value": "4",
|
||||
"mode": "+",
|
||||
"targetSpecific": false,
|
||||
"id": 1,
|
||||
"itemId": "5AIp4xk1BWeJpS0A",
|
||||
"active": false,
|
||||
"_targets": [],
|
||||
"label": "Abilities Strength"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Ram.webp",
|
||||
"_id": "wVdZknqxKQi7KQ7O"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Remote detonator.json
Normal file
32
src/packs/packs/adventuringgear.db/Remote detonator.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Remote detonator",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A small handhold device with a single button, used to activate explosives. Over the course of 1 minute, you can synchronize the deton-ator with a single explosive device, such as a breaching charge, grenade, or mine. As an action, you can remotely detonate the paired explosive.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 150,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Remote%20Detonator.webp",
|
||||
"_id": "Sbe5QkH8xd9jU9AY"
|
||||
}
|
86
src/packs/packs/adventuringgear.db/Repair Kit.json
Normal file
86
src/packs/packs/adventuringgear.db/Repair Kit.json
Normal file
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"name": "Repair Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "consumable",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A repair kit included the basic tools needed to repair a droid after being damaged in combat. The kit has three uses. As an action, you can expend one use of the kit to restore 2d4+2 hit points to a droid or construct within 5 feet.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 750,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": "inst"
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "creature"
|
||||
},
|
||||
"range": {
|
||||
"value": 5,
|
||||
"long": null,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 3,
|
||||
"max": 3,
|
||||
"per": "charges",
|
||||
"autoDestroy": true
|
||||
},
|
||||
"consume": {
|
||||
"type": "",
|
||||
"target": "",
|
||||
"amount": null
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "heal",
|
||||
"attackBonus": 0,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"2d4 +2",
|
||||
"healing"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"consumableType": "potion",
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Medical/Repair%20Kit.webp",
|
||||
"_id": "HOQqmAhZvaKBPoXM"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Repulsor Pack.json
Normal file
32
src/packs/packs/adventuringgear.db/Repulsor Pack.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Repulsor Pack",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Repulsor packs are used to slow descent from a high elevation. Activating or deactivating the repulsor pack requires a bonus action and, while active, your rate of descent slow to 60 feet per round, and you ignore the effects of wind of less than moderate speed (no more than 10 mph). The repulsor pack lasts for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 10,
|
||||
"price": 300,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Repolsor%20Pack.webp",
|
||||
"_id": "Ao4Ab7SAkw10TAZq"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Respirator.json
Normal file
32
src/packs/packs/adventuringgear.db/Respirator.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Respirator",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A respirator, or breath mask, is a portable device that allowed an oxygen-breather to survive in low-oxygen atmospheres. Although not suitable for use in outer-space, these hands-free masks were essential equipment for deep-space travel that might require activity outside of a starship.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 200,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Life%20Support/Respirator.webp",
|
||||
"_id": "EDuNz0jxDB750uB1"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Restraining Bolt.json
Normal file
32
src/packs/packs/adventuringgear.db/Restraining Bolt.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Restraining Bolt",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Restraining bolts are small, cylindrical devices that can be affixed to a droid in order to limit its functions and enforce its obedience. When inserted, a restraining bolt restricts the droid from any movement its master does not desire, and also forced it to respond to signals produced by a hand-held control unit.</p>\n<p>Installing a restraining bolt takes 1 minute. The droid must make a DC 13 Constitution saving throw. A hostile droid makes this save with advantage. On a successful save, the restraining bolt overloads and is rendered useless. On a failed save, the restraining bolt is correctly installed, and the control unit can be used to actively control the droid. While the control unit is inactive, the droid can act freely but it can not attempt to remove the restraining bolt.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 350,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Restraining%20Bolt.webp",
|
||||
"_id": "F6Df6KevuW0rTE7K"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Rocket boots.json
Normal file
32
src/packs/packs/adventuringgear.db/Rocket boots.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Rocket boots",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>Rocket boots are a form of rocket propulsion system affixed to a pair of boots instead of being worn on the back like a standard jetpack. Activating or deactivating the boots requires a bonus action and, while active, you have a flying speed of 20 feet. The rocket boots last for 1 minute and can be recharged by a power source or replacing the power cell.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 2500,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Rocket%20Boots.webp",
|
||||
"_id": "x2SznYftRVTKCXAa"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Security Kit.json
Normal file
41
src/packs/packs/adventuringgear.db/Security Kit.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Security Kit",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A security kit includes the tools and electronic components necessary to bypass electronic and mechanical locks. It includes sensor devices, a specialized commlink designed to detect silent alarms, a small file, a set of lockpicks, a small mirror mounted to an elongated handle, a set of narrow-bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 3,
|
||||
"price": 650,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Kit/Security%20Kit.webp",
|
||||
"_id": "usVyAnJZ5vf3kWf6"
|
||||
}
|
41
src/packs/packs/adventuringgear.db/Shawm.json
Normal file
41
src/packs/packs/adventuringgear.db/Shawm.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Shawm",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "tool",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "PHB",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 20,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"ability": "int",
|
||||
"chatFlavor": "",
|
||||
"proficient": 0,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Musical%20Instrument/Shawm.webp",
|
||||
"_id": "wS3DLDX5AIMLhJ84"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Shock Gloves.json
Normal file
32
src/packs/packs/adventuringgear.db/Shock Gloves.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Shock Gloves",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A shock glove is a type of armored glove that is coated with a webbed lacing. When used for an attack, this webbing carries a charge that deals 1d4 lightning damage to any objects that the glove come in contact with. If you are engaged in combat with the target of the attack, you must make a grapple check instead of an attack roll, using a Strength (Athletics) check contested by the target\u2019s Strength (Athletics) or Dexterity (Acrobatics) check (the target chooses the ability to use).</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 1,
|
||||
"price": 500,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Shock%20Gloves.webp",
|
||||
"_id": "NRE6RgiMJlZwmo4y"
|
||||
}
|
102
src/packs/packs/adventuringgear.db/Shoulder Cannon.json
Normal file
102
src/packs/packs/adventuringgear.db/Shoulder Cannon.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"name": "Shoulder Cannon",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "weapon",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "<p>A shoulder cannon is a weapon mounted on a creature\u2019s shoulder with an integrated targeting interface that uses traditional power cells. When you would make a ranged weapon attack, you can fire this weapon instead. It has the ammunition (range 60/240), burst 4, and reload 4 properties, and deals 1d8 energy damage on a hit. The shoulder cannon has a proficiency bonus of +2 and a Dexterity score of 16, which are used instead of your proficiency bonus and Dexterity modifier when making attack and damage rolls with it.</p>",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "WH",
|
||||
"quantity": 1,
|
||||
"weight": 9,
|
||||
"price": 3200,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"activation": {
|
||||
"type": "action",
|
||||
"cost": 1,
|
||||
"condition": ""
|
||||
},
|
||||
"duration": {
|
||||
"value": null,
|
||||
"units": ""
|
||||
},
|
||||
"target": {
|
||||
"value": 1,
|
||||
"units": "",
|
||||
"type": "enemy"
|
||||
},
|
||||
"range": {
|
||||
"value": 60,
|
||||
"long": 240,
|
||||
"units": "ft"
|
||||
},
|
||||
"uses": {
|
||||
"value": 0,
|
||||
"max": 0,
|
||||
"per": ""
|
||||
},
|
||||
"consume": {
|
||||
"type": "ammo",
|
||||
"target": "",
|
||||
"amount": 1
|
||||
},
|
||||
"ability": "",
|
||||
"actionType": "rwak",
|
||||
"attackBonus": 5,
|
||||
"chatFlavor": "",
|
||||
"critical": null,
|
||||
"damage": {
|
||||
"parts": [
|
||||
[
|
||||
"1d8 + 3",
|
||||
"radiant"
|
||||
]
|
||||
],
|
||||
"versatile": ""
|
||||
},
|
||||
"formula": "",
|
||||
"save": {
|
||||
"ability": "",
|
||||
"dc": null,
|
||||
"scaling": "spell"
|
||||
},
|
||||
"weaponType": "simpleR",
|
||||
"properties": {
|
||||
"amm": true,
|
||||
"fin": false,
|
||||
"fir": false,
|
||||
"foc": false,
|
||||
"hvy": false,
|
||||
"lgt": false,
|
||||
"lod": false,
|
||||
"rch": false,
|
||||
"rel": true,
|
||||
"ret": false,
|
||||
"spc": false,
|
||||
"thr": false,
|
||||
"two": false,
|
||||
"ver": false
|
||||
},
|
||||
"proficient": false,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
}
|
||||
},
|
||||
"flags": {
|
||||
"dynamiceffects": {
|
||||
"equipActive": false,
|
||||
"alwaysActive": false,
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
"img": "systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Shoulder%20Cannon.webp",
|
||||
"_id": "m1xOrZbVJXy9jrQg"
|
||||
}
|
32
src/packs/packs/adventuringgear.db/Shovel.json
Normal file
32
src/packs/packs/adventuringgear.db/Shovel.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "Shovel",
|
||||
"permission": {
|
||||
"default": 0,
|
||||
"vXYkFWX6qzvOu2jc": 3
|
||||
},
|
||||
"type": "loot",
|
||||
"data": {
|
||||
"description": {
|
||||
"value": "",
|
||||
"chat": "",
|
||||
"unidentified": ""
|
||||
},
|
||||
"source": "",
|
||||
"quantity": 1,
|
||||
"weight": 5,
|
||||
"price": 7,
|
||||
"attuned": false,
|
||||
"equipped": false,
|
||||
"rarity": "",
|
||||
"identified": true,
|
||||
"attributes": {
|
||||
"spelldc": 10
|
||||
},
|
||||
"damage": {
|
||||
"parts": []
|
||||
}
|
||||
},
|
||||
"flags": {},
|
||||
"img": "systems/sw5e/packs/Icons/Utility/Shovel.webp",
|
||||
"_id": "BTIEhM7xeRYI0U8M"
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue