mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
Removed DestroyOnEmpty from consumables
This commit is contained in:
parent
263c05c307
commit
848a7ab466
65 changed files with 7 additions and 82 deletions
|
|
@ -2461,8 +2461,7 @@
|
||||||
"featuresLabel": "Community Feature"
|
"featuresLabel": "Community Feature"
|
||||||
},
|
},
|
||||||
"Consumable": {
|
"Consumable": {
|
||||||
"consumeOnUse": "Consume On Use",
|
"consumeOnUse": "Consume On Use"
|
||||||
"destroyOnEmpty": "Destroy On Empty"
|
|
||||||
},
|
},
|
||||||
"DomainCard": {
|
"DomainCard": {
|
||||||
"type": "Type",
|
"type": "Type",
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,7 @@ export default class DHConsumable extends BaseDataItem {
|
||||||
const fields = foundry.data.fields;
|
const fields = foundry.data.fields;
|
||||||
return {
|
return {
|
||||||
...super.defineSchema(),
|
...super.defineSchema(),
|
||||||
consumeOnUse: new fields.BooleanField({ initial: true }),
|
consumeOnUse: new fields.BooleanField({ initial: true })
|
||||||
destroyOnEmpty: new fields.BooleanField({ initial: true })
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -754,20 +754,10 @@ export default class DhpActor extends Actor {
|
||||||
resources.forEach(r => {
|
resources.forEach(r => {
|
||||||
if (r.itemId) {
|
if (r.itemId) {
|
||||||
const { path, value } = game.system.api.fields.ActionFields.CostField.getItemIdCostUpdate(r);
|
const { path, value } = game.system.api.fields.ActionFields.CostField.getItemIdCostUpdate(r);
|
||||||
|
|
||||||
if (
|
|
||||||
r.key === 'quantity' &&
|
|
||||||
r.target.type === 'consumable' &&
|
|
||||||
value === 0 &&
|
|
||||||
r.target.system.destroyOnEmpty
|
|
||||||
) {
|
|
||||||
r.target.delete();
|
|
||||||
} else {
|
|
||||||
updates.items[r.key] = {
|
updates.items[r.key] = {
|
||||||
target: r.target,
|
target: r.target,
|
||||||
resources: { [path]: value }
|
resources: { [path]: value }
|
||||||
};
|
};
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
const valueFunc = (base, resource, baseMax) => {
|
const valueFunc = (base, resource, baseMax) => {
|
||||||
if (resource.clear) return baseMax && base.inverted ? baseMax : 0;
|
if (resource.clear) return baseMax && base.inverted ? baseMax : 0;
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -134,7 +134,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -159,7 +159,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 62,
|
"page": 62,
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 60,
|
"page": 60,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"consumeOnUse": true,
|
"consumeOnUse": true,
|
||||||
"destroyOnEmpty": true,
|
|
||||||
"attribution": {
|
"attribution": {
|
||||||
"source": "Daggerheart SRD",
|
"source": "Daggerheart SRD",
|
||||||
"page": 61,
|
"page": 61,
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "daggerheart",
|
"id": "daggerheart",
|
||||||
"title": "Daggerheart",
|
"title": "Daggerheart",
|
||||||
"description": "An unofficial implementation of the Daggerheart system",
|
"description": "An unofficial implementation of the Daggerheart system",
|
||||||
"version": "1.9.4",
|
"version": "1.9.5",
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "13.346",
|
"minimum": "13.346",
|
||||||
"verified": "13.351",
|
"verified": "13.351",
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,5 @@
|
||||||
|
|
||||||
<span>{{localize "DAGGERHEART.ITEMS.Consumable.consumeOnUse"}}</span>
|
<span>{{localize "DAGGERHEART.ITEMS.Consumable.consumeOnUse"}}</span>
|
||||||
{{formField systemFields.consumeOnUse value=source.system.consumeOnUse}}
|
{{formField systemFields.consumeOnUse value=source.system.consumeOnUse}}
|
||||||
|
|
||||||
<span>{{localize "DAGGERHEART.ITEMS.Consumable.destroyOnEmpty"}}</span>
|
|
||||||
{{formField systemFields.destroyOnEmpty value=source.system.destroyOnEmpty}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</section>
|
</section>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue