mirror of
https://github.com/RoY7x/worldbuilding.git
synced 2025-04-30 02:31:41 -04:00
This commit is contained in:
parent
7bea16df17
commit
73addd7866
3 changed files with 7 additions and 6 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -5,3 +5,5 @@
|
||||||
# Node Modules
|
# Node Modules
|
||||||
node_modules/
|
node_modules/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
|
||||||
|
worldbuilding.lock
|
||||||
|
|
|
@ -523,7 +523,7 @@ export class EntitySheetHelper {
|
||||||
// Identify the template Actor types
|
// Identify the template Actor types
|
||||||
const collection = game.collections.get(this.documentName);
|
const collection = game.collections.get(this.documentName);
|
||||||
const templates = collection.filter(a => a.getFlag("worldbuilding", "isTemplate"));
|
const templates = collection.filter(a => a.getFlag("worldbuilding", "isTemplate"));
|
||||||
const defaultType = this.metadata.types[0];
|
const defaultType = this.TYPES[0];
|
||||||
const types = {
|
const types = {
|
||||||
[defaultType]: game.i18n.localize("SIMPLE.NoTemplate")
|
[defaultType]: game.i18n.localize("SIMPLE.NoTemplate")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"id": "worldbuilding",
|
"id": "worldbuilding",
|
||||||
"version": "0.7.2",
|
"version": "0.8.0",
|
||||||
"title": "Simple World-Building",
|
"title": "Simple World-Building",
|
||||||
"url": "https://gitlab.com/foundrynet/worldbuilding/",
|
"url": "https://github.com/foundryvtt/worldbuilding/",
|
||||||
"description": "A minimalist game system which provides configurable Actor and Item templates to support free-form system agnostic game-play.",
|
"description": "A minimalist game system which provides configurable Actor and Item templates to support free-form system agnostic game-play.",
|
||||||
"license": "LICENSE.txt",
|
"license": "LICENSE.txt",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
@ -23,13 +23,12 @@
|
||||||
],
|
],
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "10",
|
"minimum": "10",
|
||||||
"verified": "10.288",
|
"verified": "11"
|
||||||
"maximum": "10"
|
|
||||||
},
|
},
|
||||||
"gridDistance": 5,
|
"gridDistance": 5,
|
||||||
"gridUnits": "ft",
|
"gridUnits": "ft",
|
||||||
"primaryTokenAttribute": "health",
|
"primaryTokenAttribute": "health",
|
||||||
"secondaryTokenAttribute": "power",
|
"secondaryTokenAttribute": "power",
|
||||||
"manifest": "https://raw.githubusercontent.com/foundryvtt/worldbuilding/master/system.json",
|
"manifest": "https://raw.githubusercontent.com/foundryvtt/worldbuilding/master/system.json",
|
||||||
"download": "https://github.com/foundryvtt/worldbuilding/archive/refs/tags/release-072.zip"
|
"download": "https://github.com/foundryvtt/worldbuilding/archive/refs/tags/release-080.zip"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue