Make Items with mods equippable (#11)
Changes: + Items that can influence you stats are equippable + only equipped items influence your stats + Armor now influences your stats + move mods into a partial for easier changes
This commit is contained in:
parent
8095785fc2
commit
28595e7dd0
|
|
@ -197,6 +197,8 @@
|
||||||
"midgard5.defensive-weapon": "Verteidigungswaffe",
|
"midgard5.defensive-weapon": "Verteidigungswaffe",
|
||||||
"midgard5.no-skill": "Keine Fertigkeit",
|
"midgard5.no-skill": "Keine Fertigkeit",
|
||||||
"midgard5.magic": "magisch",
|
"midgard5.magic": "magisch",
|
||||||
|
"midgard5.equipped": "Ausgerüstet",
|
||||||
|
"midgard5.active": "Aktiv",
|
||||||
"midgard5.rangedWeapon": "Schusswaffe",
|
"midgard5.rangedWeapon": "Schusswaffe",
|
||||||
"midgard5.assignItemToCharacter": "Füge Gegenstand einem Charakter hinzu, um Fähigkeit auwählen zu können",
|
"midgard5.assignItemToCharacter": "Füge Gegenstand einem Charakter hinzu, um Fähigkeit auwählen zu können",
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,7 @@
|
||||||
"resistanceBody": 0,
|
"resistanceBody": 0,
|
||||||
"spellBonus": 0
|
"spellBonus": 0
|
||||||
},
|
},
|
||||||
"equippable": false,
|
"equipped": false,
|
||||||
"equipped": true,
|
|
||||||
"attributeMod": {
|
"attributeMod": {
|
||||||
"st": 0,
|
"st": 0,
|
||||||
"gs": 0,
|
"gs": 0,
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ const preloadTemplates = async (): Promise<Handlebars.TemplateDelegate<any>[]> =
|
||||||
"sheets/character/spells.hbs",
|
"sheets/character/spells.hbs",
|
||||||
"sheets/character/kampfkuenste.hbs",
|
"sheets/character/kampfkuenste.hbs",
|
||||||
"sheets/character/effects.hbs",
|
"sheets/character/effects.hbs",
|
||||||
|
"sheets/partial/mod.hbs",
|
||||||
"sheets/item/rolls.hbs",
|
"sheets/item/rolls.hbs",
|
||||||
"chat/roll-m5.hbs",
|
"chat/roll-m5.hbs",
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ export class M5Character extends Actor {
|
||||||
const aggregate = new M5ModAggregate(data, ret);
|
const aggregate = new M5ModAggregate(data, ret);
|
||||||
|
|
||||||
context.items
|
context.items
|
||||||
?.filter((item) => item.type === "item" || item.type === "effect")
|
?.filter((item) => (item.type === "item" || item.type === "effect" || item.type === "armor") && item.system.equipped)
|
||||||
.forEach((item) => {
|
.forEach((item) => {
|
||||||
const mods = item.system.mods;
|
const mods = item.system.mods;
|
||||||
//console.log("Actor item mods", mods)
|
//console.log("Actor item mods", mods)
|
||||||
|
|
@ -166,6 +166,7 @@ export class M5Character extends Actor {
|
||||||
label: label,
|
label: label,
|
||||||
magic: item.system.magic,
|
magic: item.system.magic,
|
||||||
calc: item.system.calc,
|
calc: item.system.calc,
|
||||||
|
equipped: item.system?.equipped,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -185,6 +186,7 @@ export class M5Character extends Actor {
|
||||||
label: label,
|
label: label,
|
||||||
magic: item.system.magic,
|
magic: item.system.magic,
|
||||||
calc: item.system.calc,
|
calc: item.system.calc,
|
||||||
|
equipped: item.system?.equipped,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -267,6 +269,7 @@ export class M5Character extends Actor {
|
||||||
label: label,
|
label: label,
|
||||||
magic: item.system.magic,
|
magic: item.system.magic,
|
||||||
calc: item.system.calc,
|
calc: item.system.calc,
|
||||||
|
equipped: item.system?.equipped,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -105,6 +105,11 @@ export class M5Item extends Item {
|
||||||
calc.fw += skillData.fw;
|
calc.fw += skillData.fw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (itemType === "armor") {
|
||||||
|
itemData.mods[0] = { type: "stat", id: "defenseBonus", operation: "add", value: itemData.stats.defenseBonus };
|
||||||
|
itemData.mods[1] = { type: "stat", id: "attackBonus", operation: "add", value: itemData.stats.attackBonus };
|
||||||
|
itemData.mods[2] = { type: "stat", id: "movement", operation: "add", value: itemData.stats.movementBonus };
|
||||||
|
itemData.mods[3] = { type: "attribute", id: "gw", operation: "add100", value: itemData.attributeMod.gw };
|
||||||
} else if (itemType === "spell") {
|
} else if (itemType === "spell") {
|
||||||
calc.fw = 0;
|
calc.fw = 0;
|
||||||
if (actor) {
|
if (actor) {
|
||||||
|
|
@ -134,8 +139,10 @@ export class M5Item extends Item {
|
||||||
itemData.rolls.formulas[0].label = skill.name;
|
itemData.rolls.formulas[0].label = skill.name;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (itemType === "item" || itemType === "effect") {
|
}
|
||||||
|
if (itemData?.mods) {
|
||||||
calc.mods = {};
|
calc.mods = {};
|
||||||
|
|
||||||
Object.keys(itemData?.mods).forEach((key) => {
|
Object.keys(itemData?.mods).forEach((key) => {
|
||||||
const mod = itemData.mods[key];
|
const mod = itemData.mods[key];
|
||||||
const modCalc = {};
|
const modCalc = {};
|
||||||
|
|
@ -243,6 +250,7 @@ export class M5Item extends Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
const roll = new M5Roll(rollData, this.actor, item.name);
|
const roll = new M5Roll(rollData, this.actor, item.name);
|
||||||
|
console.log(roll);
|
||||||
return roll.toMessage();
|
return roll.toMessage();
|
||||||
} else {
|
} else {
|
||||||
ChatMessage.create({
|
ChatMessage.create({
|
||||||
|
|
|
||||||
|
|
@ -350,7 +350,8 @@
|
||||||
"formulas": {},
|
"formulas": {},
|
||||||
"output": ""
|
"output": ""
|
||||||
},
|
},
|
||||||
"calc": {}
|
"calc": {},
|
||||||
|
"mods": {}
|
||||||
},
|
},
|
||||||
"spell": {
|
"spell": {
|
||||||
"templates": ["itemDescription", "spellSelection"],
|
"templates": ["itemDescription", "spellSelection"],
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,12 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#each data.calc.gear.effects as |item itemId|}}
|
{{#each data.calc.gear.effects as |item itemId|}}
|
||||||
<tr data-item="{{itemId}}">
|
<tr data-item="{{itemId}}">
|
||||||
<td class="padding edit-item">{{item.label}}</td>
|
<td class="padding">
|
||||||
|
<span class="edit-item">{{item.label}}</span>
|
||||||
|
{{#if item.equipped}}
|
||||||
|
<span class="spell-process">{{localize "midgard5.active"}}</span>
|
||||||
|
{{/if}}
|
||||||
|
</td>
|
||||||
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
|
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,12 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#each data.calc.gear.armor as |item itemId|}}
|
{{#each data.calc.gear.armor as |item itemId|}}
|
||||||
<tr data-item="{{itemId}}">
|
<tr data-item="{{itemId}}">
|
||||||
<td class="padding edit-item">{{item.label}}</td>
|
<td class="padding">
|
||||||
|
<span class="edit-item">{{item.label}}</span>
|
||||||
|
{{#if item.equipped}}
|
||||||
|
<span class="spell-process">{{localize "midgard5.equipped"}}</span>
|
||||||
|
{{/if}}
|
||||||
|
</td>
|
||||||
<td class="fixed-value">{{actorItemValue ../actor._id itemId "lpProtection"}}</td>
|
<td class="fixed-value">{{actorItemValue ../actor._id itemId "lpProtection"}}</td>
|
||||||
<td class="fixed-value">{{actorItemValue ../actor._id itemId "apProtection"}}</td>
|
<td class="fixed-value">{{actorItemValue ../actor._id itemId "apProtection"}}</td>
|
||||||
<td class="fixed-value">{{actorItemValue ../actor._id itemId "stats.attackBonus"}}</td>
|
<td class="fixed-value">{{actorItemValue ../actor._id itemId "stats.attackBonus"}}</td>
|
||||||
|
|
@ -107,7 +112,12 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#each data.calc.gear.items as |item itemId|}}
|
{{#each data.calc.gear.items as |item itemId|}}
|
||||||
<tr data-item="{{itemId}}">
|
<tr data-item="{{itemId}}">
|
||||||
<td class="padding edit-item">{{item.label}}</td>
|
<td class="padding">
|
||||||
|
<span class="edit-item">{{item.label}}</span>
|
||||||
|
{{#if item.equipped}}
|
||||||
|
<span class="spell-process">{{localize "midgard5.equipped"}}</span>
|
||||||
|
{{/if}}
|
||||||
|
</td>
|
||||||
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
|
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,21 @@
|
||||||
<div class="sheet-content">
|
<div class="sheet-content">
|
||||||
<table>
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td colspan="4">
|
||||||
|
<div class="flexrow">
|
||||||
|
<span>
|
||||||
|
<input id="data.equipped" type="checkbox" name="data.equipped" {{checked data.equipped}} />
|
||||||
|
<label for="data.equipped">{{localize "midgard5.equipped"}}</label>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
<input id="data.magic" type="checkbox" name="data.magic" {{checked data.magic}} />
|
||||||
|
<label for="data.magic">{{localize "midgard5.magic"}}</label>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{localize "midgard5.actor-lp"}}</td>
|
<td>{{localize "midgard5.actor-lp"}}</td>
|
||||||
<td><input name="data.lpProtection" type="text" value="{{data.lpProtection}}" data-dtype="Number" /></td>
|
<td><input name="data.lpProtection" type="text" value="{{data.lpProtection}}" data-dtype="Number" /></td>
|
||||||
|
|
@ -32,6 +47,9 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{{> "systems/midgard5/templates/sheets/partial/mod.hbs" mods=data.mods calc=data.calc}}
|
||||||
|
|
||||||
|
|
||||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
@ -6,10 +6,20 @@
|
||||||
<div class="sheet-content">
|
<div class="sheet-content">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td colspan=4>
|
||||||
|
<div class="flexrow">
|
||||||
|
<span>
|
||||||
|
<input id="data.equipped" type="checkbox" name="data.equipped" {{checked data.equipped}}>
|
||||||
|
<label for="data.equipped">{{localize "midgard5.active"}}</label>
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
<input id="data.magic" type="checkbox" name="data.magic" {{checked data.magic}}>
|
<input id="data.magic" type="checkbox" name="data.magic" {{checked data.magic}}>
|
||||||
<label for="data.magic">{{localize "midgard5.magic"}}</label>
|
<label for="data.magic">{{localize "midgard5.magic"}}</label>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="flexrow">
|
<div class="flexrow">
|
||||||
<span>{{localize "midgard5.item-value"}}</span>
|
<span>{{localize "midgard5.item-value"}}</span>
|
||||||
|
|
@ -19,59 +29,8 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<table>
|
{{> "systems/midgard5/templates/sheets/partial/mod.hbs" mods=data.mods calc=data.calc}}
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Mods</th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th><button class="add-mod">+</button></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each data.mods as |mod modId|}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<select class="select-mod-type" name="data.mods.{{modId}}.type" data-type="String">
|
|
||||||
{{#select mod.type}}
|
|
||||||
<option value="attribute">{{localize "midgard5.attribute"}}</option>
|
|
||||||
<option value="stat">{{localize "midgard5.bonus"}}</option>
|
|
||||||
<option value="skill">{{localize "midgard5.skill"}}</option>
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<select class="select-id" name="data.mods.{{modId}}.id" data-type="String">
|
|
||||||
{{#select mod.id}}
|
|
||||||
<option value="">{{localize "midgard5.no-skill"}}</option>
|
|
||||||
{{#each (lookup ../data.calc.mods modId) as |name key|}}
|
|
||||||
<option value="{{key}}">{{name}}</option>
|
|
||||||
{{/each}}
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<select class="select-mod-operation" name="data.mods.{{modId}}.operation" data-type="String">
|
|
||||||
{{#select mod.operation}}
|
|
||||||
{{#if (eq mod.type "attribute")}}
|
|
||||||
<option value="add100">{{localize "midgard5.mod-operation-add100"}}</option>
|
|
||||||
{{/if}}
|
|
||||||
<option value="add">{{localize "midgard5.mod-operation-add"}}</option>
|
|
||||||
<option value="set">{{localize "midgard5.mod-operation-set"}}</option>
|
|
||||||
<option value="fixed">{{localize "midgard5.mod-operation-fixed"}}</option>
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<input name="data.mods.{{modId}}.value" type="text" value="{{mod.value}}" data-dtype="Number" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,20 @@
|
||||||
<div class="sheet-content">
|
<div class="sheet-content">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td colspan=4>
|
||||||
|
<div class="flexrow">
|
||||||
|
<span>
|
||||||
|
<input id="data.equipped" type="checkbox" name="data.equipped" {{checked data.equipped}}>
|
||||||
|
<label for="data.equipped">{{localize "midgard5.equipped"}}</label>
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
<input id="data.magic" type="checkbox" name="data.magic" {{checked data.magic}}>
|
<input id="data.magic" type="checkbox" name="data.magic" {{checked data.magic}}>
|
||||||
<label for="data.magic">{{localize "midgard5.magic"}}</label>
|
<label for="data.magic">{{localize "midgard5.magic"}}</label>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="flexrow">
|
<div class="flexrow">
|
||||||
<span>{{localize "midgard5.item-value"}}</span>
|
<span>{{localize "midgard5.item-value"}}</span>
|
||||||
|
|
@ -19,59 +29,8 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<table>
|
{{> "systems/midgard5/templates/sheets/partial/mod.hbs" mods=data.mods calc=data.calc}}
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Mods</th>
|
|
||||||
<th></th>
|
|
||||||
<th></th>
|
|
||||||
<th><button class="add-mod">+</button></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each data.mods as |mod modId|}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<select class="select-mod-type" name="data.mods.{{modId}}.type" data-type="String">
|
|
||||||
{{#select mod.type}}
|
|
||||||
<option value="attribute">{{localize "midgard5.attribute"}}</option>
|
|
||||||
<option value="stat">{{localize "midgard5.bonus"}}</option>
|
|
||||||
<option value="skill">{{localize "midgard5.skill"}}</option>
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<select class="select-id" name="data.mods.{{modId}}.id" data-type="String">
|
|
||||||
{{#select mod.id}}
|
|
||||||
<option value="">{{localize "midgard5.no-skill"}}</option>
|
|
||||||
{{#each (lookup ../data.calc.mods modId) as |name key|}}
|
|
||||||
<option value="{{key}}">{{name}}</option>
|
|
||||||
{{/each}}
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<select class="select-mod-operation" name="data.mods.{{modId}}.operation" data-type="String">
|
|
||||||
{{#select mod.operation}}
|
|
||||||
{{#if (eq mod.type "attribute")}}
|
|
||||||
<option value="add100">{{localize "midgard5.mod-operation-add100"}}</option>
|
|
||||||
{{/if}}
|
|
||||||
<option value="add">{{localize "midgard5.mod-operation-add"}}</option>
|
|
||||||
<option value="set">{{localize "midgard5.mod-operation-set"}}</option>
|
|
||||||
<option value="fixed">{{localize "midgard5.mod-operation-fixed"}}</option>
|
|
||||||
{{/select}}
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<input name="data.mods.{{modId}}.value" type="text" value="{{mod.value}}" data-dtype="Number" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -85,9 +85,9 @@
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/select}}
|
{{/select}}
|
||||||
</select>
|
</select>
|
||||||
{{!-- {{else}}
|
{{else}}
|
||||||
<span>{{localize "midgard5.assignItemToCharacter"}}</span>
|
<span>{{localize "midgard5.assignItemToCharacter"}}</span>
|
||||||
{{/if}} --}}
|
{{/if}}
|
||||||
</td>
|
</td>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,53 @@
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Mods</th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
<th><button class="add-mod">+</button></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{#each mods as |mod modId|}}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<select class="select-mod-type" name="data.mods.{{modId}}.type" data-type="String">
|
||||||
|
{{#select mod.type}}
|
||||||
|
<option value="attribute">{{localize "midgard5.attribute"}}</option>
|
||||||
|
<option value="stat">{{localize "midgard5.bonus"}}</option>
|
||||||
|
<option value="skill">{{localize "midgard5.skill"}}</option>
|
||||||
|
{{/select}}
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
<select class="select-id" name="data.mods.{{modId}}.id" data-type="String">
|
||||||
|
{{#select mod.id}}
|
||||||
|
<option value="">{{localize "midgard5.no-skill"}}</option>
|
||||||
|
{{#each (lookup ../calc.mods modId) as |name key|}}
|
||||||
|
<option value="{{key}}">{{name}}</option>
|
||||||
|
{{/each}}
|
||||||
|
{{/select}}
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
<select class="select-mod-operation" name="data.mods.{{modId}}.operation" data-type="String">
|
||||||
|
{{#select mod.operation}}
|
||||||
|
{{#if (eq mod.type "attribute")}}
|
||||||
|
<option value="add100">{{localize "midgard5.mod-operation-add100"}}</option>
|
||||||
|
{{/if}}
|
||||||
|
<option value="add">{{localize "midgard5.mod-operation-add"}}</option>
|
||||||
|
<option value="set">{{localize "midgard5.mod-operation-set"}}</option>
|
||||||
|
<option value="fixed">{{localize "midgard5.mod-operation-fixed"}}</option>
|
||||||
|
{{/select}}
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
<input name="data.mods.{{modId}}.value" type="text" value="{{mod.value}}" data-dtype="Number" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
Loading…
Reference in New Issue