forked from public/bol
Compare commits
3 Commits
bol-v10.0.
...
bol-v10.0.
Author | SHA1 | Date | |
---|---|---|---|
d888c6a2eb | |||
165e41fef6 | |||
19bb0798c8 |
@ -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() {
|
||||
|
15
system.json
15
system.json
@ -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,
|
||||
|
Reference in New Issue
Block a user