adds new equipment
parent
87a785e65d
commit
92540c58cb
13
gulpfile.mjs
13
gulpfile.mjs
|
|
@ -112,10 +112,17 @@ async function prepareDB() {
|
||||||
convert("./src/packs/_source/vorteile", "./src/packs/__source/vorteile", "Advantage");
|
convert("./src/packs/_source/vorteile", "./src/packs/__source/vorteile", "Advantage");
|
||||||
convert("./src/packs/_source/nachteile", "./src/packs/__source/vorteile", "Advantage", false);
|
convert("./src/packs/_source/nachteile", "./src/packs/__source/vorteile", "Advantage", false);
|
||||||
convert("./src/packs/_source/sonderfertigkeiten", "./src/packs/__source/sonderfertigkeiten", "SpecialAbility");
|
convert("./src/packs/_source/sonderfertigkeiten", "./src/packs/__source/sonderfertigkeiten", "SpecialAbility");
|
||||||
convert("./src/packs/_source/waffen", "./src/packs/__source/waffen", "Equipment");
|
|
||||||
convert("./src/packs/_source/waehrungen", "./src/packs/__source/waehrungen", "Equipment");
|
convert("./src/packs/_source/waehrungen", "./src/packs/__source/waehrungen", "Equipment");
|
||||||
convert("./src/packs/_source/munition", "./src/packs/__source/munition", "Equipment");
|
convert("./src/packs/_source/Gegenstaende/Waffen", "./src/packs/__source/Waffen", "Equipment");
|
||||||
convert("./src/packs/_source/ruestzeug", "./src/packs/__source/ruestzeug", "Equipment");
|
convert("./src/packs/_source/Gegenstaende/Munition", "./src/packs/__source/Munition", "Equipment");
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Ruestzeug", "./src/packs/__source/Ruestzeug", "Equipment");
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Behaelter", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Bekleidung", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Beleuchtung", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Buecher", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Essutensilien", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Sonstiges", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
|
convert("./src/packs/_source/Gegenstaende/Werkzeug", "./src/packs/__source/Gegenstaende", "Equipment", false);
|
||||||
convert("./src/packs/_source/liturgien-und-segnungen", "./src/packs/__source/liturgien", "Liturgy");
|
convert("./src/packs/_source/liturgien-und-segnungen", "./src/packs/__source/liturgien", "Liturgy");
|
||||||
convert("./src/packs/_source/wunden", "./src/packs/__source/wunden", "ActiveEffect");
|
convert("./src/packs/_source/wunden", "./src/packs/__source/wunden", "ActiveEffect");
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.5 KiB |
20
src/main.mjs
20
src/main.mjs
|
|
@ -287,6 +287,26 @@ Hooks.once("init", () => {
|
||||||
requiresReload: true
|
requiresReload: true
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Handlebars.registerHelper("weight", (data) => {
|
||||||
|
|
||||||
|
const baseValue = data * 1000 // to get to gramms (1/1000 Stone)
|
||||||
|
|
||||||
|
const stone = Math.floor(baseValue / 1000)
|
||||||
|
const remainder = baseValue - (stone * 1000)
|
||||||
|
const ounces = remainder / 25
|
||||||
|
let stoneRepresentation = ''
|
||||||
|
let ouncesRepresentation = ''
|
||||||
|
if (stone > 0) {
|
||||||
|
stoneRepresentation = `<span class="stone">${stone}</span>`
|
||||||
|
}
|
||||||
|
if (ounces > 0) {
|
||||||
|
ouncesRepresentation = `<span class="ounces">${ounces}</span>`
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Handlebars.SafeString(`<span class="weight">${stoneRepresentation}${ouncesRepresentation}</span>`)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
Handlebars.registerHelper("currency", (data) => {
|
Handlebars.registerHelper("currency", (data) => {
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,7 @@ export class PlayerCharacterDataModel extends foundry.abstract.TypeDataModel {
|
||||||
cooldowns: new ArrayField(new SchemaField({
|
cooldowns: new ArrayField(new SchemaField({
|
||||||
start: new NumberField({required: true, integer: true}),
|
start: new NumberField({required: true, integer: true}),
|
||||||
current: new NumberField({required: true, integer: true}),
|
current: new NumberField({required: true, integer: true}),
|
||||||
|
type: new StringField({required: true}), // "MANEUVER", "SPELL", "LITURGY", "TALENT"
|
||||||
data: new ObjectField()
|
data: new ObjectField()
|
||||||
})),
|
})),
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
/**
|
||||||
|
* @typedef ManueverCooldownData
|
||||||
|
* @property {String} weapon
|
||||||
|
* @property {String} skill
|
||||||
|
* @property {String} target
|
||||||
|
* @property {*} maneuver,
|
||||||
|
* @property {Number} mod
|
||||||
|
* @property {Number} circumstance
|
||||||
|
* @property {Number} penalty
|
||||||
|
* @property {Number} targetNumber
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef LiturgyCooldownData
|
||||||
|
* Data that pertains to sustain a Cooldown of a Liturgy, this includes a target if any the liturgy by Id and all applied modifications
|
||||||
|
* @property {String} liturgy the id of the Liturgy to be cast
|
||||||
|
* @property {String} target the id of the target, if any, of the Liturgy
|
||||||
|
* @property {[String]} mod an Array of Mods that are applied to the Liturgy
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef Cooldown
|
||||||
|
* @property {({weapon: Item, skill: Item, target: Actor, mod: Number})=>Number} start
|
||||||
|
* @property {({weapon: Item, skill: Item, target: Actor, mod: Number})=>Number} current
|
||||||
|
* @property {ManueverCooldownData|LiturgyCooldownData} data
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
@ -99,6 +99,7 @@ export class CombatActionDialog extends HandlebarsApplicationMixin(ApplicationV2
|
||||||
return true
|
return true
|
||||||
} else { // push into cooldown queue
|
} else { // push into cooldown queue
|
||||||
const cooldowns = this._actor.system.cooldowns
|
const cooldowns = this._actor.system.cooldowns
|
||||||
|
/** @type Cooldown */
|
||||||
const newCooldown = {
|
const newCooldown = {
|
||||||
start: maneuver.cooldown({weapon, skill, target, mod: this._mod}),
|
start: maneuver.cooldown({weapon, skill, target, mod: this._mod}),
|
||||||
current: maneuver.cooldown({weapon, skill, target, mod: this._mod}),
|
current: maneuver.cooldown({weapon, skill, target, mod: this._mod}),
|
||||||
|
|
|
||||||
|
|
@ -198,7 +198,7 @@ export default {
|
||||||
&& key.indexOf(".links") === -1
|
&& key.indexOf(".links") === -1
|
||||||
&& key.indexOf(".rechts") === -1
|
&& key.indexOf(".rechts") === -1
|
||||||
&& key.indexOf(".fernkampf") === -1
|
&& key.indexOf(".fernkampf") === -1
|
||||||
&& key.indexOf(".munition") === -1
|
&& key.indexOf(".Munition") === -1
|
||||||
})
|
})
|
||||||
updateObject[nextUnoccupiedSlot[0]] = target.dataset.itemId
|
updateObject[nextUnoccupiedSlot[0]] = target.dataset.itemId
|
||||||
thisObject.document.update(updateObject)
|
thisObject.document.update(updateObject)
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,8 @@ class CharacterSheet extends HandlebarsApplicationMixin(ActorSheetV2) {
|
||||||
template: Combat.template
|
template: Combat.template
|
||||||
},
|
},
|
||||||
equipment: {
|
equipment: {
|
||||||
template: Equipment.template
|
template: Equipment.template,
|
||||||
|
scrollable: ['']
|
||||||
},
|
},
|
||||||
skills: {
|
skills: {
|
||||||
template: Skills.template
|
template: Skills.template
|
||||||
|
|
|
||||||
|
|
@ -498,6 +498,7 @@ export class XmlImport {
|
||||||
const compendiumOfArmor = game.packs.get('DSA_4-1.Armor');
|
const compendiumOfArmor = game.packs.get('DSA_4-1.Armor');
|
||||||
const compendiumOfWeapons = game.packs.get('DSA_4-1.Weapons');
|
const compendiumOfWeapons = game.packs.get('DSA_4-1.Weapons');
|
||||||
const compendiumOfAmmunition = game.packs.get('DSA_4-1.Ammunition');
|
const compendiumOfAmmunition = game.packs.get('DSA_4-1.Ammunition');
|
||||||
|
const compendiumOfItems = game.packs.get('DSA_4-1.Items');
|
||||||
let eId = null
|
let eId = null
|
||||||
let compendium = null
|
let compendium = null
|
||||||
if (compendiumOfArmor?.index.find(p => p.name === e.name)) {
|
if (compendiumOfArmor?.index.find(p => p.name === e.name)) {
|
||||||
|
|
@ -512,6 +513,10 @@ export class XmlImport {
|
||||||
eId = compendiumOfAmmunition?.index.find(p => p.name === e.name)
|
eId = compendiumOfAmmunition?.index.find(p => p.name === e.name)
|
||||||
compendium = compendiumOfAmmunition
|
compendium = compendiumOfAmmunition
|
||||||
}
|
}
|
||||||
|
if (compendiumOfItems?.index.find(p => p.name === e.name)) {
|
||||||
|
eId = compendiumOfItems?.index.find(p => p.name === e.name)
|
||||||
|
compendium = compendiumOfItems
|
||||||
|
}
|
||||||
|
|
||||||
if (eId && compendium) {
|
if (eId && compendium) {
|
||||||
compendium.getDocument(eId._id).then(sf => actor.createEmbeddedDocuments('Item', [sf]))
|
compendium.getDocument(eId._id).then(sf => actor.createEmbeddedDocuments('Item', [sf]))
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Duftöl",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Feuerstein u Stahl",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Gwen-Petryl-Stein",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Kerze",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Kerzenlaterne, Holz/Pergament",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Kerzenständer, Zinn",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Lampenöl",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Öllampe",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Pechfakel",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Sturmlaterne, Öl",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Zunderdose, Wasserdicht",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Zunderdose",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Einfaches Trinkhorn",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Eisenpfanne (1,5 Spann)",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Eisentopf (12 Maß)",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Essbesteck, Zinn",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Essbesteck, Eisen",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Henkelbecher, Zinn",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Holzbecher, einfach",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Holzlöffel, einfach",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Holzteller, einfach",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Karaffe aus Neethaer Glas",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Kessel (20 Maß, emailiert)",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Kupferkessel",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Silberpokal",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Tonkrug, einfach",
|
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
|
||||||
"category": [
|
|
||||||
"Gegenstand"
|
|
||||||
],
|
|
||||||
"weight": 3,
|
|
||||||
"price": 70
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Dolchscheide, versteckt",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Key.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.2,
|
||||||
|
"price": 150
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Futterbeutel",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Bag.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.25,
|
||||||
|
"price": 5
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Geldbeutel, Leder",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Bag.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.025,
|
||||||
|
"price": 1
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Gürteltasche, Hartleder",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Bag.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.05,
|
||||||
|
"price": 4
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Lederrucksack (15 Stein)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Backpack.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.5,
|
||||||
|
"price": 40
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Nachthemd, Leinen",
|
||||||
|
"image": "systems/DSA_4-1/assets/Mage Clothes/SODA_Icons_MageClothes_192.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.375,
|
||||||
|
"price": 100
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Packsattel, klein",
|
||||||
|
"image": "systems/DSA_4-1/assets/Quivers/SODA_Icons_Quiver_36.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 15,
|
||||||
|
"price": 300
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Köcher, Leder (20 Pfeile)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Quivers/SODA_Icons_Quiver_36.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.75,
|
||||||
|
"price": 150
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Schmuckkästchen mit Schloss (3 Stein)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Chest.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 1.125,
|
||||||
|
"price": 150
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Tabakdose, Silber",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Backpack.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.05,
|
||||||
|
"price": 30
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Trinkflasche (5 Schank)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Backpack.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.2,
|
||||||
|
"price": 20
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Zunderdose, Wasserdicht",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Backpack.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.25,
|
||||||
|
"price": 70
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Zunderdose",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Backpack.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.2,
|
||||||
|
"price": 20
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Bluse",
|
||||||
|
"image": "systems/DSA_4-1/assets/Mage Clothes/SODA_Icons_MageClothes_146.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.375,
|
||||||
|
"price": 8
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Hose",
|
||||||
|
"image": "systems/DSA_4-1/assets/Armor/SODA_Icon_Armor_LeatherBoots.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.75,
|
||||||
|
"price": 10
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Kaftan",
|
||||||
|
"image": "systems/DSA_4-1/assets/Mage Clothes/SODA_Icons_MageClothes_192.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 3,
|
||||||
|
"price": 70
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Korsett",
|
||||||
|
"image": "systems/DSA_4-1/assets/Mage Clothes/SODA_Icons_MageClothes_147.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.875,
|
||||||
|
"price": 600
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Ledergürtel",
|
||||||
|
"image": "systems/DSA_4-1/assets/Armor/SODA_Icon_Armor_LeatherBelt.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.2,
|
||||||
|
"price": 20
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Lederhandschuhe",
|
||||||
|
"image": "systems/DSA_4-1/assets/Armor/SODA_Icon_Armor_LeatherGloves.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.15,
|
||||||
|
"price": 30
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Lederhose",
|
||||||
|
"image": "systems/DSA_4-1/assets/Armor/SODA_Icon_Armor_LeatherBoots.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.15,
|
||||||
|
"price": 30
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Rock",
|
||||||
|
"image": "systems/DSA_4-1/assets/Armor/SODA_Icon_Clothing_Scarf.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 1.125,
|
||||||
|
"price": 10
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Schwere Reitstiefel",
|
||||||
|
"image": "systems/DSA_4-1/assets/Armor/SODA_Icon_Armor_LeatherBoots.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 2.5,
|
||||||
|
"price": 200
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Unterkleidung",
|
||||||
|
"image": "systems/DSA_4-1/assets/Mage Clothes/SODA_Icons_MageClothes_146.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 2.5,
|
||||||
|
"price": 250
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Duftöl",
|
||||||
|
"image": "systems/DSA_4-1/assets/Condiments/SODA_Icon_Condiments_29.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.25,
|
||||||
|
"price": 10
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Feuerstein u Stahl",
|
||||||
|
"image": "systems/DSA_4-1/assets/Materials/SODA_Icon_Materials_Bar2.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.125,
|
||||||
|
"price": 6
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Gwen-Petryl-Stein",
|
||||||
|
"image": "systems/DSA_4-1/assets/Materials/SODA_Icon_Materials_Gem3.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.75,
|
||||||
|
"price": 10000
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Kerze",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Candle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.05,
|
||||||
|
"price": 1
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Kerzenlaterne, Holz/Pergament",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Lantern.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.5,
|
||||||
|
"price": 50
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Kerzenständer, Zinn",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Candle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.75,
|
||||||
|
"price": 40
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Lampenöl",
|
||||||
|
"image": "systems/DSA_4-1/assets/Condiments/SODA_Icon_Condiments_29.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.25,
|
||||||
|
"price": 10
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Öllampe",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Candle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.25,
|
||||||
|
"price": 10
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Pechfakel",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Torch.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.5,
|
||||||
|
"price": 5
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Sturmlaterne, Öl",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Lantern.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.75,
|
||||||
|
"price": 120
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Buch",
|
"name": "Buch",
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
"image": "systems/DSA_4-1/assets/System_Misc/SODA_Icon_System_Misc_Book.png",
|
||||||
"category": [
|
"category": [
|
||||||
"Gegenstand"
|
"Gegenstand"
|
||||||
],
|
],
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Pergament",
|
||||||
|
"image": "systems/DSA_4-1/assets/Books_Paper/SODA_Icon_Books_Paper_Letter.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.025,
|
||||||
|
"price": 12
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Tagebuch, Papier",
|
||||||
|
"image": "systems/DSA_4-1/assets/Books_Paper/SODA_Icon_Books_Paper_Book1.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.5,
|
||||||
|
"price": 350
|
||||||
|
}
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "Bratspieß, Eisen",
|
"name": "Bratspieß, Eisen",
|
||||||
"image": "systems/DSA_4-1/assets/arsenal/polearm3.png",
|
"image": "systems/DSA_4-1/assets/Meat/SODA_Icons_Meat_2.png",
|
||||||
"category": [
|
"category": [
|
||||||
"Gegenstand"
|
"Gegenstand"
|
||||||
],
|
],
|
||||||
"weight": 3,
|
"weight": 3,
|
||||||
"price": 70
|
"price": 50
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Einfaches Trinkhorn",
|
||||||
|
"image": "systems/DSA_4-1/assets/Materials/SODA_Icon_Materials_Horn2.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.375,
|
||||||
|
"price": 50
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Eisenpfanne (1,5 Spann)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 2,
|
||||||
|
"price": 80
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Eisentopf (12 Maß)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 3,
|
||||||
|
"price": 100
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Essbesteck, Zinn",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.125,
|
||||||
|
"price": 30
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Essbesteck, Eisen",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.125,
|
||||||
|
"price": 30
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Henkelbecher, Zinn",
|
||||||
|
"image": "systems/DSA_4-1/assets/Food/SODA_Icon_Food_CupOfTea.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.5,
|
||||||
|
"price": 40
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Holzbecher, einfach",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.05,
|
||||||
|
"price": 1
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Holzlöffel, einfach",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.075,
|
||||||
|
"price": 1
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Holzteller, einfach",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_MortarAndPestle.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.1,
|
||||||
|
"price": 4
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Karaffe aus Neethaer Glas",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Vase.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.5,
|
||||||
|
"price": 200
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Kessel (20 Maß, emailiert)",
|
||||||
|
"image": "systems/DSA_4-1/assets/Adventure_Items/SODA_Icon_AdventureItems_Vase.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 1.75,
|
||||||
|
"price": 150
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Kupferkessel",
|
||||||
|
"image": "systems/DSA_4-1/assets/Modern/SODA_Icon_Modern_Pot.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 4,
|
||||||
|
"price": 150
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Silberpokal",
|
||||||
|
"image": "systems/DSA_4-1/assets/Materials/SODA_Icon_Materials_Coins.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.25,
|
||||||
|
"price": 100
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "Tonkrug, einfach",
|
||||||
|
"image": "systems/DSA_4-1/assets/Food/SODA_Icon_Food_CupOfTea.png",
|
||||||
|
"category": [
|
||||||
|
"Gegenstand"
|
||||||
|
],
|
||||||
|
"weight": 0.75,
|
||||||
|
"price": 50
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue