Weapons Damage stuff

This commit is contained in:
LeRatierBretonnien 2023-10-02 23:07:58 +02:00
parent 285d095d91
commit 9b7519afa7
62 changed files with 166 additions and 223 deletions

4
.gitignore vendored
View File

@ -8,7 +8,3 @@ todo.md
/jsconfig.json
/package.json
/package-lock.json
/packs/*/
/packs/*/CURRENT
/packs/*/LOG
/packs/*/LOCK

View File

@ -357,7 +357,7 @@ export class DarkStarsActor extends Actor {
} else {
await this.updateEmbeddedDocuments("Item", [{ _id: object.id, 'system.containerid': containerId }])
}
} else if (object && object.system.containerid) { // remove from container
} else if (object?.system.containerid) { // remove from container
console.log("Removeing: ", object)
await this.updateEmbeddedDocuments("Item", [{ _id: object.id, 'system.containerid': "" }]);
}
@ -374,7 +374,7 @@ export class DarkStarsActor extends Actor {
/* -------------------------------------------- */
async equipGear(equipmentId) {
let item = this.items.find(item => item.id == equipmentId);
if (item && item.system) {
if (item?.system) {
let update = { _id: item.id, "system.equipped": !item.system.equipped };
await this.updateEmbeddedDocuments('Item', [update]); // Updates one EmbeddedEntity
}
@ -467,7 +467,7 @@ export class DarkStarsActor extends Actor {
if (objetQ) {
let newQ = objetQ.system.quantity + incDec
if (newQ >= 0) {
const updated = await this.updateEmbeddedDocuments('Item', [{ _id: objetQ.id, 'system.quantity': newQ }]) // pdates one EmbeddedEntity
await this.updateEmbeddedDocuments('Item', [{ _id: objetQ.id, 'system.quantity': newQ }]) // pdates one EmbeddedEntity
}
}
}
@ -477,7 +477,7 @@ export class DarkStarsActor extends Actor {
if (objetQ) {
let newQ = objetQ.system.ammocurrent + incDec;
if (newQ >= 0 && newQ <= objetQ.system.ammomax) {
const updated = await this.updateEmbeddedDocuments('Item', [{ _id: objetQ.id, 'system.ammocurrent': newQ }]); // pdates one EmbeddedEntity
await this.updateEmbeddedDocuments('Item', [{ _id: objetQ.id, 'system.ammocurrent': newQ }]); // pdates one EmbeddedEntity
}
}
}

View File

@ -1,15 +0,0 @@
{"name":"Neo Soviet Hard Shell","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Cermetal 2","locations":{"head":{"protected":true,"max":30,"value":0},"abdomen":{"protected":true,"max":30,"value":0},"chest":{"protected":true,"max":30,"value":0},"leftleg":{"protected":true,"max":30,"value":0},"rightleg":{"protected":true,"max":30,"value":0},"leftarm":{"protected":true,"max":30,"value":0},"rightarm":{"protected":false,"max":0,"value":0}},"si":2,"skillbonus":"","availability":"P","equipped":false,"bulk":0,"cost":null,"description":"<p>Blocks 12 sieverts per hour. If it receives more than 12 sieverts per hour, after use must be destroyed.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.DndZ0pCGyR8y8SJK"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672108403022,"modifiedTime":1672108686724,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"3O3MjRkrmX4HeaPY"}
{"name":"Marine Armour","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Cermetal","locations":{"head":{"protected":true,"max":20,"value":0},"abdomen":{"protected":true,"max":20,"value":0},"chest":{"protected":true,"max":20,"value":0},"leftleg":{"protected":true,"max":16,"value":0},"rightleg":{"protected":true,"max":16,"value":0},"leftarm":{"protected":true,"max":16,"value":0},"rightarm":{"protected":true,"max":16,"value":0}},"si":1,"skillbonus":"","availability":"P","equipped":false,"bulk":0,"cost":null,"description":"<p>Marine Armour Includes comm and integral PCM, quick repair.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.gCMeXdaHyaNcfHHl"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092447361,"modifiedTime":1672108683847,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"3YqWrfVwifB9S1Gm"}
{"name":"Security Helmet","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Ridgy Plast","locations":{"head":{"protected":true,"max":8,"value":0},"abdomen":{"protected":false,"max":0,"value":0},"chest":{"protected":false,"max":0,"value":0},"leftleg":{"protected":false,"max":0,"value":0},"rightleg":{"protected":false,"max":0,"value":0},"leftarm":{"protected":false,"max":0,"value":0},"rightarm":{"protected":false,"max":0,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":null,"description":"<p>A high protection security helmet</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.iFryJgG9edVdkhG6"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672091636317,"modifiedTime":1672108691719,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"5FuYpmCKk28QGqwR"}
{"name":"Heavy Jacket","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Flexi Plast","locations":{"head":{"protected":false,"max":0,"value":0},"abdomen":{"protected":true,"max":1,"value":0},"chest":{"protected":true,"max":1,"value":0},"leftleg":{"protected":false,"max":0,"value":0},"rightleg":{"protected":false,"max":0,"value":0},"leftarm":{"protected":true,"max":1,"value":0},"rightarm":{"protected":true,"max":1,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":null,"description":"<p>Heavy Jacket flexi plast jacket, provides some protection small arms and knives.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.Lq6vGsSbxP5B5ZRu"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672091382680,"modifiedTime":1672108681860,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"8MZj41jbtAfDh6qU"}
{"name":"Yokohama Security Armour","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Cermetal 2","locations":{"head":{"protected":true,"max":30,"value":0},"abdomen":{"protected":true,"max":30,"value":0},"chest":{"protected":true,"max":30,"value":0},"leftleg":{"protected":true,"max":30,"value":0},"rightleg":{"protected":true,"max":30,"value":0},"leftarm":{"protected":true,"max":30,"value":0},"rightarm":{"protected":true,"max":30,"value":0}},"si":0,"skillbonus":"","availability":"R","equipped":false,"bulk":0,"cost":120000,"description":"<p>Yokohama Security Armour Blocks 14 sieverts per hour. If it receives more than 14 sieverts per hour, after use must be destroyed.&nbsp;</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.UbZt9a1OXk9s5MMM"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092872594,"modifiedTime":1672108709989,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"9MXqrbGCmj4wReOW"}
{"name":"Tycon Arms Defender","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Cermetal 2","locations":{"head":{"protected":true,"max":30,"value":0},"abdomen":{"protected":false,"max":0,"value":0},"chest":{"protected":false,"max":0,"value":0},"leftleg":{"protected":false,"max":0,"value":0},"rightleg":{"protected":false,"max":0,"value":0},"leftarm":{"protected":false,"max":0,"value":0},"rightarm":{"protected":false,"max":0,"value":0}},"si":0,"skillbonus":"","availability":"R","equipped":false,"bulk":0,"cost":35000,"description":"<p>Tycon Arms Defender helmet Comm, PCM, self sealing, space worthy. Blocks 8 sieverts per hour. If it receives more than 8 sieverts per hour, after use must be destroyed. 2 hours of life support.&nbsp;</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.VhRHbN3AtY8Pwqdo"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092595651,"modifiedTime":1672108701910,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"G2AnAOPyeQlWghN5"}
{"name":"Thebus Armoured Work Wear","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Flexi Plast","locations":{"head":{"protected":true,"max":5,"value":0},"abdomen":{"protected":true,"max":5,"value":0},"chest":{"protected":true,"max":5,"value":0},"leftleg":{"protected":true,"max":5,"value":0},"rightleg":{"protected":true,"max":5,"value":0},"leftarm":{"protected":true,"max":5,"value":0},"rightarm":{"protected":true,"max":5,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":3000,"description":"<p>Thebus Armoured Work Wear provides +10% to all technical tests.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.8tfxeZcBJfxBsmIM"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672091984261,"modifiedTime":1672108699813,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"IHxpPrGqdl56dMpt"}
{"name":"YiggRiff Hard Shell","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Cermetal 2","locations":{"head":{"protected":true,"max":17,"value":0},"abdomen":{"protected":true,"max":17,"value":0},"chest":{"protected":true,"max":17,"value":0},"leftleg":{"protected":true,"max":17,"value":0},"rightleg":{"protected":true,"max":17,"value":0},"leftarm":{"protected":true,"max":17,"value":0},"rightarm":{"protected":true,"max":17,"value":0}},"si":2,"skillbonus":"","availability":"P","equipped":false,"bulk":0,"cost":15000,"description":"<p>Blocks 8 sieverts per hour. If it receives more than 8 sieverts per hour, after use must be destroyed.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.qTQIYUntdBFU1KLd"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672108514253,"modifiedTime":1672108705709,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"IQ7sj2hD5yh73TRx"}
{"name":"Skin Suit (environmentally sealed)","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Flexi Plast","locations":{"head":{"protected":true,"max":1,"value":0},"abdomen":{"protected":true,"max":1,"value":0},"chest":{"protected":true,"max":1,"value":0},"leftleg":{"protected":true,"max":1,"value":0},"rightleg":{"protected":true,"max":1,"value":0},"leftarm":{"protected":true,"max":1,"value":0},"rightarm":{"protected":true,"max":1,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":500,"description":"<p>A thin layer of sealed armour primarly for environmental protection from toxins, low level radiation, and acid rain. Provides 10 hours of independant oxygen supply and lifesupport often worn under heavier armour.&nbsp;</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.lUSc6c6D1tqSqojK"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672091705245,"modifiedTime":1672108693300,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"NJIXgxTSU3xTolyQ"}
{"name":"Raider Armour (scrounged together)","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Flexi Plast","locations":{"head":{"protected":true,"max":3,"value":0},"abdomen":{"protected":true,"max":3,"value":0},"chest":{"protected":true,"max":3,"value":0},"leftleg":{"protected":true,"max":2,"value":0},"rightleg":{"protected":true,"max":2,"value":0},"leftarm":{"protected":true,"max":2,"value":0},"rightarm":{"protected":true,"max":2,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":800,"description":"<p>Raider armour is scrounged and contains off cuts and scrips from armour or tires, bits of plastic or metal. Can also be purchased as a gang suit manufactured by gangs in the mega cities.&nbsp;</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.ZZK3R7s7NhuxjmUP"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672091485957,"modifiedTime":1672108688229,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"OnVLyi5Tz2Of7LCP"}
{"name":"Military Hard Shell","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Cermetal 2","locations":{"head":{"protected":true,"max":25,"value":0},"abdomen":{"protected":true,"max":25,"value":0},"chest":{"protected":true,"max":25,"value":0},"leftleg":{"protected":true,"max":25,"value":0},"rightleg":{"protected":true,"max":25,"value":0},"leftarm":{"protected":true,"max":25,"value":0},"rightarm":{"protected":true,"max":25,"value":0}},"si":2,"skillbonus":"","availability":"P","equipped":false,"bulk":0,"cost":null,"description":"<p>Military Hard Shell Blocks 10 sieverts per hour. If it receives more than 10 sieverts per hour, after use must be destroyed.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.UZ2CjvWmbIkFIj23"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092706892,"modifiedTime":1672108685294,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"YXFJ4D4pJDoZWSw5"}
{"name":"Yokohama Mobile Security Suit","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"","locations":{"head":{"protected":true,"max":15,"value":0},"abdomen":{"protected":true,"max":15,"value":0},"chest":{"protected":true,"max":15,"value":0},"leftleg":{"protected":true,"max":15,"value":0},"rightleg":{"protected":true,"max":15,"value":0},"leftarm":{"protected":true,"max":15,"value":0},"rightarm":{"protected":true,"max":15,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":null,"description":"<p>Yokohama Mobile Security Suit provides +10% intimidation.<br><br></p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.dKcY7rwZY3XewoAW"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092155187,"modifiedTime":1672108708302,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"eNEC6AHRYrwGgS6I"}
{"name":"Ridgy Security Armour","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Ridgy Plast","locations":{"head":{"protected":true,"max":12,"value":0},"abdomen":{"protected":true,"max":12,"value":0},"chest":{"protected":true,"max":12,"value":0},"leftleg":{"protected":true,"max":12,"value":0},"rightleg":{"protected":true,"max":12,"value":0},"leftarm":{"protected":true,"max":12,"value":0},"rightarm":{"protected":true,"max":12,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":7000,"description":"<p>Ridgy Security Armour</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.DUcIIRnBywEYtE3c"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092084700,"modifiedTime":1672108689908,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"pOhc7ydvFhJ29gvE"}
{"name":"Tycon Mobile Security Suit","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"Ridgy Plast","locations":{"head":{"protected":true,"max":15,"value":0},"abdomen":{"protected":true,"max":15,"value":0},"chest":{"protected":true,"max":15,"value":0},"leftleg":{"protected":true,"max":12,"value":0},"rightleg":{"protected":true,"max":12,"value":0},"leftarm":{"protected":true,"max":12,"value":0},"rightarm":{"protected":true,"max":12,"value":0}},"si":1,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":22000,"description":""},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.fDmEK9nfCtV3AVR2"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672092242012,"modifiedTime":1672108703462,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"pU3vlWEAWRamT58h"}
{"name":"Skin Suit Rad Proof (environmentally sealed)","type":"armor","img":"systems/fvtt-dark-stars/images/icons/armor.webp","system":{"armortype":"","locations":{"head":{"protected":true,"max":2,"value":0},"abdomen":{"protected":true,"max":2,"value":0},"chest":{"protected":true,"max":2,"value":0},"leftleg":{"protected":true,"max":2,"value":0},"rightleg":{"protected":true,"max":2,"value":0},"leftarm":{"protected":true,"max":2,"value":0},"rightarm":{"protected":true,"max":2,"value":0}},"si":0,"skillbonus":"","availability":"C","equipped":false,"bulk":0,"cost":null,"description":"<p>Skin Suit Rad Proof (environmentally sealed)</p>\n<p>10 hours life support, often worn under armour. Blocks 5 sieverts per hour. If it receives more than 5 sieverts per hour, after use must be destroyed.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.Q156jztUqVkicxaF"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672091868386,"modifiedTime":1672108697085,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"q9JGWL4y4udYrzvD"}

BIN
packs/armor/000005.ldb Normal file

Binary file not shown.

1
packs/armor/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

8
packs/armor/LOG Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:04:27.671366 7f9ff2ffd6c0 Recovering log #20
2023/10/02-23:04:27.683971 7f9ff2ffd6c0 Delete type=3 #18
2023/10/02-23:04:27.684069 7f9ff2ffd6c0 Delete type=0 #20
2023/10/02-23:07:21.980681 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:21.980715 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:21.986773 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.000163 7f9d71bff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
2023/10/02-23:07:22.000198 7f9d71bff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)

8
packs/armor/LOG.old Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:02:12.088833 7f9ff27fc6c0 Recovering log #16
2023/10/02-23:02:12.099337 7f9ff27fc6c0 Delete type=3 #14
2023/10/02-23:02:12.099411 7f9ff27fc6c0 Delete type=0 #16
2023/10/02-23:02:46.935231 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.935281 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:46.942272 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:46.942399 7f9d71bff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
2023/10/02-23:02:46.952519 7f9d71bff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)

BIN
packs/armor/MANIFEST-000022 Normal file

Binary file not shown.

1
packs/conditions/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

7
packs/conditions/LOG Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:04:27.723032 7f9ff2ffd6c0 Recovering log #20
2023/10/02-23:04:27.732513 7f9ff2ffd6c0 Delete type=3 #18
2023/10/02-23:04:27.732562 7f9ff2ffd6c0 Delete type=0 #20
2023/10/02-23:07:22.015905 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:22.015952 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:22.022177 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.029102 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

7
packs/conditions/LOG.old Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:02:12.139034 7f9ff27fc6c0 Recovering log #16
2023/10/02-23:02:12.148821 7f9ff27fc6c0 Delete type=3 #14
2023/10/02-23:02:12.148879 7f9ff27fc6c0 Delete type=0 #16
2023/10/02-23:02:46.973684 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.973707 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:46.981262 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:46.989568 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

1
packs/currency/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

0
packs/currency/LOCK Normal file
View File

7
packs/currency/LOG Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:04:27.734044 7f9ff3fff6c0 Recovering log #20
2023/10/02-23:04:27.744176 7f9ff3fff6c0 Delete type=3 #18
2023/10/02-23:04:27.744225 7f9ff3fff6c0 Delete type=0 #20
2023/10/02-23:07:22.022369 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:22.022421 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:22.028956 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.029115 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

7
packs/currency/LOG.old Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:02:12.150825 7f9ff37fe6c0 Recovering log #16
2023/10/02-23:02:12.160944 7f9ff37fe6c0 Delete type=3 #14
2023/10/02-23:02:12.160994 7f9ff37fe6c0 Delete type=0 #16
2023/10/02-23:02:46.981395 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.981418 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:46.989386 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:46.996395 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

1
packs/equipment/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

0
packs/equipment/LOCK Normal file
View File

7
packs/equipment/LOG Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:04:27.686295 7f9ff3fff6c0 Recovering log #20
2023/10/02-23:04:27.695672 7f9ff3fff6c0 Delete type=3 #18
2023/10/02-23:04:27.695772 7f9ff3fff6c0 Delete type=0 #20
2023/10/02-23:07:21.993485 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:21.993533 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:22.000029 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.000189 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

7
packs/equipment/LOG.old Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:02:12.101737 7f9ff37fe6c0 Recovering log #16
2023/10/02-23:02:12.113046 7f9ff37fe6c0 Delete type=3 #14
2023/10/02-23:02:12.113107 7f9ff37fe6c0 Delete type=0 #16
2023/10/02-23:02:46.952550 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.952585 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:46.960735 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:46.973672 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1,86 +0,0 @@
{"name":"Upgrade Tools of the Trade","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Technician","requirements":"Requires a relevant Engineering skill of 60%","xpcost":100,"cost":0,"description":"<p>An engineer can upgrade one piece of equipment per character in the group, to upgrade the equipment they must succeed in a relevant skill check. For each degree of success, the item receives one of the bonuses, bonuses do not stack +10% on skill checks with the item, +25% to structure points (SP) or armour (AP), round up, +50% more range of the item, +2 to Stealth Rating, +2 To Sensor Rating, Double to storage capacity of computer systems, +2 To Programme Strength, +20% to Firewall Strength. The upgrade can be performed again once the relevant skill of the technician has increased.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.9T7T3uEaVyxdWH3H"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672224333744,"modifiedTime":1672355593175,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"0LA7gMBDogO56AZK"}
{"name":"Mr Roboto","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":500,"cost":0,"description":"<p>Robotic and cybernetic characters can take this perk. The character now has a +20% on the number of structure points or Hit points that a robotic or cybernetic component has (round up). It only applies to components embedded in part of their body or cyber replacements parts.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.srENv7lt6bATGgi9"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353569380,"modifiedTime":1672355542183,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"10oeP0MOIcz8dyMr"}
{"name":"Medical Technician","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The character is a paramedic or doctor, a true health care professional. The character receives a +10% on all skill checks in science and medical related checks. +50 Humanity Points. Once per session the character can re-roll a failed medical check on another character. Once per session the character can heal a total of their intelligence in hit points on all the characters, they are treating dividing up their intelligence state between each of their patients. EG character with 6 Intelligence healing 2 people can heal each of them an additional 3 Hit points. These points are healed over the day and not healed instantly. Requires a medical skill of<br>40%</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.mlhAYRLFrXgcX8Wi"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220068919,"modifiedTime":1672355539616,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"1chLXnUgsPhV50XV"}
{"name":"Weapons Designer","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Technician","requirements":"Weapons Engineering skill of 60%","xpcost":200,"cost":0,"description":"<p>The technician can upgrade weapons or create new designs. The weapons designer can add one property per degree of success they achieve, the upgrade can only be performed on a weapon or weapon linked system. +2 damage and penetration (+20% for large military weapons like cannons), +50% to the ammunition capacity, +50% to the range of the weapon, +2 to sensor rating of the sensors.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.rZwgaZrEj2LRFpue"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672224421842,"modifiedTime":1672355597039,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"20dcF0rrpuAUHE6g"}
{"name":"Research Scientist","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Head Stooge","requirements":"one science skill 50%","xpcost":200,"cost":0,"description":"<p>The stooge knows intimately a research scientist, and that scientist can perform research tasks for the stooge. The stooge has promised them something in return and may or may not fulfil it. The scientist is motivated and if helping other characters or researching on their own provides 10% bonus to all science related skills. If using the research rules this is 2 automatic successes per month.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.9c0zzM69TiIMfAdx"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352184025,"modifiedTime":1672355561632,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"3pxRZhbGH8GROoO2"}
{"name":"Berserker","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":10,"description":"<p>A character with this perk is a berserker! Maybe it&rsquo;s their Scandinavian ancestry, or they can just get really, really angry. Once per game session (or after the GM determines enough in-game time has passed) the character may enter an enraged state. This is done as a free action and must be declared before initiative is rolled. When enraged the character literally goes berserk, tearing into enemies with the most brutal melee weapon they can get their hands on. The enraged state lasts for a number of combat rounds equal to the character&rsquo;s Constitution stat. At the end of this time, the character drops to zero Fatigue until they have rested for a significant time (up to the GM but 30-60 mins).</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.eVGZVDOG2Aee3KFj"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175662541,"modifiedTime":1672355481952,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"4CqVE4Yzgt5ZZEH3"}
{"name":"Warrior Soldier","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The character is a warrior and more skilled than other characters at combat operations. The character receives a +10% on all recon checks to spot ambushes or concealed equipment, +10% on Called Shots or Attacks, +5 Fatigue Points. Once per session the character can re-roll a failed recon check. &nbsp;Requires a combat skill of 40%</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.5BazvYNhaVollVkp"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672219977468,"modifiedTime":1672355595727,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"4vzWgvOfVMRalYn1"}
{"name":"Spear Master","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":1000,"cost":0,"description":"<p>Spear Masters have mastered cuts, thrusts and blocks. Spear Masters are particularly deadly closing in the opening moments of combat. Spears will have their special properties doubled. Add +2 to damage.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.oDMfgKVzlWjPaesC"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353864875,"modifiedTime":1672355569200,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"6FsoEyGjpqVPz2YL"}
{"name":"Cyber Gang","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Head Stooge","requirements":"streetwise 50%","xpcost":300,"cost":0,"description":"<p>The stooge has been supplying a cyber gang with free stuff in debiting them to the stooge.<br>They don&rsquo;t like the stooge but owe them. The stooge makes a call and a persuade check, if that<br>check succeeds 1d6 cyber gangers will arrive in 2d6 hours to assist the stooge in whatever enterprise they have.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.9Ll1L9PtEzfMoE9Q"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352086849,"modifiedTime":1672355488296,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"7T2lI6xo821zeAeP"}
{"name":"Fan Rage","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Celebrity","requirements":"50% in one performance skill","xpcost":100,"cost":0,"description":"<p>The celebrity has inspired their fans to attack a company, individual or political group or even boycott that group. For all intents and purpose the fans will cause a ruckus and at least are very distracting. Its every likely that the issue will be discussed in the popular spheres of news. The&nbsp;<br>gm must decide what this does for the players benefit but at the very least it should bring attention to the issues. Mechanically for each degree of success the organisation will receive a global penalty of 5% per degree of success to all their tasks as fans sabotage their operations. For each degree of success this activity will continue for 1 week.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.KvZHroToAnDx5aIW"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672226287149,"modifiedTime":1672355499978,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"8A8b7kReRGV9bCC0"}
{"name":"Natural Pilot","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":200,"cost":0,"description":"<p>Your character is highly attuned to driving and controlling vehicles. All Pilot skills gain a +10% bonus.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.7il0tv3FPe36iC2w"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353350004,"modifiedTime":1672355547039,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"9LzjO8uycbp9WexV"}
{"name":"Non-Lethal Expert","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Enforcer","requirements":"50% unarmed, melee or weapon skill","xpcost":100,"cost":0,"description":"<p>The enforcer has learned to get more nonlethal effect from their non-lethal weapons. These weapons add +2 to penetration and add an extra 2d6 fatigue points of damage. This can include unarmed attacks.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.oJQEqIi7HArZk2rB"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351399763,"modifiedTime":1672355548087,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"9t50XDpgg2dZpaFY"}
{"name":"Contacts in high places","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Stringer","requirements":"50% Social and Style","xpcost":200,"cost":0,"description":"<p>The stringer has contacts that can assist them, perhaps law enforcement, government, corporations, syndicate members or military. The contact can help the stringer in any way they can. This is a more powerful perk than the contacts perk and can only be used once per Scenario. The GM will need to decide what the contact can do, but it could be arrange passage out of a warzone, begin legal proceedings against a corporation, give the stringer 10,000 credits.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.VT6i6kolHJCQu75a"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351621771,"modifiedTime":1672355486151,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"B2OjSQd9vK3tsDLI"}
{"name":"Fire Discipline","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"Ballistics skill of 50 or more","xpcost":100,"cost":0,"description":"<p>When you receive a command from a leader who spent an action issuing the command and directing fire, then provided that leader has the Let&rsquo;s Rock perk or the Leader perk, you receive a bonus on 10% on your next Ballistics check.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.cxhRTVKlmvOUHpuG"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354623274,"modifiedTime":1672355511822,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"B8Mhgv9oeWHd7wkG"}
{"name":"Resources","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":300,"cost":0,"description":"<p>This perk allows the character to amass a series of lines of credit, revenue, favours and good will. You can make a Persuasion or Manipulation roll to immediately amass an amount of cash that can be collected from any major bank. For every 10% the character makes their skill check by, the character amasses 3,000 credits that can be immediately used. You don&rsquo;t even have to pay it back. This can be done once per session and every time the perk is used successfully there is a 20% chance that those avenues of resources have dried up; the character loses this perk. The perk can be repurchased any time it is lost by spending the XP again.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.TDLGq2a8TG7zKxDf"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354024819,"modifiedTime":1672355562840,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"CNnuJwSUyfRpko2S"}
{"name":"Multi Skilled","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":200,"cost":0,"description":"<p>The character can select a second role and acquire those second set of perks. The character will have to pay 20% more experience for Perks in the second role.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.0LAHp36U3Tpkj1j6"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354694114,"modifiedTime":1672355544873,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"CufMdkFOPEIMPSOl"}
{"name":"Technician","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The character is a technician and is able to design and repair all sorts of gadgets. Most engineers have a speciality field, weapons, cybernetics, electronics etc. All technicians receive one re-roll per session on a failed repair attempt. All technicians receive a +10% to all engineering and science skills except medicine, surgery, first aid, psychiatry, and pharmacology.</p>\n<p>Once per session the technician can repair a completely broken component by jury rigging<br>it, this will add a temporary 4d6 Structure point, this repair will last until the next scene.<br>Requires an engineering or science skill of 40%</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.Z0t7eFFVK1NIhK2y"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220148447,"modifiedTime":1672355578720,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"DYFsikJWxjrVOf6N"}
{"name":"Get to the Chopper","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"Starting Initiative of 3 or less","xpcost":100,"cost":0,"description":"<p>Even though your character is slow on their reflexes, when you hear commands from leaders, you react faster. If your character receives a command that they want to react to, regardless of the leadership qualities of that character, you can take your next action immediately after that command. Your initiative order stays the same, but you take your next action sooner or later and perform the action. This can only be performed once per round, and the &ldquo;leader&rdquo; character must have used an action to issue the command.</p>\n<p>Example: Brink has the perk Get to the Chopper. Wilmer issues a command on action 24, for everyone to take cover behind the wall. Brink can now move his action on 12 to 23 and<br>use that to take cover.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.Z02xElfWh1A5BuBl"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354269627,"modifiedTime":1672355513768,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"FKdhowXqf1yH3GsW"}
{"name":"Combat Medic","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Medical Technician","requirements":"Requires First Aid 50%","xpcost":200,"cost":0,"description":"<p>The character is used to performing under fire and getting their team back in the fight. The character can spend 1 or more actions to perform first aid and battlefield surgery. The character makes a medical check, and for each degree of success may spend 1 action treating the patient. The medic will instantly heal 1d3 Hit points per action spent.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.ox2rNWmf2jKYKTBk"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672223509693,"modifiedTime":1672355483944,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"G2fnx4Xr8BylrtJS"}
{"name":"Powerful footage","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Stringer","requirements":"Art Film, language 50%","xpcost":200,"cost":0,"description":"<p>The stringer presents information in such a way that the entire group receives a bonus to their persuade checks. For each degree of success the stringers composition adds 10% to all social checks of the characters for the scene.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.5zacbKu8nY5UiZRF"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351710247,"modifiedTime":1672355550303,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"GHhjLSFS7FTd3fSj"}
{"name":"Master Of Weapons","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":800,"cost":0,"description":"<p>Any weapon the character uses will have its special properties doubled. Ranged weapons will have their effective range increased: Close to Short, Short to Medium, and Medium to Long. Any other weapon without a special property will receive +2 bonus to Penetration.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.PsKG66u8SlJDIz6z"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353757075,"modifiedTime":1672355538552,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"Hfl4G5tTuG3CUh3G"}
{"name":"Tough-Minded","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":30,"description":"<p>Mind control doesn&rsquo;t work too well on you. In fact, normal people can&rsquo;t even hypnotise you. Attempts at mind control on you suffer an additional 40% penalty.<br><br>30 SS cost</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.P2EAh9Zthx8E6iTM"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672109836110,"modifiedTime":1672355587568,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"HsAGgMseZMPoydb7"}
{"name":"Trauma Specialist","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Medical Technician","requirements":"Requires Medicine 50%","xpcost":200,"cost":0,"description":"<p>The character receives a re-roll on all attempts to stabilise a dying patient. If the patient suffered hit point loss from bleeding that damage is all automatically recovered.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.o3d4AiZ7h4i0ZqNy"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672222875444,"modifiedTime":1672355589792,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"Jj2ejcHHwOJYVI9H"}
{"name":"Grease Monkey Vehicle","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Technician","requirements":"Related Engineering skill of 60%","xpcost":300,"cost":0,"description":"<p>The technician is able to fix repair and modify vehicles like no one else. For each degree of success the grease monkey can repair 20% of the structure of the vehicle per 1 hour of work. If modifying a vehicle the grease monkey can add the following upgrades one per degree of success. +20% to fuel capacity or operation time, +25% to top speed, +25% power generation, +25% to available spaces<br>by more efficiently using space and combining components, in vehicles with no spaces left the vehicle receives 25% of its base spaces as free space to add new components.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.1zdpal8OOZcz114F"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225016241,"modifiedTime":1672355514824,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"L2qCQyJsYCW4yyDw"}
{"name":"Let's Rock","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"Starting Initiative of 4 or greater","xpcost":400,"cost":0,"description":"<p>This is a leadership perk for characters with either Persuasion and Manipulation or the Professional skills Military Tactics or Battle Tactics. This character is defined as the leader. The leader can trade their own actions to one or more characters. If they fail their roll however they lose the action they attempted the roll on and cannot trade any actions. On the first round of combat, the leader can make a skill check on the relevant skill to trade their actions to another character. A character can only receive one action in this way and the leader who trades their action will lose that action from the next action they take. One action plus another action can be traded per degree of success; this must be traded to a character who has not already received a traded action. The character who receives the traded action will then take that action in the next initiative segment after the leader&rsquo;s first action. The leader may perform Let&rsquo;s Rock alongside another action by receiving -20% on both actions (as per the normal rules for taking multiple actions).</p>\n<p><br>Example: Jacks uses Let&rsquo;s Rock on her Battle Tactics check. She rolls 24 for Initiative and has 4&nbsp; actions, and Tom and Linda have two actions each. Their two actions start on 14 and 12&nbsp; espectively. On action 24 Jacks uses Let&rsquo;s Rock, while also shooting with her Squad Automatic weapon. Her Battle Tactics is 80%, and her Ballistics Weapons is 80%, but she receives -20% on both skills. She rolls 4% on Ballistics Weapons and 40% on Battle Tactics. This gives her two&nbsp; degrees of success, and she will lose her next two actions, as two actions were traded to the other characters. (Jacks could have traded three actions total, losing three actions.) As she shot her weapon on thefirst action, that is not considered lost. Each character will have their new traded action immediately after the Battle Tactics and Ballistic Weapons checks, in this example action 23. The other characters then take that free action.&nbsp;</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.nBTHDJ9CSAKqEmDa"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354098844,"modifiedTime":1672355531159,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"MHGTHoscqACAThpT"}
{"name":"The Blue Fury","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Enforcer","requirements":"50% in persuade skill","xpcost":300,"cost":0,"description":"<p>The character first makes a persuade check, telling their law enforcement contacts that they need backup and assistance. The character can summon a horde of police from their contacts, police will cross jurisdictional lines to assist the character arriving as quickly as their vehicles can carry them. For each degree of success 1d6 law enforcement or security guards will descend on the characters location. This will be a very flashy arrival with sirens blaring and blue lights flashing. The police will then assist the character for however many scenes requires the crime to be resolved.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.99R3lYVOTA51piFg"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351235822,"modifiedTime":1672355580879,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"MYwpEBGq42EEDxIB"}
{"name":"Stamina","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":100,"cost":0,"description":"<p>This perk grants the character a bonus of 10 points to their Fatigue points total. This perk may be taken up to three times.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.akeE7DYXKKaZ1IY0"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353531092,"modifiedTime":1672355570111,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"NUPwbemn6IHjiB3j"}
{"name":"Lowlife Connections","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Fixer","requirements":"streetwise 60%","xpcost":100,"cost":0,"description":"<p>The fixer has focused themselves on connecting with the criminals of society. In any criminal interaction or skill check the fixer receives a re-roll if the action is not going the fixers way. For example extorting some shop keepers, the fixer gets a re-roll because of the criminal connections. The fixer can also send these criminal connections to act on their behalf, and they too will receive a re-roll on the given skill. Once per session the fixer can call in cash favours by making a persuade check. They then will receive 1,000CR per degree of success.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.GrLY5pkUKcZJYbrA"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352402989,"modifiedTime":1672355534001,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"PITT5ybwaeN3I2VW"}
{"name":"Fang it!","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Road Warrior","requirements":"Pilot or Driving skill of 60%","xpcost":100,"cost":0,"description":"<p>The character can increase the top speed of the vehicle by pushing the vehicle beyond its design limits. The engine plus one component will suffer 1d6 per round of damage from the excessive use but the top speed is increased by 50%. This bonus stacks with all other speed bonuses.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.DnbSyfvfHDsGJCgI"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225247665,"modifiedTime":1672355510520,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"PT8tRuZs8wq2RWLg"}
{"name":"Therapy","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Medical Technician","requirements":"psychiatry and pharmacology 50%","xpcost":200,"cost":0,"description":"<p>The character can perform therapy along with the use of specific drugs (costing 100 credits per session) to restore humanity to characters that have lost humanity. Each week the character makes a check on their psychiatry, for each degree of success the patient gains 1d3 humanity. The character is never cured of their insanities, but they learn to live with them.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.BIKmhzNci6c400om"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672223388590,"modifiedTime":1672355583231,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"RfXUzc4pS6cQAegd"}
{"name":"Street Fighter","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Warrior Soldier","requirements":"","xpcost":200,"cost":0,"description":"<p>The character is skilled at brawling and street fighting. When facing multiple opponents, the bonus opponents receive from ganging up is reduced by 10% if the character has 50% or more in melee or unarmed combat, 20% if they have 70% or more in melee or unarmed combat and 40% if they have 80% or more.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.cGsAOX9ih3E1BPSA"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672221653110,"modifiedTime":1672355571144,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"S8MjwSmWq1KgVOh9"}
{"name":"Quick on the Draw","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Warrior Soldier","requirements":"","xpcost":200,"cost":0,"description":"<p>The character is fast to act, they roll their normal starting initiative but add an additional d6+2 to the first action, making that action carry forward in the turn order but still taking their second action as it normally would be taken.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.hNvG9jwPxYlZH9Q9"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672221560476,"modifiedTime":1672355553954,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"SmSbd0kTEIsZqxrR"}
{"name":"Luck Of The Leprechaun","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":10,"description":"<p>You get 1 re-roll of any test you make per session. Once used, you must wait for the next game session to use it again. This affects only skill and attribute checks.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.BwKEUssx3VjRgPDn"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175922559,"modifiedTime":1672355535536,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"UnTUIGtB6nVgLRhn"}
{"name":"Dolla Dolla bills Yall","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Celebrity","requirements":"Requires 50% in one performance skill","xpcost":200,"cost":0,"description":"<p>The character can extract royalties from advertisers or other stooges who like their stuff. They make a persuade check and for each degree of success, receive 1,000 credits in royalty payments, these are sent immediately and thus many potential earnings are lost but they money arrives that day. After these bills are extracted, the Celebrity will need to produce a new work to use this perk again.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.jOHFJtauteWfKO4x"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672226489173,"modifiedTime":1672355491576,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"YDiTFpUIHI5rEwU6"}
{"name":"Armour Affinity","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":400,"cost":0,"description":"<p>The character is used to using armour to its maximum potential. The character can add 10%<br>more armour (round up) to their AP ratings for any armour the character is using. This is only applied to personal armour, and cannot be used with power armour, force fields or vehicles with<br>armour.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.A5EK2oSJaIko8Dv3"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353121661,"modifiedTime":1672355478241,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"YrVss2CRpVAj1QSv"}
{"name":"Road Warrior","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The character comes from some gang of nomadic vehicle using people. They can count on their clan to assist them. The character is also an amazing pilot or driver. Chose a given pilot skill and the character receives one free re-roll per session using that skill. The character also adds +10% to that skill as a bonus to all rolls.</p>\n<p><br>The character suffers half the normal penalties from performing multiple actions in their given vehicle example if they are on a motor cycle and jumping over a car while shooting a pistol this<br>is normally -20%, however for this character is only -10%. Road warriors can also perform an evasion or dodge using their vehicles, by using an action they can dodge an incoming attack requiring the same or more degrees of success to dodge as the attacker had.</p>\n<p>Requires an piloting skill or driving of 40%</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.T7ydlgx8hjEU9fnE"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220380805,"modifiedTime":1672355564896,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"YyBN60duFwWHgZ7w"}
{"name":"Distracting Performance","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Celebrity","requirements":"50% in one performance skill","xpcost":390,"cost":0,"description":"<p>The character can use their performance skill to distract NPCs. The character makes a performance check and for each degree of success each viewer, watcher or listener of the performance will need to make a self-control check. If the NPC fails the check they will lose 1 action per degree of success of the Celebrity or will receive a penalty of 10% per degree of success if combat has not begun to their next skill check.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.x3yFdnC7RSR3zxFc"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672226168813,"modifiedTime":1672355490360,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"ZBkzmLxS8rGQEMey"}
{"name":"Fixer","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The fixer is a criminal or quasi legal person who solves problems, often using contacts and other means. All fixers have multiple networks and contacts, on any given streetwise check the fixer receives +10%. On opposed persuade or intimidation checks the fixer receives +1 automatic success. Once per session the fixer can re-roll a failed streetwise, persuade or intimidation check.<br>Streetwise 40% and Pursuade 40%</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.8sI1IK9ZzLKc3cnP"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220854620,"modifiedTime":1672355512785,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"ZVyuECQjkD4WDZN9"}
{"name":"Drug Specialist","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Medical Technician","requirements":"Chemistry or Pharmacology 40%","xpcost":200,"cost":0,"description":"<p>The character can make a successful pharmaceutical roll to reduce the addictiveness of a drug being administered by them.&nbsp;</p>\n<p>Characters receiving the drug roll twice for addition and take the most favourable result.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.wqf86rDLNZJCRpub"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672222640304,"modifiedTime":1672355492736,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"a4XJyiqtrlBtgWZc"}
{"name":"Leader","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>Your character is a born leader. When issuing commands which can work with other leadership perks, you can make a skill check associated with that command. If you succeed on that skill check then for each two degrees of success you will provide a bonus of 5% to the characters performing actions relating to that command. If used in long running tasks this counts as 1 degree of success per two degrees of success on your check. Skills which can work with leadership include: Profession Military Forces, Profession Corporate Officer, Profession Science Officer, Military Tactics, Battle Tactics, any Engineering or Science skill, Persuasion and Manipulation, plus any other skills the GM determines. In a given round there can only be one leader issuing commands, but multiple leaders may try. The first leader to issue a command is the leader for all bonuses that round. In long running tasks multiple leaders may issue commands but the players and the GM can choose how these bonuses may be allocated.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.fiYcViRevcQJvOwX"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672176193476,"modifiedTime":1672355529664,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"aTQkUuhATyT4k1N0"}
{"name":"Evasive Driving","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Road Warrior","requirements":"Pilot or Driving skill of 50%","xpcost":200,"cost":0,"description":"<p>When being chased the character receives an additional +10% to their pilot or driving checks, and if there is an opposed roll, they receive an automatic extra success. Each round the character can make one evasive action at no action cost.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.eP2XaLtQPKfEw1l4"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225160705,"modifiedTime":1672355496305,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"ahcNDD0R4VLR3zSO"}
{"name":"Stubborn","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Warrior Soldier","requirements":"","xpcost":100,"cost":0,"description":"<p>The character has a never give up or never say die attitude, receives a +2 to self-control checks regarding suppressive fire, checks when combat starts in the event of ambush, once per day the character can recover 1d6 Hit Points.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.IGwmHbVkdWNayjEg"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220960693,"modifiedTime":1672355573536,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"bYCdwZdADnndaIDt"}
{"name":"Ground Work","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Hacker","requirements":"Persuade 50%","xpcost":200,"cost":0,"description":"<p>You have already laid out a series of social engineering attacks on your given target or know someone who did. When attacking that given target all your programs receive +2 to their strength, you also get one re-roll on a run against a physical facilities intrusion counter measure.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.8FMQ4OnK6NuZkTtx"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225902194,"modifiedTime":1672355515800,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"e6D0WO3pTGKbJR8M"}
{"name":"Improvised Weapons","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":200,"cost":0,"description":"<p>Any item can be used as a weapon. Improvised Weapons allows the character to pick up and use or throw any object as an improvised weapon to greater effect. These objects will inflict between 1d6 and 2d6 plus MCDB, or half MCDB if thrown with larger objects causing more damage.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.wbJczfXVZQyZXtzo"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353215453,"modifiedTime":1672355522392,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"ecKx5H9Zh80PRtFu"}
{"name":"Influence","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":600,"cost":0,"description":"<p>This perk enables a character to gain influence in either a corporation or government branch.<br>This influence can be used to acquire goods, services, resources or other components that the organisation is able to provide.</p>\n<p><br>A normal Persuasion or Manipulation roll is required. If successful, the organisation will attempt to give you what you ask for. The Game Master must decide if this can happen or not, and the Game Master&rsquo;s decisions are final. However, this perk allows you to exert influence remotely via net, letter, fax, phone or face-toface communications.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.x85cjiN1km9mCA7N"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353961385,"modifiedTime":1672355523377,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"fLpYB8rMnvXFtmNL"}
{"name":"Dirt","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Stringer","requirements":"","xpcost":100,"cost":0,"description":"<p>The character has some piece of dirt on a given NPC. By making a verbal threat against the person the stringer unbalances the NPC. The stringer makes an opposed manipulation check to coerce or blackmail the NPC if the stringer wins this test. Then that NPC will receive a -20% to all actions for the scene as they are so disturbed about the information getting out. The Stringer can change the NPC once per week.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.VAuElPlqlS9EdSz4"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351556106,"modifiedTime":1672355489384,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"gB4bhgty4vBYxoZD"}
{"name":"Natural Aptitude","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":20,"description":"<p>You have a natural aptitude for a non combat skill. You receive a 20% bonus on any checks with the skill, once per game week you can reroll one failed check on that skill.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.DqAGwLpowUl7z1t7"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175591382,"modifiedTime":1672355546033,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"gbmVPOxEfqGZFhTb"}
{"name":"Tell me the truth","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Stringer","requirements":"50% persuade and manipulate","xpcost":100,"cost":0,"description":"<p>The stringer compels or tricks the truth out of an interview subject. This can be on air or not.<br>The stringer makes a persuade check the subject makes a self-control check. For each degree of success the stringer got, the subject of the interview receives a -1 to their self-control stat for the self-control check.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.mW4yXJQNaoSnYf5V"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351786648,"modifiedTime":1672355579903,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"gnxr6jGPAyhNyyj1"}
{"name":"Profession Specialty","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":100,"cost":0,"description":"<p>You have a special understanding of one of your skills. Choose a Science, Engineering, Piloting or Professional skill and get +10% bonus on one aspect, for example Alchemy. You can also use the Profession Specialty on Farming and Herding. The bonus is only applied to that aspect of the skill.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.bYGg7iMOrb666qMZ"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353436620,"modifiedTime":1672355552616,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"hpxHz33Rr7i0lVvu"}
{"name":"Secret Paths, Secret Lines","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Hacker","requirements":"Programming or Computer Operation 50%","xpcost":300,"cost":0,"description":"<p>You know some special ways around the network and reduce the penalties for latency and distance by half.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.KgjdSoLbxOQgqvdU"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225980910,"modifiedTime":1672355567295,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"i0LROD5jLN8CzwXJ"}
{"name":"Syndicate Favours","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Fixer","requirements":"","xpcost":500,"cost":0,"description":"<p>Your character is owed favours from a crime syndicate or cyber criminal organisation. Once per month you can call in that favour. This could either be a syndicate hit man, who can take out a target for you, a group 2d6 of syndicate enforcers to do some work for you in the street, or even a syndicate laboratory and scientist who could concoct a batch of undetectable drugs. The monetary value of the favour should not exceed the characters charisma x 10 x 1d6 x 1,000 credits.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.7zViYasde34EmuWv"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352950109,"modifiedTime":1672355577551,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"iNjU7NDXaXVzhaBu"}
{"name":"Latin connections","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Fixer","requirements":"70% streetwise skill","xpcost":100,"cost":0,"description":"<p>The fixer can get all manner of illegal substances. The fixer pays 20% less than the going market rate for any item, any drug any supply.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.8q1BSL8552ihER6u"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352900374,"modifiedTime":1672355528631,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"kDmdYzCpPdENIX4q"}
{"name":"Ace Gunner","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":400,"cost":0,"description":"<p>Using the main gun of the vehicle you are in has become your specialty. Once per session you can use the main gun of your vehicle and perform an automatic armour penetrating hit. The main gun has double penetration and deals 50% more damage in a single attack.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.hcDCkCaU9aHHYuNq"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353023438,"modifiedTime":1672355475736,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"kj0YkRUBYhnH1esi"}
{"name":"Rapid Manufacturing","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Head Stooge","requirements":"one engineering skill 50%","xpcost":200,"cost":0,"description":"<p>The stooge knows people who own factories and can get any item made but for double the cost. This can be illegal items, weapons, spaceships you name it. The product will be made within half the normal time of manufacture of 1 month which ever is lower. Typical items take 1 or 2 days to manufacture, large items like spaceships take 2 months to a year.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.p7wAh6Nyxj3ozC4S"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352258580,"modifiedTime":1672355560504,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"l6DVDxGHMbEVO4uB"}
{"name":"Torpedo","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Fixer","requirements":"Streetwise 70%","xpcost":200,"cost":0,"description":"<p>The fixer has required a loyal torpedo to strong arm others, protect them and act as body guard. This is another character and is more loyal than a gun or thug for higher. The torpedo will give their life to save the fixer, if they do so the fixer will lose this perk and must purchase it again.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.1yAvLoM4mSzDmvoO"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352581293,"modifiedTime":1672355586297,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"lC0bd0CT8PDsxbHi"}
{"name":"Midnight Run","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Road Warrior","requirements":"","xpcost":300,"cost":0,"description":"<p>If the character is trying to evade authorities or break through blockades or just trying to lay<br>low in a city and perform errands or deliveries, the character will receive an increase of 4 to the<br>stealth rating of their vehicle by using terrain features or just planning and luck. They move<br>through the city over passes and highways like ghosts on the winds. If detected by law enforcement, the receive an extra action at the start of the round make a run for it.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.dUy03epB4asSXmu6"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225555247,"modifiedTime":1672355541073,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"lkhFJbwGI4H9235u"}
{"name":"Efficient compilation","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Hacker","requirements":"Programming 70%","xpcost":400,"cost":0,"description":"<p>All programs you create require 50% storage space on you cyber deck or computer.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.d4BMIAXxboaFuDfG"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672226049122,"modifiedTime":1672355493720,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"m3S03Bzxfy5uJGhV"}
{"name":"Enforcer","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The enforcer is a peace officer, security guard or professional investigator. The enforcer has<br>contacts, informants and generally is well connected in law enforcement of their city/region. Some enforcers work for governments and maybe have global connections.<br>Once per scene an Enforcer can perform an authoritative command, they could order a criminal to put their hands up and surrender, order a citizen out of a car so they can commandeer it, order other law enforcement officers to perform actions. Authoritative command requires the&nbsp; opponents of the enforcer to make self-control check, if they fail they will follow the command for the scene. The Enforcer makes a persuade check and receives a +10% to that check. For each degree of success, the opponents of the command will receive a -1 to their self-control check to resist the command. <br><br>40% in persuade skill</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.XBtssWAGShE0YDNx"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220617908,"modifiedTime":1672355495000,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"nBFtWz9kn5tOfFu1"}
{"name":"Unnatural Health","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":40,"description":"<p>This perk provides resistance to disease and poison. The character suffers 50% less damage to Fatigue, Hit points, Humanity or Essence from poisons and diseases. They also receive -2 on any attribute checks to resist poisons or diseases.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.WrIziSiyUHTWtF9X"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175817509,"modifiedTime":1672355591958,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"nBfZfXLJzJSl0vTX"}
{"name":"Fame","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":200,"cost":0,"description":"<p>This perk enables a character to gain national fame and/or notoriety. It provides +10% bonus<br>to all social rolls to anyone who cares about your fame. Game master discretion is to be used<br>to determine if the NPC does care.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.jYTfVXVeDzurjErd"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353312645,"modifiedTime":1672355498392,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"nTQTmsmC1J0UWynZ"}
{"name":"What, This? This Is Nothing!","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":40,"description":"<p>It takes a lot to kill you. You can literally keep fighting even with missing limbs. You suffer no ill effects (except not having that limb, and Movement penalties) from losing an arm or leg. Even if you lose two or more limbs, as long as you still have general Hit points, you&rsquo;re alive and active. You never fall unconscious for having zero Fatigue. General Hit points must be negative before you die. You also don&rsquo;t bleed out like normal people do.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.FVPt4J5wgnLZjKhm"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672176141140,"modifiedTime":1672355598360,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"nkKiYkpWTYXEX3iU"}
{"name":"Informants","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Enforcer","requirements":"50% Streetwise skill","xpcost":100,"cost":0,"description":"<p>The enforcer has a network of criminal informants, and these informants give them a detailed understanding of the criminal happenings within a city or other location. The informants provide information to the enforcer in exchange for the enforcer mostly looking the other way. If the enforcer fails on a street wise check, they automatically can re-roll with a +20% bonus by contacting an informant. If the enforcer wishes to question the informant and the informant has detailed information, they will automatically spill the beans to the enforcer.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.7nedTX53nCxj41ZE"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351316602,"modifiedTime":1672355524440,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"nwJ7K5OLe5XdFt7R"}
{"name":"Villain","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":5,"description":"<p>You&rsquo;re scary as hell and twice as mean. People see you as a threat to their lives. Gain 10% bonus to Manipulation or Persuasion through fear and intimidation.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.vGF6R8KUUqGi5oNA"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672176105285,"modifiedTime":1672355594504,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"nyA0xQopfGDmpeeu"}
{"name":"Fanatical Fans","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Celebrity","requirements":"50% in one performance skill","xpcost":200,"cost":0,"description":"<p>The celebrity has a group of fanatical fans that will if contacted show up and help the celebrity. These fans will be armed with typical pistols and knives and may have armour. To convince the fans to help, including dangerous tasks the celebrity needs to make a persuade check, for each degree of success 1d6 fans will arrive within 1d3 hours to help.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.kfS6amLHeLHrXSEr"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672226394853,"modifiedTime":1672355502583,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"o3EOQk7C4YO5OTz8"}
{"name":"I've Seen Things...","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":30,"description":"<p>You have seen so much that you may have been hospitalised in the past but now you&rsquo;re better. You suffer half the normal detachment from traumatic events. You gain a 40% bonus on any EGO and Self-Control tests for fear or panic.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.zhmbb9zfMIPd1gvo"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175544519,"modifiedTime":1672355521287,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"o7WzVc8el1urZYVs"}
{"name":"Last Word","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"Starting Initiative of 3 or less","xpcost":100,"cost":0,"description":"<p>A character with this perk will always get an action at the end of a combat round after all other characters have completed all their actions. If multiple characters in the scene have this ability then resolve them as per normal for characters acting in the same initiative rank. This essentially adds an initiative rank at zero after the round has counted down to rank 1. If a character with this perk increases their SI above 3, then they lose this ability until such time as their SI is once more 3 or less. This includes the SI penalty for wearing bulky armour. If as a result of the penalty their SI<br>is reduced to 3 or less then they can use this ability.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.yzy3qI0bvFPXr53K"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354378556,"modifiedTime":1672355527536,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"okR24CxN7Z9LqBqv"}
{"name":"Akimbo","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Warrior Soldier","requirements":"","xpcost":200,"cost":0,"description":"<p>The character suffers only half penalties for firing weapons from both hands.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.FdYmBz0G5MWNFNCO"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672221053821,"modifiedTime":1672355476815,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"qVz6KUaJhgmgYm7l"}
{"name":"Insider Trading","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Head Stooge","requirements":"","xpcost":100,"cost":0,"description":"<p>On any given finance check the stooge has inside information. This could enable them to receive a re-roll on a failed finance check or stock market trade, have some extra information about a facility or even have someone on the inside of an opposing facility working for them. The gm must decide the outcome of using this perk. This perk can be used once per session.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.x1sHpg2NKY4T3QYW"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351877786,"modifiedTime":1672355526384,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"qxGAX8oVXpINNNIk"}
{"name":"The Chinese Cyber Shark from Shanghai","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Hacker","requirements":"Computer use or Programming 60%","xpcost":200,"cost":0,"description":"<p>Somehow you have access to some hardcore military code, and if you use that code to make programs that attack other programs, they turn out way more dangerous. All kill type programmes built will receive +1d6 damage per degree of success, this damage is added to the normal damage the program does. To create the programme create it as per the normal rules.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.ga30zB8NBRP2iOqV"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225755791,"modifiedTime":1672355581975,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"sV0veGRmmy59ntpp"}
{"name":"Hero","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":5,"description":"<p>You are a heroic character; people are inspired by you and will generally try to help you. If you behave like a villain, you lose this perk. Gain +10% to Persuasion checks with anyone you&rsquo;re trying to gain assistance from or inspire.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.goH5qlIVUfXxr7gW"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175871988,"modifiedTime":1672355519152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"tNSu6fcGDNYhvRYX"}
{"name":"Stringer","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>This character works for some sort of media outfit or even a covert information gathering operation. They are skilled at finding information and presenting it to achieve a response. Reporters have informants and contacts, and generally can find people who don&rsquo;t want to be found.</p>\n<p>Once per session stringers can make an inquiry about a specific piece of information which is not generally known check using either persuade, computer use or street wise, the stringer will receive +20% on this check. For each degree of success, they receive an additional piece of information. Information flow, the stringer is also able to securely send that information to the right relevant people at the right time. This will give the group +20% on all social checks with that person. The Truth, if a Stringer tells the truth to a group of people through any means either<br>broadcast or simply speaking the stringer can influence those peoples actions. Its up to the GM how this can affect the viewers, either they rage or feel better or panic.&nbsp;</p>\n<p>Requires 40% in persuade skill and either language or art film</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.Ee5BbPKeiGexNNO3"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220703420,"modifiedTime":1672355572159,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"tVl3m66PdpV68hhe"}
{"name":"Partner","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Enforcer","requirements":"","xpcost":200,"cost":0,"description":"<p>The enforcer has a side kick partner, this is another security guard or piece officer who will help them and stick with them through whatever trials. This partner cannot be another Enforcer.<br>The partner will improve with time aquiring new items and perks, GM should decide which upgrades the partner has aquired.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.GhfjxFVf5j6kwixH"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672351465378,"modifiedTime":1672355549152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"tW4k6XEkieu0JqQd"}
{"name":"Toughness","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":10,"description":"<p>You are tougher than most, even if you are of small stature. Gain 10 HP. This perk may be taken twice.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.SG5pJ0poepiB6BSh"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672176011164,"modifiedTime":1672355588656,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"tlJreO61x21lnibw"}
{"name":"Hacker","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>The hacker in dark stars is a computer technician, intrusion and security specialist. All hackers receive +10% on their hacking and programming checks. Hackers also suffer half EGO damage from all cyber attacks against their EGO. Once per session hackers can re-roll damage on a single programs damage. <br><br>Requires Computer Use 40%</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.zCs6BlwG6s75slhi"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220486117,"modifiedTime":1672355516785,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"u09QIcbtcSF2mvFK"}
{"name":"Contact","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":50,"cost":0,"description":"<p>Contacts are game master-generated NPC characters that can be useful to you. They will try to help you with information and may, on a successful Persuasion roll, provide some assistance; however, this assistance is personal and cannot be organisation-based (that&rsquo;s Influence). Contacts can be of any type and are usually knowledgeable. The contact typically has a 50% skill rating in their field.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.v8YRvRWtrCsR2zV0"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353269828,"modifiedTime":1672355485135,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"u4AlTW262KRzzqhp"}
{"name":"Shield Master","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":1000,"cost":0,"description":"<p>Shield Masters are often the centre of any defence or attack, using the shield not only to deflect blows but also disable weapons. Shield Masters can parry two opponents per round instead of one, making them formidable solo combatants. Shields will have their special properties doubled.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.zIDpS9Bl4xlXTkWY"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353816021,"modifiedTime":1672355568192,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"uNgVai3tdLgGJDVe"}
{"name":"Axe Master","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":600,"cost":0,"description":"<p>Masters of the Axe know how to get the most out of the weapon and are so skilled that they can bypass armour better than their less skilled counterparts. Axes will have their special properties doubled. Add an additional +2 to penetration.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.4bWCIbqZNXq7F0Dc"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353672493,"modifiedTime":1672355480760,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"ugN44JQlrG4HWF1d"}
{"name":"Master Marksman","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":null,"cost":0,"description":"<p>With keen eyes and expert aim, Master Marksmen are deadly on the battlefield or especially in ambush. Halve the penalties from called shots using ranged weapons. +2 to damage and penetration using called shots.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.xtJw8aCdG0xj0oq5"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353709436,"modifiedTime":1672355537544,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"vjPDplg5oqjBgckC"}
{"name":"Extensive Contacts","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Fixer","requirements":"50% Persuade Skill","xpcost":100,"cost":0,"description":"<p>For each contact purchased with experience, a second contact is acquired for free. This simulates the fixers networking abilities who knows why the contacts help the fixer maybe they have some dirt on them but its never out of the goodness of the heart. This second contact may turn on them if treated badly.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.KihdnnjW02G7nwHc"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672352800510,"modifiedTime":1672355497264,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"xGDZGLXdLd30PKWK"}
{"name":"Rich","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":40,"description":"<p>You are wealthy, well connected and have a position in a corporation. This can never be taken away from you except in extreme circumstances. You have 1d100 x 1d10 credits per month. The credits will accumulate in a safe account.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.LHPDLu3nY5LJpde7"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672175964638,"modifiedTime":1672355563871,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"xPAhA5blFf1nw2xb"}
{"name":"I got friends","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Road Warrior","requirements":"Pilot/Driving and Persuade of 40%","xpcost":200,"cost":0,"description":"<p>The character can make a successful persuade check and can summon a group of other runners/drivers/pilots/gangers to help with some task. For each degree of success 1d6 additional<br>people will arrive and if only 1 success is achieved 1 person will arrive with their vehicle and weapons. These people are like family to the character and members of their vehicle clan/gang. For each degree of success, the friends will help for 1 week.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.MewvFhwQ3awq36va"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672225326901,"modifiedTime":1672355520225,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"xQBjSCMXfYPTn6gD"}
{"name":"Two-Fisted","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":20,"description":"<p>You have the natural ability to use both hands. This reduces the penalty for using two weapons or any task using both hands to -10% instead of -20%.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.And3B0fW4GUChqTq"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672176054637,"modifiedTime":1672355590929,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"xlZ0QCsNG9mB6i9d"}
{"name":"Sword Master","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":800,"cost":0,"description":"<p>Sword Masters have become adept at one handed and two-handed fighting with swords. They can consequently use these weapons better and get more benefit from special properties and receive a free parry action with the sword once per round. Swords will have their special properties doubled. +10% to parrying with the sword and one free parry per round.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.bBdVRclvy6rDbBgN"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672353919924,"modifiedTime":1672355574953,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"y340VAyWceyZfvHK"}
{"name":"Practiced Scavenger","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"advanced","role":"","requirements":"","xpcost":250,"cost":0,"description":"<p>The character knows about certain terrain types, i.e. where to find the best ammo, chips,<br>scrap, hiding places or resources and materials for their crafting skills. This perk may be taken<br>more than once. The following list of terrains can be learned by the character, although you<br>could expand this: Junk Yard, Wasteland, The Old World, Oceans, and Rad Zones, Wastes.<br>Whenever the character fails a Navigation, Survival or foraging related craft (Engineering,<br>Scavenging, Hacking) skill check once per session they can receive an automatic re-roll on the skill check. The character must take the result of this check.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.SG6YSWePxEmKoP2f"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672354543865,"modifiedTime":1672355551376,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"ydWo02hjIx4wm1mY"}
{"name":"Cyber Designer","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"role","role":"Technician","requirements":"Cybernetics Design or Cybernetics Engineering skill of 60%","xpcost":300,"cost":0,"description":"<p>An engineer who specialises in cybernetics, they can create new designs or modify cybernetics. Either reducing the humanity loss by 10% per degree of success with a minimum of 1 point per dice of humanity the component/upgrade requires. Or Improving the durability of the component by 10% (+10% to SP per degree of success). Or Extending its capability by combining two components for example combining the thermographic and targeting components allow that upgrade to a cybernetic eye to only take 1<br>option space.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.6JI8xTBNoTqcRSSD"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672224518971,"modifiedTime":1672355487280,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"zRE7pBw0rov4qwhA"}
{"name":"Celebrity","type":"perk","img":"systems/fvtt-dark-stars/images/icons/perk.webp","system":{"perktype":"normal","role":"","requirements":"","xpcost":0,"cost":50,"description":"<p>This character is a celebrity, either they perform music, create performance art of some kind, and inspire the masses. They probably already have a body of work. Inspire to action. Should the character wish to get their fands to perform a task, they can inspire their fans with a performance. The character receives a +10% to any performance where they wish to influence people. The<br>following persuade check will receive a bonus of 10% per degree of success the performance received. Celebrities also can receive a re-roll once per session which can be used on any failed roll.</p>"},"effects":[],"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3},"flags":{"core":{"sourceId":"Item.IrI3xInQi7THinHw"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.9","coreVersion":"10.291","createdTime":1672220555574,"modifiedTime":1672355482968,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"folder":null,"sort":0,"_id":"zwZoHMkWYtMCNx9f"}

BIN
packs/perks/000005.ldb Normal file

Binary file not shown.

0
packs/perks/000024.log Normal file
View File

1
packs/perks/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

0
packs/perks/LOCK Normal file
View File

8
packs/perks/LOG Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:04:27.759746 7f9ff37fe6c0 Recovering log #20
2023/10/02-23:04:27.770408 7f9ff37fe6c0 Delete type=3 #18
2023/10/02-23:04:27.770484 7f9ff37fe6c0 Delete type=0 #20
2023/10/02-23:07:22.038446 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:22.038497 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:22.044869 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.045526 7f9d71bff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
2023/10/02-23:07:22.045563 7f9d71bff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)

8
packs/perks/LOG.old Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:02:12.175142 7f9ff3fff6c0 Recovering log #16
2023/10/02-23:02:12.184605 7f9ff3fff6c0 Delete type=3 #14
2023/10/02-23:02:12.184659 7f9ff3fff6c0 Delete type=0 #16
2023/10/02-23:02:46.996409 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.996435 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:47.002993 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:47.003138 7f9d71bff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
2023/10/02-23:02:47.003162 7f9d71bff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)

BIN
packs/perks/MANIFEST-000022 Normal file

Binary file not shown.

0
packs/shields/000024.log Normal file
View File

1
packs/shields/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

0
packs/shields/LOCK Normal file
View File

7
packs/shields/LOG Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:04:27.697433 7f9ff27fc6c0 Recovering log #20
2023/10/02-23:04:27.708172 7f9ff27fc6c0 Delete type=3 #18
2023/10/02-23:04:27.708266 7f9ff27fc6c0 Delete type=0 #20
2023/10/02-23:07:22.008091 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:22.008124 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:22.015730 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.029087 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

7
packs/shields/LOG.old Normal file
View File

@ -0,0 +1,7 @@
2023/10/02-23:02:12.114808 7f9ff2ffd6c0 Recovering log #16
2023/10/02-23:02:12.124532 7f9ff2ffd6c0 Delete type=3 #14
2023/10/02-23:02:12.124587 7f9ff2ffd6c0 Delete type=0 #16
2023/10/02-23:02:46.960872 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.960904 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:46.967194 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:46.981373 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1,23 +0,0 @@
{"name":"Vehicle Weapons","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"csb","bonus":0,"used":false,"description":"<p>The character is skilled in the use of indirect and direct artillery including missiles, howitzers<br>and auto cannons, any vehicle weapons.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086342604,"modifiedTime":1672086575155,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"5YJWuGaagmi1dgbv","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Engineering (Name of Field)","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"asb","bonus":0,"used":false,"description":"<p>The character has a university-level education in an Engineering skill chosen from the list<br>below. The character can design and direct construction in the field. For example, Sam has Engineering (Computer Systems) 60%. He decides to make a supercomputer out of several<br>desktop PCs &ndash; he can do this. Furthermore, he can direct people who can help him.</p>\n<p><br>Civil, Electrical and Power, Computer Systems, Naval and Life Support, Mechanical, Propulsion Systems, Architecture, Robotics &amp; Mechatronics, Genetics, Cybernetic Design, Nanomachines, Weapons Systems, Personal Weapons and Armour Design.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085548127,"modifiedTime":1672086575152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"9a1riW3iSabgr4sH","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Basic Ground Navigation","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"asb","bonus":0,"used":false,"description":"<p>The character can navigate by map and compass, by land or sea. Navigation can be by the sun, stars or compass.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085470278,"modifiedTime":1672086575152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"ESvBNzSQ6UVa2Hdj","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Persuasion & Manipulation","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"ssb","bonus":0,"used":false,"description":"<p>The character can persuade others to do what he or she wants or to provide information. This<br>is non-violent persuasion. The game master may oppose the skill check using the NPC persuasion<br>skill. Role-playing well may provide a bonus to the use of this skill; however, not roleplaying may attract a penalty. This skill must be carefully refereed by the game master. Typical Persuasion checks may be used to ask someone for information or help in some way. It is not possible to persuade someone to knowingly harm themselves; however, it could be used to trick a person into doing something against their best interests. This skill is not mind control; it is careful persuasion. When a character chooses to manipulate a person, it is similar to persuasion; however, rather than truthful reasoning, manipulation is deceitful.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085115239,"modifiedTime":1672086575153,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"EZV7SCG4WbkervUv","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Projectile Weapons","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"csb","bonus":0,"used":false,"description":"<p>The character is trained in the use and maintenance of projectile weapons like rifles, pistols and dart launchers. The character is trained in the use and maintenance of rail weapons like rail rifles, rail SMGs and rail assault weapons.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086276980,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"I8HWWCwhF7R19u6x","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Speak & Read (Language)","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"ssb","bonus":0,"used":false,"description":"<p>Speak Language is used whenever a character is not very good at the dialect he or she is trying to communicate in. If the language skills of both participants total 50%, then communication is assured, and no Language roll is necessary.</p>\n<p>Reading a language allows the character to read and understand the written word. Characters may need to roll at the GM&rsquo;s suggestion on their Speak and Read Language skill. Otherwise, understanding is assured. The following list of languages and scripts can be used, although there are of course more languages.<br><br>Spoken and Written Languages Examples<br>English, Spanish, Portuguese, Mandarin, Hindi, Chinese, German, Russian, Italian, Korean,&nbsp; Japanese.</p>"},"effects":[],"flags":{"core":{"sheetClass":"fvtt-dark-stars.DarkStarsItemSheet"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671852339032,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"IW0nw7bk83QQItjF","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Stealth","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"psb","bonus":0,"used":false,"description":"<p>The Stealth skill involves hiding, sneaking and generally moving without being detected by sound or sight. A roll is always required for this skill whenever it is attempted.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085657806,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"JB8ItSbIQ4nnQk9U","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Heavy Weapons","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"csb","bonus":0,"used":false,"description":"<p>The character is skilled in the use of RPGs, grenade launchers and machine guns, and artillery pieces.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086320348,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"JGtOg9mUP0pZievc","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Science (Name of Science)","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"asb","bonus":0,"used":false,"description":"<p>The character has a university-level education in a Science skill chosen from the list below.<br>Science skills are theoretical in nature. A Science skill can be used for an Engineering skill at half the value.</p>\n<p><br>Mathematics, Computer Science, Economics, Physics, Biology, Chemistry, Biochemistry, Medicine, Genetics, Archaeology, Astronomy, Geology, Psychology, Cybernetics, Pharmacology.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085504870,"modifiedTime":1672086575153,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"O6Gxntfqt0hGXvYW","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Energy Weapons","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"csb","bonus":0,"used":false,"description":"<p>The character is trained in the use and maintenance of personal lasers, ion guns, neural stunners and plasma weapons.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086249716,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"OB4khIPwWYlRXt6t","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Professional Skill (Name of Field/Role)","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"asb","bonus":0,"used":false,"description":"<p>A variety of professions, usually learned through apprenticeship. Professions are usually<br>skills that involve acquiring the resource or crafting items from resources.<br><br>Includes <br>Medicine, Surgery*, Pharmaceuticals, Psychiatry+, Horticulture, Animal Husbandry, Forensic Examiner, Politics, Computer Security, Communications Specialist, Business, Military Tactics, Logistics, Manufacturing, Robot Brains, Armourer. <br><br>* requires Medicine + requires Psychology</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085414469,"modifiedTime":1672086575153,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"Sf4375GLeaEdXjz0","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Empathy","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"ssb","bonus":0,"used":false,"description":"<p>The character can perceive other people&rsquo;s motives and motivations. This skill is useful when gathering information about likely actions and motivational options.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085187959,"modifiedTime":1672086575152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"TAgwGCqdB61eBDJ3","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Recon","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"psb","bonus":0,"used":false,"description":"<p>Recon is basically observation. Characters have a basic level in this skill, and trained characters should have a higher rating in the skill. This skill is used whenever a character wishes to find something out or whenever the GM wishes to roll to see if the character spots or hears something.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085691670,"modifiedTime":1672086575153,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"Wiy2P34tbpFLpK7e","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Pilot (Vehicle Type)","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"msb","bonus":0,"used":false,"description":"<p>The character is skilled in the use of vehicles. They can operate and perform basic maintenance and repairs. Examples of vehicles are wheeled vehicle, watercraft, spaceship, airplane, tracked vehicle, gravcraft, power armour and drones.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086377747,"modifiedTime":1672086575155,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"XmyIaZ07ngWvnIAD","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Social & Style","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"ssb","bonus":0,"used":false,"description":"<p>This skill is designed to enable a character to know what is fashionable in any given social<br>group. It also enables the character to behave with the correct etiquette for the social group<br>they are in at the time. This skill is used to determine advance actions. This is not a pursued<br>skill, however, if a role is played well it can provide a bonus in such situations.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671852578894,"modifiedTime":1672086575153,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"dDzdnXRcwZRQZ5RG","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Drive Ground Car and Ride Motorcycle","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"msb","bonus":0,"used":false,"description":"<p>The character can drive cars and motorcycles. This is not a professional level of driving, just<br>everyday driving.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086514348,"modifiedTime":1672086575155,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"gQ7bFMrV47R02z3i","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Melee Combat","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"csb","bonus":0,"used":false,"description":"<p>The character is skilled at using riot shields, melee weapons and bladed weapons. If the game master chooses, this can be broken up into multiple skills; however, for simplicity we refer to this skill as melee combat.</p>\n<p>The character can use shields to block attacks. The character is skilled at knife and sword fighting. The character is also skilled in the use of mass weapons such as axes, two-handed swords, maces, hammers, batons, truncheons, clubs and polearms. Styles are: Kendo, Single Stick, Fencing etc.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086188534,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"hdOSBK7SwELJMzZb","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Demolitions","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"msb","bonus":0,"used":false,"description":"<p>The character is skilled in the art of laying explosives, creatively setting fuses and generally blowing stuff up.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086436924,"modifiedTime":1672086575155,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"kNVEnbgz68l5H6F7","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Basic Education","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"asb","bonus":0,"used":false,"description":"<p>This skill includes a variety of catch-all skills from simple mathematics to geography, history, literacy and general knowhow. This skill is also special in that it starts as the character&rsquo;s Education x 2, and then points may be spent to increase it. All characters start with this skill just as they have their native language. Spending points on this skill means the character has more depth to their knowledge. More educated characters know more about a variety of subjects. Game masters must decide if this skill can be used for any given task.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085276422,"modifiedTime":1672086575152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"lCcvKGDWbmNqZmM4","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Unarmed Combat","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"csb","bonus":0,"used":false,"description":"<p>The character is skilled in the use of unarmed combat. They are practised and professional, and know how to use their body, fists and feet to devastating effect.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085777245,"modifiedTime":1672086575154,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"ouxLcHbuWWKhJQg9","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Athletics","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"psb","bonus":0,"used":false,"description":"<p>The Athletics skill is used for any form of physical activity. Jumping, dodging, climbing, abseiling, running, throwing, swimming and others can be chosen. This skill is very broad and represents the education characters received in school and while they were growing up. Rolls are required at the GM&rsquo;s discretion. Athletics can be substituted for Unarmed Combat, but at half value.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085605799,"modifiedTime":1672086575152,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"wPq70BdgDHP6H4lD","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"Graft (Type)","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"ssb","bonus":0,"used":false,"description":"<p>Graft refers to all forms of illegal activities. This skill includes bribery, streetwise, gambling,<br>racketeering, sales, bureaucracy, fencing and pimping.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672085235048,"modifiedTime":1672086575153,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"xVquq7UFdm1S4FdJ","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}
{"name":"First Aid","type":"skill","img":"systems/fvtt-dark-stars/images/icons/skill.webp","system":{"base":"msb","bonus":0,"used":false,"description":"<p>The character can perform basic first aid, stop bleeding and perform CPR. This skill enables the character to dress wounds and apply bandages.</p>"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1672086482524,"modifiedTime":1672086575155,"lastModifiedBy":"LUaXSjYdxSzrwCtU"},"_id":"yo7mOkfbbOogx8na","folder":null,"sort":0,"ownership":{"default":0,"LUaXSjYdxSzrwCtU":3}}

BIN
packs/skills/000005.ldb Normal file

Binary file not shown.

0
packs/skills/000024.log Normal file
View File

1
packs/skills/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000022

0
packs/skills/LOCK Normal file
View File

8
packs/skills/LOG Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:04:27.745695 7f9ff27fc6c0 Recovering log #20
2023/10/02-23:04:27.757658 7f9ff27fc6c0 Delete type=3 #18
2023/10/02-23:04:27.757719 7f9ff27fc6c0 Delete type=0 #20
2023/10/02-23:07:22.029211 7f9d71bff6c0 Level-0 table #25: started
2023/10/02-23:07:22.029245 7f9d71bff6c0 Level-0 table #25: 0 bytes OK
2023/10/02-23:07:22.038214 7f9d71bff6c0 Delete type=0 #23
2023/10/02-23:07:22.045498 7f9d71bff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
2023/10/02-23:07:22.045544 7f9d71bff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)

8
packs/skills/LOG.old Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:02:12.162655 7f9ff2ffd6c0 Recovering log #16
2023/10/02-23:02:12.173123 7f9ff2ffd6c0 Delete type=3 #14
2023/10/02-23:02:12.173186 7f9ff2ffd6c0 Delete type=0 #16
2023/10/02-23:02:46.989594 7f9d71bff6c0 Level-0 table #21: started
2023/10/02-23:02:46.989622 7f9d71bff6c0 Level-0 table #21: 0 bytes OK
2023/10/02-23:02:46.996258 7f9d71bff6c0 Delete type=0 #19
2023/10/02-23:02:47.003111 7f9d71bff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
2023/10/02-23:02:47.003147 7f9d71bff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1,75 +0,0 @@
{"name":"12.7mm Minigun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"6","penetrationmax":"6","damage":"5d6","bulk":20,"br":0,"rof":40,"ammo":400,"effectiverange":3,"maxrange":4,"sp":50,"cost":75000,"size":"-1","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.7b29fPMUoOdlVvWI"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037850087,"modifiedTime":1681169288650,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"265V8wzrrH3EEgtM"}
{"name":"Plasma Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"5","penetrationmax":"5","damage":"5d6+6","bulk":15,"br":0,"rof":1,"ammo":20,"effectiverange":2,"maxrange":2,"sp":20,"cost":44000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.S9rEDUuca0Zwx2FV"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038185935,"modifiedTime":1681171178753,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"2BBBQoFzq64K6TyV"}
{"name":"5.56mm LMG","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"3d6","bulk":5,"br":0,"rof":5,"ammo":80,"effectiverange":3,"maxrange":3,"sp":15,"cost":5500,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.ZkLO3yFemrO5f3S8"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037530450,"modifiedTime":1681169841238,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"2rVHK2MVVZ5oJrpy"}
{"name":"Mono Sword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"5","penetrationmax":"5","damage":"2D6","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":15,"cost":1700,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.DaCMqS4QM5cmbthF"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035737875,"modifiedTime":1681040946627,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"4kWRn5rCYTpQibRp"}
{"name":"7.62mm Assault Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"4","penetrationmax":"4","damage":"4d6","bulk":5,"br":0,"rof":3,"ammo":35,"effectiverange":3,"maxrange":3,"sp":18,"cost":3200,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.kI1kYTdRKVITQSkR"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037374450,"modifiedTime":1681169999157,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"6KWdI7BiUUZiHIjn"}
{"name":"80mm LAAW","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"25","penetrationmax":"25","damage":"7d6**","bulk":12,"br":1,"rof":1,"ammo":1,"effectiverange":2,"maxrange":3,"sp":15,"cost":1500,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Q8mmjtRGnaE0kQhZ"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038527694,"modifiedTime":1681170636895,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"6RUQYJ8p9DaE81YA"}
{"name":"9mm Handgun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"2d6","bulk":0.5,"br":0,"rof":1,"ammo":18,"effectiverange":2,"maxrange":2,"sp":10,"cost":600,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.fmDuJhq0t8J81kt5"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036941406,"modifiedTime":1681170676438,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"9VSNqha9RKM8TUXQ"}
{"name":"7.62mm LMG","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"4","penetrationmax":"4","damage":"4d6","bulk":7,"br":0,"rof":5,"ammo":80,"effectiverange":3,"maxrange":3,"sp":15,"cost":7000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.4l3gIfViJhY9ANsS"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037578288,"modifiedTime":1681170042206,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"AYedHw6HSMlp9QYo"}
{"name":"Vibro-knife","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"16","penetrationmax":"16","damage":"1d6","bulk":1,"br":0,"rof":0,"ammo":15,"effectiverange":null,"maxrange":null,"sp":20,"cost":12000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.0CW144Zp1qz37212"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036355295,"modifiedTime":1681040965173,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"BBRAh5QVQRqruH2k"}
{"name":"40mm AGL","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"3d6","bulk":12,"br":10,"rof":10,"ammo":60,"effectiverange":3,"maxrange":3,"sp":25,"cost":36000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.CAVGJTCjU1A3MXEA"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038925149,"modifiedTime":1681169594913,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"BaaOPbA7a4zCxul6"}
{"name":"Punch","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"1d3","bulk":0,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":0,"cost":0,"size":-1,"skillbonus":"","equipped":false,"description":"<p>Non-lethal damage unless Lethal Weapon Perk is present.</p>","skill":"Unarmed Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.uck15LcFORMtSxy5"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681033893487,"modifiedTime":1681040954311,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"C7KoagsfIBrI7Klf"}
{"name":"Greatsword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6+3","bulk":2,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":20,"cost":120,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Vehicle Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.rRXCdmT9TAmtNxaU"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035077146,"modifiedTime":1681040922552,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"CWO2wezqIw0G01sr"}
{"name":"Taser","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6","bulk":1,"br":0,"rof":1,"ammo":100,"effectiverange":1,"maxrange":1,"sp":10,"cost":400,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"<p>non Lethal</p>","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.gvj8Q2l7WooExkMJ"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036533653,"modifiedTime":1681171266502,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"DeonB1UCPg7jG2vk"}
{"name":"Halberd","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6+3","bulk":2,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":20,"cost":120,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.h0OaairiXOdsY2nf"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035225181,"modifiedTime":1681040923374,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"DndyawhidvNS9OKR"}
{"name":"9mm SMG","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"2d6","bulk":1,"br":0,"rof":10,"ammo":30,"effectiverange":2,"maxrange":2,"sp":12,"cost":1500,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.h0qWwCTO341yLHR1"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037020831,"modifiedTime":1681170686571,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"E3oBsFMRIhisnTcs"}
{"name":"Plasma Shotgun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"5","penetrationmax":"5","damage":"5d6","bulk":8,"br":2,"rof":1,"ammo":20,"effectiverange":2,"maxrange":2,"sp":20,"cost":20000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.U0JAEY5hdeGDAYRs"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037993273,"modifiedTime":1681171205490,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"EgSpzWSuTlksVmUS"}
{"name":"Shotgun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"4d6","bulk":3,"br":1,"rof":1,"ammo":8,"effectiverange":2,"maxrange":2,"sp":15,"cost":2100,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.bI0GiBZtJNwxCTUb"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037237227,"modifiedTime":1681171226286,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"GCg6nmWecuU7G9GO"}
{"name":"Knife","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"1d3","bulk":0.5,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":null,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.RKpo4LUiVaQHRU7k"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034069888,"modifiedTime":1681040931515,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"GKAdpQuRfePLxF5w"}
{"name":"Chain Axe","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6 +3**","bulk":2,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":8000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.CLxLau3U6UFkoaeH"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036310703,"modifiedTime":1681040918130,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"GhSz28HZO69gNaFb"}
{"name":"Chain Knife","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"1d6+3","bulk":2,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":4000,"size":null,"skillbonus":"","equipped":false,"description":"<p>Deals double ablation damage to armour.</p>","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.6PROckrqUCHn7g6Q"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035850377,"modifiedTime":1681040919010,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"HMzx5hYE6ZRBbqaY"}
{"name":"Mono Knife","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"5","penetrationmax":"5","damage":"1d6","bulk":0.5,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":700,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.cbvhiPHbh5afrrGl"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035595374,"modifiedTime":1681040945864,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"JFXcL5mIEIADIzA8"}
{"name":"Dart Pistol","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"5","penetrationmax":"5","damage":"2d6","bulk":0.5,"br":0,"rof":1,"ammo":10,"effectiverange":null,"maxrange":null,"sp":10,"cost":700,"size":0,"skillbonus":"","equipped":false,"description":"<p>Non Lethal but can use any drug</p>","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.I1JkLhXabV4YRZhA"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036618025,"modifiedTime":1681040920627,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"JSyNJtiOIDl6uArW"}
{"name":"Ion Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"16","penetrationmax":"16","damage":"4d6","bulk":10,"br":0,"rof":1,"ammo":60,"effectiverange":2,"maxrange":2,"sp":15,"cost":22000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.FUbJ0qDRubwaCsgG"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038075053,"modifiedTime":1681170974280,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"Jd5WG0SNfnHGP2Jl"}
{"name":"Heavy Mace","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"2d6","bulk":2,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":50,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.0djXBKESGWsbVlsM"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034814235,"modifiedTime":1681040928053,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"JmSLDn2UWHcW19mw"}
{"name":"7.62mm Minigun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"4","penetrationmax":"4","damage":"4d6","bulk":15,"br":0,"rof":60,"ammo":600,"effectiverange":3,"maxrange":3,"sp":25,"cost":25000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.JO3E5v19URmtkJhh"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037729731,"modifiedTime":1681170056391,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"KU4I7Cf63n4QObGI"}
{"name":"66mm LAAW","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"15","penetrationmax":"15","damage":"5d6**","bulk":6,"br":1,"rof":1,"ammo":1,"effectiverange":2,"maxrange":3,"sp":10,"cost":1000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.YFqKlr3qxa1g46dO"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038474239,"modifiedTime":1681169882369,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"MKmqY5svE9bEg5aI"}
{"name":"7.62mm Hunting Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"4","penetrationmax":"4","damage":"4d6","bulk":3,"br":0,"rof":1,"ammo":8,"effectiverange":3,"maxrange":3,"sp":18,"cost":2200,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.mSeMgeKd9ZTNIhXJ"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037282756,"modifiedTime":1681170028398,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"MtHhYewRk0YnOG2M"}
{"name":"Mono Whip","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"6","penetrationmax":"6","damage":"1d6+3","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":20,"cost":12000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.RlezMD09UZ3ZWErP"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036403147,"modifiedTime":1681040947343,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"NPJCS4TwZ6Qf42Gd"}
{"name":"Sword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"1d6","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":15,"cost":60,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Vehicle Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Sc6j63SVB02wPbXG"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034945024,"modifiedTime":1681040959369,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"R4la7Q7MLIPdMXsg"}
{"name":"40mm Under Barrel","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"3d6","bulk":4,"br":10,"rof":1,"ammo":1,"effectiverange":3,"maxrange":3,"sp":15,"cost":3000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.lwhDg15dHgap6yc5"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038690142,"modifiedTime":1681169639364,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"ThpLpQ8VdsjJ529F"}
{"name":"Sonic Stunner","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"10","penetrationmax":"10","damage":"3d6","bulk":1,"br":1,"rof":1,"ammo":30,"effectiverange":null,"maxrange":null,"sp":10,"cost":4000,"size":0,"skillbonus":"","equipped":false,"description":"<p>Non Lethal</p>","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.n6xc5VRD6s2uac14"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036880366,"modifiedTime":1681040956156,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"TwPqrCBT5kyY4pvY"}
{"name":"12.7mm Sniper Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"6","penetrationmax":"6","damage":"5d6","bulk":12,"br":0,"rof":1,"ammo":10,"effectiverange":3,"maxrange":4,"sp":25,"cost":25000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.otxYoZik8qhMk4mO"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037617634,"modifiedTime":1681169322698,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"U7f2cziufgSQ0MHr"}
{"name":"5.56mm Hunting Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"3d6","bulk":3,"br":0,"rof":1,"ammo":8,"effectiverange":3,"maxrange":3,"sp":15,"cost":2000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.mzIbF5Y705j9oEys"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037200901,"modifiedTime":1681169816330,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"VJ4VTkgZ5FYKnMNE"}
{"name":"Micro Missile Launcher","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"8","penetrationmax":"8","damage":"3d6+3","bulk":7,"br":3,"rof":1,"ammo":8,"effectiverange":3,"maxrange":3,"sp":15,"cost":5400,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.vVcFHkG1TJn8p9I5"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038819145,"modifiedTime":1681171067796,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"WgJgGsB74Nw3shqu"}
{"name":"LASER SAW","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"1","penetrationmax":"20","damage":"5d6","bulk":15,"br":0,"rof":15,"ammo":100,"effectiverange":3,"maxrange":3,"sp":20,"cost":25000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.LAm8meJse0DhHnur"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038116939,"modifiedTime":1681171025255,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"WypBmsWL0i0XylnB"}
{"name":"Light Mace","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"1d6+3","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":30,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.hvLtvqr2lk5E6eAy"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034768818,"modifiedTime":1681040943668,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"WzyxJoVldsjBhsdF"}
{"name":"12.7mm HMG","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"6","penetrationmax":"6","damage":"5d6","bulk":20,"br":0,"rof":5,"ammo":40,"effectiverange":3,"maxrange":4,"sp":30,"cost":35000,"size":"P","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Um3fgOzBXczaUNRo"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037661685,"modifiedTime":1681169233047,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"ZZpmNMvWBZuEf5Fi"}
{"name":"Hand Grenade HX","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"2d6+3","bulk":0.5,"br":5,"rof":1,"ammo":1,"effectiverange":2,"maxrange":2,"sp":5,"cost":25,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Athletics"},"effects":[],"flags":{"core":{"sourceId":"Item.vRHRBpBm5J4lb5tR"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038430843,"modifiedTime":1681170950048,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"ayjAA1uHefDDh893"}
{"name":"Laser Pistol","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"1","penetrationmax":"10","damage":"3d6","bulk":2,"br":0,"rof":1,"ammo":20,"effectiverange":2,"maxrange":2,"sp":10,"cost":10000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.4RqUmErujrZs2LOW"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037889554,"modifiedTime":1681170992740,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"b3vDJyoLXgLFghFn"}
{"name":"Hand and a Half Sword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6","bulk":1.5,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":17,"cost":100,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.OZmglnGEEl71sFNX"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035025216,"modifiedTime":1681040925486,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"bzhFllMXTx4tfAG8"}
{"name":"Bang Stick","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6 + 2d6","bulk":4,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":4000,"size":0,"skillbonus":"","equipped":false,"description":"<p>Deals non-lethal damage</p>","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.1BEaz6sTWkxDS4oO"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035938681,"modifiedTime":1681040915931,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"c9U6tBwSHRMQFoKs"}
{"name":"Hand Grenade Frag","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"2d6+3","bulk":0.5,"br":8,"rof":1,"ammo":1,"effectiverange":2,"maxrange":2,"sp":5,"cost":25,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Athletics"},"effects":[],"flags":{"core":{"sourceId":"Item.X59OL66FoKwYUb67"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038367811,"modifiedTime":1681170937901,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"cCNaADR3s1dB9HdO"}
{"name":"Hyper Hammer","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"7","penetrationmax":"7","damage":"2d6","bulk":4,"br":0,"rof":0,"ammo":3,"effectiverange":null,"maxrange":null,"sp":25,"cost":15000,"size":0,"skillbonus":"","equipped":false,"description":"<p>Deals double ablation damage to armour</p>","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.xhclyvEb3lj5rM58"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036158310,"modifiedTime":1681040928971,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"cXWGcMl4V7tTZC8g"}
{"name":"Kick","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"1d6","bulk":0,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":0,"cost":0,"size":0,"skillbonus":"","equipped":false,"description":"<p>Non-lethal unless Lethal Weapon Perk is present.</p>","skill":"Unarmed Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.bcelQBwnSRTSNDyc"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034010216,"modifiedTime":1681040930607,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"d2MnXG105nEDRyrv"}
{"name":"Vibro Glaive","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"16","penetrationmax":"16","damage":"3d6+3","bulk":4,"br":0,"rof":0,"ammo":50,"effectiverange":null,"maxrange":null,"sp":40,"cost":54000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.KyquyB8xreBfwTIU"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036490562,"modifiedTime":1681040963429,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"eelTQhYRrf2BaQXU"}
{"name":"Auto Shotgun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"4d6","bulk":5,"br":1,"rof":5,"ammo":20,"effectiverange":2,"maxrange":2,"sp":15,"cost":3500,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.xfTFSgO3NzzxY1u2"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037433298,"modifiedTime":1681170709057,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"etuI51wOtpMWl7r0"}
{"name":"12mm SMG","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6+3","bulk":2,"br":0,"rof":5,"ammo":25,"effectiverange":2,"maxrange":2,"sp":14,"cost":2000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.dHRmAnL5n0CeYYuH"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037155915,"modifiedTime":1681169419751,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"g3ZNhpuvd3mvNVT0"}
{"name":"40mm Frag Launcher","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"3d6","bulk":7,"br":10,"rof":1,"ammo":10,"effectiverange":3,"maxrange":3,"sp":15,"cost":3000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Hpg0ngXPeBqgo9qO"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038568891,"modifiedTime":1681169625149,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"iAdaUDWLqafJNSLO"}
{"name":"20mm Frag Under Barrel","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"2d6","bulk":2,"br":3,"rof":1,"ammo":3,"effectiverange":2,"maxrange":3,"sp":15,"cost":2000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Q36OmkMRcfhI7l96"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038633896,"modifiedTime":1681169496568,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"jW17dxZQD3eJIBFq"}
{"name":"vibro sword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"16","penetrationmax":"16","damage":"2d6","bulk":2,"br":0,"rof":0,"ammo":30,"effectiverange":null,"maxrange":null,"sp":40,"cost":34000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.j3hTAMqQuGUkEVbB"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036437164,"modifiedTime":1681040964229,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"jelscGKphg8uR3sk"}
{"name":"Plasma Flamer","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"4d6*","bulk":8,"br":5,"rof":1,"ammo":10,"effectiverange":1,"maxrange":2,"sp":20,"cost":20000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.HS9jKLWpgHWjr8pJ"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038032320,"modifiedTime":1681171117865,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"jruqcBxHYiAqs60F"}
{"name":"Lightning Gun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"36","penetrationmax":"36","damage":"6d6","bulk":20,"br":2,"rof":1,"ammo":20,"effectiverange":2,"maxrange":3,"sp":40,"cost":122000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.ev7rvTLHJpXdWHCN"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038309294,"modifiedTime":1681171045879,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"lR6vZVU3tBhguuvO"}
{"name":"Mono Whip","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"6","penetrationmax":"6","damage":"1d6+3","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":20,"cost":12000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.RlezMD09UZ3ZWErP"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036403147,"modifiedTime":1681040948077,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"lSHnm2lOmTU2zv2r"}
{"name":"Net Launcher","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"#","bulk":5,"br":2,"rof":1,"ammo":1,"effectiverange":2,"maxrange":2,"sp":10,"cost":1900,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":true,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.qg14z82NTpaC07hu"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036766530,"modifiedTime":1681171095199,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"ls4ziiV5qa5oZeFM"}
{"name":"Plasma Pistol","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"5","penetrationmax":"5","damage":"4d6+6","bulk":5,"br":0,"rof":1,"ammo":5,"effectiverange":2,"maxrange":2,"sp":20,"cost":64000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.glfGAKytEHH5L2Oe"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038248339,"modifiedTime":1681171158802,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"nVRN6Qkk238BDCbs"}
{"name":"Power Jaw","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"1d6","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":4000,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.wsOnevdGZohj1T7P"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681036269109,"modifiedTime":1681040953528,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"nX1XJJ4jed18sVh9"}
{"name":"Hand and a Half Sword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6","bulk":1.5,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":17,"cost":100,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.OZmglnGEEl71sFNX"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035025216,"modifiedTime":1681040924498,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"nggft4baHMHyOyeG"}
{"name":"Spear","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"1d6+3","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":60,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.pKoPse0jDnxgq1nQ"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034887378,"modifiedTime":1681040956934,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"oi1hRp44TRbL2Kf0"}
{"name":"20mm Frag AGL","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"2d6","bulk":7,"br":3,"rof":5,"ammo":40,"effectiverange":2,"maxrange":3,"sp":15,"cost":6000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":true,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.ZDC4LlW6ZN4GJJRD"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038871356,"modifiedTime":1681169465140,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"pG4Ddu7gMJuLaJDz"}
{"name":"9mm Colt","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"2d6","bulk":1,"br":0,"rof":1,"ammo":25,"effectiverange":2,"maxrange":2,"sp":15,"cost":1000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.lB6gs2D9tnCtMGuy"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036982667,"modifiedTime":1681170662466,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"pRKorqKjp56oVvbI"}
{"name":"12mm Colt","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6+3","bulk":1,"br":0,"rof":1,"ammo":15,"effectiverange":2,"maxrange":2,"sp":15,"cost":2000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Z6DEIqzBITjgVblF"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037116773,"modifiedTime":1681169376628,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"pV16IGYMEO8hI1sB"}
{"name":"Sword","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"1d6","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":15,"cost":60,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Vehicle Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.Sc6j63SVB02wPbXG"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034945024,"modifiedTime":1681040958585,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"paqA0hRI9f9RZ5gy"}
{"name":"4 shot micro-missile launcher","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"8","penetrationmax":"8","damage":"3d6+3","bulk":7,"br":3,"rof":4,"ammo":16,"effectiverange":3,"maxrange":3,"sp":10,"cost":15400,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.3PIWrWANmkWQJF94"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038981327,"modifiedTime":1681169550071,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"pbr10pmtyTZTlC77"}
{"name":"Axe","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"1d6+3","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":10,"cost":30,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.JXpsBt6wYdXcaX8U"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681034208160,"modifiedTime":1681040914895,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"puEc6jwJJ5PvVQJw"}
{"name":"Bow","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"1d6","bulk":2,"br":0,"rof":1,"ammo":1,"effectiverange":2,"maxrange":3,"sp":10,"cost":1000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.dpsnZbtE1YfNO2kF"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036728509,"modifiedTime":1681170900333,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"r9I7YSOJsaZtsgtd"}
{"name":"Under Barrel Micro Missile","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"8","penetrationmax":"8","damage":"3d6+3","bulk":1,"br":3,"rof":1,"ammo":1,"effectiverange":3,"maxrange":3,"sp":15,"cost":3400,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.jJ7Rpc229qAQNwnA"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681038736431,"modifiedTime":1681171313554,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"rE0pF9qAdnNMp9P0"}
{"name":"5.56mm Assault Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"3","penetrationmax":"3","damage":"3d6","bulk":4,"br":0,"rof":3,"ammo":35,"effectiverange":3,"maxrange":3,"sp":15,"cost":3000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.tzkZGO3pX30Wfzpr"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037328820,"modifiedTime":1681169672560,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"v6U6XUNRaJaddW8w"}
{"name":"Laser Rifle","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"energy","associatedskill":"","penetrationmin":"1","penetrationmax":"15","damage":"4d6","bulk":10,"br":0,"rof":1,"ammo":60,"effectiverange":3,"maxrange":3,"sp":15,"cost":16000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Energy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.WJR1pN4zGi2F3F9Z"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037934259,"modifiedTime":1681171005379,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"vADDxDg7SaSYKuPj"}
{"name":"4 shot 66mm LAAW","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"15","penetrationmax":"15","damage":"5d6**","bulk":12,"br":1,"rof":4,"ammo":4,"effectiverange":2,"maxrange":3,"sp":15,"cost":12000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Heavy Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.3wOa25R8SlXAZkAK"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681039034030,"modifiedTime":1681169523992,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"w9O2Wi0Vh5gOvKZT"}
{"name":"12mm Handgun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"slug","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"2d6+3","bulk":1,"br":0,"rof":1,"ammo":15,"effectiverange":2,"maxrange":2,"sp":10,"cost":1500,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.bJ5YnvxHgMn2b08x"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681037062666,"modifiedTime":1681169394379,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"wI6F99wkIasoxsKV"}
{"name":"Spear Gun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"1d6","bulk":2,"br":0,"rof":1,"ammo":1,"effectiverange":1,"maxrange":2,"sp":10,"cost":2000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.ZKKX6EJdtDePBX7C"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036842134,"modifiedTime":1681171248634,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"y5XgrGJ5paFlHxDf"}
{"name":"Nunchaku","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"2d6","bulk":1,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":12,"cost":120,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.CEMUsu6zoG1rErRL"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035278145,"modifiedTime":1681040949624,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"yBoqoPHI8cVOsOkg"}
{"name":"Extendable Baton","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"0","penetrationmax":"0","damage":"1d6+3","bulk":0.5,"br":0,"rof":0,"ammo":0,"effectiverange":null,"maxrange":null,"sp":20,"cost":175,"size":null,"skillbonus":"","equipped":false,"description":"","skill":"Melee Combat"},"effects":[],"flags":{"core":{"sourceId":"Item.igyxl8tn5Daif3iw"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681035534252,"modifiedTime":1681040921653,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"ycYWO4ANysArsyRO"}
{"name":"Crossbow","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"unconvent","associatedskill":"","penetrationmin":"2","penetrationmax":"2","damage":"1d6+3","bulk":3,"br":0,"rof":1,"ammo":1,"effectiverange":2,"maxrange":3,"sp":10,"cost":1000,"size":"0","skillbonus":"","incendiary":false,"armourdestruction":false,"disablesystems":false,"fatiguedamage":false,"specialffect":false,"guidedweapon":false,"ammotype":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.fcpYl40o6ClGZK8Q"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.15","coreVersion":"10.291","createdTime":1681036691267,"modifiedTime":1681170885840,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"zJ5X0Si02aZcQ8y2"}
{"name":"Battle Shotgun","type":"weapon","img":"systems/fvtt-dark-stars/images/icons/melee.webp","system":{"weapontype":"","associatedskill":"","penetrationmin":"1","penetrationmax":"1","damage":"4d6","bulk":6,"br":1,"rof":5,"ammo":40,"effectiverange":null,"maxrange":null,"sp":15,"cost":5500,"size":0,"skillbonus":"","equipped":false,"description":"","skill":"Projectile Weapons"},"effects":[],"flags":{"core":{"sourceId":"Item.QeB3zopiEyCnqBWT"}},"_stats":{"systemId":"fvtt-dark-stars","systemVersion":"10.0.14","coreVersion":"10.291","createdTime":1681037482014,"modifiedTime":1681040916621,"lastModifiedBy":"y4pHiyinosPewwhz"},"folder":null,"sort":0,"ownership":{"default":0,"y4pHiyinosPewwhz":3},"_id":"zx96NZdE3GrK999G"}

BIN
packs/weapons/000018.ldb Normal file

Binary file not shown.

0
packs/weapons/000025.log Normal file
View File

1
packs/weapons/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000023

0
packs/weapons/LOCK Normal file
View File

8
packs/weapons/LOG Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:04:27.711162 7f9ff37fe6c0 Recovering log #21
2023/10/02-23:04:27.720987 7f9ff37fe6c0 Delete type=3 #19
2023/10/02-23:04:27.721046 7f9ff37fe6c0 Delete type=0 #21
2023/10/02-23:07:22.000288 7f9d71bff6c0 Level-0 table #26: started
2023/10/02-23:07:22.000332 7f9d71bff6c0 Level-0 table #26: 0 bytes OK
2023/10/02-23:07:22.007961 7f9d71bff6c0 Delete type=0 #24
2023/10/02-23:07:22.029068 7f9d71bff6c0 Manual compaction at level-0 from '!items!265V8wzrrH3EEgtM' @ 72057594037927935 : 1 .. '!items!zx96NZdE3GrK999G' @ 0 : 0; will stop at (end)
2023/10/02-23:07:22.029125 7f9d71bff6c0 Manual compaction at level-1 from '!items!265V8wzrrH3EEgtM' @ 72057594037927935 : 1 .. '!items!zx96NZdE3GrK999G' @ 0 : 0; will stop at (end)

8
packs/weapons/LOG.old Normal file
View File

@ -0,0 +1,8 @@
2023/10/02-23:02:12.126451 7f9ff3fff6c0 Recovering log #16
2023/10/02-23:02:12.136790 7f9ff3fff6c0 Delete type=3 #14
2023/10/02-23:02:12.136838 7f9ff3fff6c0 Delete type=0 #16
2023/10/02-23:02:46.967314 7f9d71bff6c0 Level-0 table #22: started
2023/10/02-23:02:46.967344 7f9d71bff6c0 Level-0 table #22: 0 bytes OK
2023/10/02-23:02:46.973562 7f9d71bff6c0 Delete type=0 #20
2023/10/02-23:02:46.981385 7f9d71bff6c0 Manual compaction at level-0 from '!items!265V8wzrrH3EEgtM' @ 72057594037927935 : 1 .. '!items!zx96NZdE3GrK999G' @ 0 : 0; will stop at (end)
2023/10/02-23:02:46.989582 7f9d71bff6c0 Manual compaction at level-1 from '!items!265V8wzrrH3EEgtM' @ 72057594037927935 : 1 .. '!items!zx96NZdE3GrK999G' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -25,7 +25,7 @@
"type": "Item",
"label": "Armors",
"name": "armor",
"path": "packs/armor.db",
"path": "packs/armor",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -34,7 +34,7 @@
"type": "Item",
"label": "Equipments",
"name": "equipment",
"path": "packs/equipment.db",
"path": "packs/equipment",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -43,7 +43,7 @@
"type": "Item",
"label": "Shields",
"name": "shields",
"path": "packs/shields.db",
"path": "packs/shields",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -52,7 +52,7 @@
"type": "Item",
"label": "Weapons",
"name": "weapons",
"path": "packs/weapons.db",
"path": "packs/weapons",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -61,7 +61,7 @@
"type": "Item",
"label": "Conditions",
"name": "conditions",
"path": "packs/conditions.db",
"path": "packs/conditions",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -70,7 +70,7 @@
"type": "Item",
"label": "Currency",
"name": "currency",
"path": "packs/currency.db",
"path": "packs/currency",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -79,7 +79,7 @@
"type": "Item",
"label": "Skills",
"name": "skills",
"path": "packs/skills.db",
"path": "packs/skills",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -88,7 +88,7 @@
"type": "Item",
"label": "Perks",
"name": "perks",
"path": "packs/perks.db",
"path": "packs/perks",
"system": "fvtt-dark-stars",
"private": false,
"flags": {}
@ -100,14 +100,14 @@
"styles": [
"styles/simple.css"
],
"version": "11.0.0",
"version": "11.0.1",
"compatibility": {
"minimum": "11",
"verified": "11"
},
"title": "Dark Stars RPG",
"manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-dark-stars/raw/branch/main/system.json",
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-dark-stars/archive/fvtt-dark-stars-v11.0.0.zip",
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-dark-stars/archive/fvtt-dark-stars-v11.0.1.zip",
"url": "https://www.uberwald.me/gitea/uberwald/",
"background": "images/ui/dark_stars_welcome_page.webp",
"id": "fvtt-dark-stars"

View File

@ -375,7 +375,10 @@
"associatedskill": "",
"penetrationmin": "",
"penetrationmax": "",
"hashpdamage": true,
"damage": "",
"hasfatiguedamage": false,
"fatiguedamage": "",
"bulk": 0,
"br": 0,
"rof": 0,
@ -389,7 +392,6 @@
"incendiary": false,
"armourdestruction": false,
"disablesystems": false,
"fatiguedamage": false,
"specialffect": false,
"guidedweapon": false,
"ammotype": "",

View File

@ -50,7 +50,12 @@
{{/if}}
{{#if (and weapon isSuccess)}}
<li>Roll Damage: [[/r {{weapon.system.damage}}]]</li>
{{#if weapon.system.hashpdamage}}
<li>Roll HP Damage: [[/r {{weapon.system.damage}}]]</li>
{{/if}}
{{#if weapon.system.hasfatiguedamage}}
<li>Roll Fatigue Damage: [[/r {{weapon.system.fatiguedamage}}]]</li>
{{/if}}
{{/if}}
{{#if (and (not isSuccess) rerolls)}}

View File

@ -47,9 +47,23 @@
<input type="text" class="right item-field-label-long" name="system.penetrationmax" value="{{system.penetrationmax}}" data-dtype="String"/>
</li>
<li class="flexrow"><label class="item-field-label-long">Damage</label>
<li class="flexrow"><label class="item-field-label-vlong">HP damage ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="system.hashpdamage" {{checked system.hashpdamage}}/></label>
</li>
{{#if system.hashpdamage}}
<li class="flexrow"><label class="item-field-label-vlong">HP Damage formula</label>
<input type="text" class="right item-field-label-long" name="system.damage" value="{{system.damage}}" data-dtype="String"/>
</li>
{{/if}}
<li class="flexrow"><label class="item-field-label-vlong">Fatigue damage ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="system.hasfatiguedamage" {{checked system.hasfatiguedamage}}/></label>
</li>
{{#if system.hasfatiguedamage}}
<li class="flexrow"><label class="item-field-label-vlong">Fatigue damage formula</label>
<input type="text" class="right item-field-label-long" name="system.fatiguedamage" value="{{system.fatiguedamage}}" data-dtype="String"/>
</li>
{{/if}}
<li class="flexrow"><label class="item-field-label-long">Bulk</label>
<input type="text" class="input-numeric-short padd-right" name="system.bulk" value="{{system.bulk}}" data-dtype="Number"/>
@ -108,9 +122,6 @@
<li class="flexrow"><label class="item-field-label-vlong">Disable system ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="system.disablesystems" {{checked system.disablesystems}}/></label>
</li>
<li class="flexrow"><label class="item-field-label-vlong">Fatigue damage ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="system.fatiguedamage" {{checked system.fatiguedamage}}/></label>
</li>
<li class="flexrow"><label class="item-field-label-vlong">Special effect ?</label>
<label class="attribute-value checkbox"><input type="checkbox" name="system.specialffect" {{checked system.specialffect}}/></label>
</li>