Compare commits

...

3 Commits

Author SHA1 Message Date
d888c6a2eb v10 branch - Update manifest 2022-07-13 08:07:16 +02:00
165e41fef6 v10 branch - Update manifest 2022-07-13 08:07:04 +02:00
19bb0798c8 Sync 2022-07-07 13:33:31 +02:00
2 changed files with 12 additions and 12 deletions

View File

@ -203,10 +203,10 @@ export class BoLActor extends Actor {
return Object.values(this.system.resources)
}
get boons() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boon");
return duplicate(this.items.filter(i => i.type === "feature" && i.system.subtype === "boon") || []);
}
get flaws() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw");
return duplicate(this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw") || []);
}
get careers() {
return duplicate( this.items.filter(i => i.type === "feature" && i.system.subtype === "career") || [])
@ -288,10 +288,11 @@ export class BoLActor extends Actor {
}
get bonusBoons() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boon" && i.system.properties.isbonusdice);
let boons = this.items.filter(i => i.type === "feature" && i.system.subtype === "boon" && i.system.properties.isbonusdice)
return duplicate( boons || [])
}
get malusFlaws() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw" && i.system.properties.ismalusdice);
return duplicate( this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw" && i.system.properties.ismalusdice) || []);
}
isSorcerer() {

View File

@ -1,5 +1,5 @@
{
"name": "bol",
"id": "bol",
"title": "Barbarians of Lemuria",
"description": "The Barbarians of Lemuria system for FoundryVTT!",
"author": "LeRatierBretonnien,Zigmund",
@ -14,10 +14,10 @@
"url": "https://www.uberwald.me/gitea/public/bol",
"license": "LICENSE.txt",
"flags": {},
"version": "10.0.0",
"templateVersion": 10,
"minimumCoreVersion": "10",
"compatibleCoreVersion": "10",
"version": "10.0.1",
"compatibility": {
"minimum": 10
},
"scripts": [],
"esmodules": [
"module/bol.js"
@ -179,11 +179,10 @@
"private": false
}
],
"system": [],
"dependencies": [],
"relationships": { },
"socket": true,
"manifest": "https://www.uberwald.me/gitea/public/bol/raw/v10/system.json",
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v10.0.0.zip",
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v10.0.1.zip",
"protected": false,
"background": "images/map_lemurie.webp",
"gridDistance": 1.5,