Minor fix for chronicles v1
This commit is contained in:
@@ -958,7 +958,7 @@ body.system-bol img#logo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.journal-page-content {
|
.journal-page-content {
|
||||||
color: rgba(0, 0, 0, 0.95);
|
/*color: rgba(0, 0, 0, 0.95);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.bol.sheet.actor .window-content form .sidebar .profile-img {
|
.bol.sheet.actor .window-content form .sidebar .profile-img {
|
||||||
|
|||||||
@@ -290,6 +290,7 @@
|
|||||||
"BOL.itemProperty.difficulty": "Schwierigkeit",
|
"BOL.itemProperty.difficulty": "Schwierigkeit",
|
||||||
"BOL.itemProperty.natural": "Natürliche Waffe",
|
"BOL.itemProperty.natural": "Natürliche Waffe",
|
||||||
"BOL.itemProperty.onlymodifier": "Nur Modifikator (d.h. Angriffe von Kreaturen)",
|
"BOL.itemProperty.onlymodifier": "Nur Modifikator (d.h. Angriffe von Kreaturen)",
|
||||||
|
"BOL.itemProperty.attackMalusDice": "Angriffsmalus (Würfel)",
|
||||||
|
|
||||||
"BOL.itemStat.quantity": "Anzahl",
|
"BOL.itemStat.quantity": "Anzahl",
|
||||||
"BOL.itemStat.weight": "Gewicht",
|
"BOL.itemStat.weight": "Gewicht",
|
||||||
|
|||||||
@@ -365,6 +365,7 @@
|
|||||||
"BOL.itemProperty.difficulty": "Difficulty",
|
"BOL.itemProperty.difficulty": "Difficulty",
|
||||||
"BOL.itemProperty.natural": "Natural weapon",
|
"BOL.itemProperty.natural": "Natural weapon",
|
||||||
"BOL.itemProperty.onlymodifier": "Modifier only (ie creatures attacks)",
|
"BOL.itemProperty.onlymodifier": "Modifier only (ie creatures attacks)",
|
||||||
|
"BOL.itemProperty.attackMalusDice": "Attack Malus (Dice)",
|
||||||
|
|
||||||
"BOL.itemStat.quantity": "Quantity",
|
"BOL.itemStat.quantity": "Quantity",
|
||||||
"BOL.itemStat.weight": "Weight",
|
"BOL.itemStat.weight": "Weight",
|
||||||
|
|||||||
@@ -359,6 +359,7 @@
|
|||||||
"BOL.itemProperty.difficulty": "Dificultad",
|
"BOL.itemProperty.difficulty": "Dificultad",
|
||||||
"BOL.itemProperty.natural": "Arma natural",
|
"BOL.itemProperty.natural": "Arma natural",
|
||||||
"BOL.itemProperty.onlymodifier": "Sólo modificador (ej criatura)",
|
"BOL.itemProperty.onlymodifier": "Sólo modificador (ej criatura)",
|
||||||
|
"BOL.itemProperty.attackMalusDice": "Dado Desventaja Ataque",
|
||||||
|
|
||||||
"BOL.itemStat.quantity": "Cantidad",
|
"BOL.itemStat.quantity": "Cantidad",
|
||||||
"BOL.itemStat.weight": "Peso",
|
"BOL.itemStat.weight": "Peso",
|
||||||
|
|||||||
@@ -394,6 +394,7 @@
|
|||||||
"BOL.itemProperty.isboarding": "Abordage",
|
"BOL.itemProperty.isboarding": "Abordage",
|
||||||
"BOL.itemProperty.isspur": "Eperonnage",
|
"BOL.itemProperty.isspur": "Eperonnage",
|
||||||
"BOL.itemProperty.isbreakrow": "Briser les rames",
|
"BOL.itemProperty.isbreakrow": "Briser les rames",
|
||||||
|
"BOL.itemProperty.attackMalusDice": "Malus d'attaque (Dés)",
|
||||||
|
|
||||||
"BOL.itemStat.quantity": "Quantité",
|
"BOL.itemStat.quantity": "Quantité",
|
||||||
"BOL.itemStat.weight": "Poids",
|
"BOL.itemStat.weight": "Poids",
|
||||||
|
|||||||
@@ -482,10 +482,15 @@ export class BoLRoll {
|
|||||||
if (rollData.mode == "weapon") {
|
if (rollData.mode == "weapon") {
|
||||||
rollData.weaponModifier = rollData.weapon.system.properties.attackModifiers ?? 0
|
rollData.weaponModifier = rollData.weapon.system.properties.attackModifiers ?? 0
|
||||||
rollData.attackBonusDice = rollData.weapon.system.properties.attackBonusDice
|
rollData.attackBonusDice = rollData.weapon.system.properties.attackBonusDice
|
||||||
|
rollData.attackMalusDice = rollData.weapon.system.properties.attackMalusDice
|
||||||
if (rollData.attackBonusDice) {
|
if (rollData.attackBonusDice) {
|
||||||
rollData.adv = "1B"
|
rollData.adv = "1B"
|
||||||
rollData.bDice = 1
|
rollData.bDice = 1
|
||||||
}
|
}
|
||||||
|
if (rollData.attackMalusDice) {
|
||||||
|
rollData.adv = "1M"
|
||||||
|
rollData.mDice = 1
|
||||||
|
}
|
||||||
if (defender) { // If target is selected
|
if (defender) { // If target is selected
|
||||||
rollData.defence = defender.defenseValue
|
rollData.defence = defender.defenseValue
|
||||||
rollData.armorMalus = defender.armorMalusValue
|
rollData.armorMalus = defender.armorMalusValue
|
||||||
@@ -534,6 +539,7 @@ export class BoLRoll {
|
|||||||
rollData.id = foundry.utils.randomID(16)
|
rollData.id = foundry.utils.randomID(16)
|
||||||
rollData.weaponModifier = 0
|
rollData.weaponModifier = 0
|
||||||
rollData.attackBonusDice = false
|
rollData.attackBonusDice = false
|
||||||
|
rollData.attackMalusDice = false
|
||||||
rollData.armorMalus = 0
|
rollData.armorMalus = 0
|
||||||
// Specific stuff
|
// Specific stuff
|
||||||
this.preProcessWeapon(rollData, defender)
|
this.preProcessWeapon(rollData, defender)
|
||||||
|
|||||||
@@ -3,20 +3,40 @@
|
|||||||
<label>{{localize "BOL.ui.reach"}}</label>
|
<label>{{localize "BOL.ui.reach"}}</label>
|
||||||
<div class="form-fields">
|
<div class="form-fields">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.melee" {{checked
|
<input
|
||||||
item.system.properties.melee}}> {{localize "BOL.itemProperty.melee"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.melee"
|
||||||
|
{{checked item.system.properties.melee}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.melee"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.ranged" {{checked
|
<input
|
||||||
item.system.properties.ranged}}> {{localize "BOL.itemProperty.ranged"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.ranged"
|
||||||
|
{{checked item.system.properties.ranged}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.ranged"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.throwing" {{checked
|
<input
|
||||||
item.system.properties.throwing}}> {{localize "BOL.itemProperty.throwing"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.throwing"
|
||||||
|
{{checked item.system.properties.throwing}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.throwing"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.natural" {{checked
|
<input
|
||||||
item.system.properties.natural}}> {{localize "BOL.itemProperty.natural"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.natural"
|
||||||
|
{{checked item.system.properties.natural}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.natural"}}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -25,41 +45,89 @@
|
|||||||
<label>{{localize "BOL.ui.properties"}}</label>
|
<label>{{localize "BOL.ui.properties"}}</label>
|
||||||
<div class="form-fields">
|
<div class="form-fields">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.2H" {{checked item.system.properties.2H}}>
|
<input
|
||||||
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.2H"
|
||||||
|
{{checked item.system.properties.2H}}
|
||||||
|
/>
|
||||||
{{localize "BOL.itemProperty.2H"}}
|
{{localize "BOL.itemProperty.2H"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.concealable" {{checked
|
<input
|
||||||
item.system.properties.concealable}}> {{localize "BOL.itemProperty.concealable"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.concealable"
|
||||||
|
{{checked item.system.properties.concealable}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.concealable"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.ignoreshield" {{checked
|
<input
|
||||||
item.system.properties.ignoreshield}}> {{localize "BOL.itemProperty.ignoreshield"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.ignoreshield"
|
||||||
|
{{checked item.system.properties.ignoreshield}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.ignoreshield"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.attackBonusDice" {{checked
|
<input
|
||||||
item.system.properties.attackBonusDice}}> {{localize "BOL.itemProperty.attackBonusDice"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.attackBonusDice"
|
||||||
|
{{checked item.system.properties.attackBonusDice}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.attackBonusDice"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.onlymodifier" {{checked
|
<input
|
||||||
item.system.properties.onlymodifier}}> {{localize "BOL.itemProperty.onlymodifier"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.attackMalusDice"
|
||||||
|
{{checked item.system.properties.attackMalusDice}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.attackMalusDice"}}
|
||||||
|
</label>
|
||||||
|
<label class="checkbox">
|
||||||
|
<input
|
||||||
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.onlymodifier"
|
||||||
|
{{checked item.system.properties.onlymodifier}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.onlymodifier"}}
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
|
|
||||||
{{#if item.system.properties.ranged}}
|
{{#if item.system.properties.ranged}}
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.reloadable" {{checked
|
<input
|
||||||
item.system.properties.reloadable}}> {{localize "BOL.itemProperty.reloadable"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.reloadable"
|
||||||
|
{{checked item.system.properties.reloadable}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.reloadable"}}
|
||||||
</label>
|
</label>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if item.system.properties.melee}}
|
{{#if item.system.properties.melee}}
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.bashing" {{checked
|
<input
|
||||||
item.system.properties.bashing}}> {{localize "BOL.itemProperty.bashing"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.bashing"
|
||||||
|
{{checked item.system.properties.bashing}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.bashing"}}
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.throwable" {{checked
|
<input
|
||||||
item.system.properties.throwable}}> {{localize "BOL.itemProperty.throwable"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.throwable"
|
||||||
|
{{checked item.system.properties.throwable}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.throwable"}}
|
||||||
</label>
|
</label>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
@@ -67,86 +135,173 @@
|
|||||||
<hr />
|
<hr />
|
||||||
{{#if (not item.system.properties.onlymodifier)}}
|
{{#if (not item.system.properties.onlymodifier)}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.attackAttribute"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.attackAttribute"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<select class="field-value" name="system.properties.attackAttribute" data-dtype="String">
|
<select
|
||||||
{{selectOptions config.attackAttributes selected=item.system.properties.attackAttribute localize=true}}
|
class="field-value"
|
||||||
|
name="system.properties.attackAttribute"
|
||||||
|
data-dtype="String"
|
||||||
|
>
|
||||||
|
{{selectOptions
|
||||||
|
config.attackAttributes
|
||||||
|
selected=item.system.properties.attackAttribute
|
||||||
|
localize=true
|
||||||
|
}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.attackAptitude"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.attackAptitude"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<select class="field-value" name="system.properties.attackAptitude" data-dtype="String">
|
<select
|
||||||
{{selectOptions config.attackAptitudes selected=item.system.properties.attackAptitude localize=true}}
|
class="field-value"
|
||||||
|
name="system.properties.attackAptitude"
|
||||||
|
data-dtype="String"
|
||||||
|
>
|
||||||
|
{{selectOptions
|
||||||
|
config.attackAptitudes
|
||||||
|
selected=item.system.properties.attackAptitude
|
||||||
|
localize=true
|
||||||
|
}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.attackModifiers"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.attackModifiers"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<input class="field-value" type="text" name="system.properties.attackModifiers"
|
<input
|
||||||
value="{{item.system.properties.attackModifiers}}" data-dtype="Number" />
|
class="field-value"
|
||||||
|
type="text"
|
||||||
|
name="system.properties.attackModifiers"
|
||||||
|
value="{{item.system.properties.attackModifiers}}"
|
||||||
|
data-dtype="Number"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.weaponSize"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.weaponSize"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields">
|
<div class="form-fields">
|
||||||
<select class="field-value" name="system.properties.weaponSize" data-dtype="String">
|
<select
|
||||||
{{selectOptions config.weaponSizes selected=item.system.properties.weaponSize localize=true}}
|
class="field-value"
|
||||||
|
name="system.properties.weaponSize"
|
||||||
|
data-dtype="String"
|
||||||
|
>
|
||||||
|
{{selectOptions
|
||||||
|
config.weaponSizes
|
||||||
|
selected=item.system.properties.weaponSize
|
||||||
|
localize=true
|
||||||
|
}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.damage"}}</label>
|
<label class="property-label">{{localize "BOL.itemProperty.damage"}}</label>
|
||||||
<div class="form-fields">
|
<div class="form-fields">
|
||||||
<select class="field-value" name="system.properties.damage" data-dtype="String">
|
<select
|
||||||
{{selectOptions config.damageValues selected=item.system.properties.damage}}
|
class="field-value"
|
||||||
|
name="system.properties.damage"
|
||||||
|
data-dtype="String"
|
||||||
|
>
|
||||||
|
{{selectOptions
|
||||||
|
config.damageValues
|
||||||
|
selected=item.system.properties.damage
|
||||||
|
}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.damageAttribute"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.damageAttribute"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<select class="field-value" name="system.properties.damageAttribute" data-dtype="String">
|
<select
|
||||||
{{selectOptions config.damageAttributes selected=item.system.properties.damageAttribute localize=true}}
|
class="field-value"
|
||||||
|
name="system.properties.damageAttribute"
|
||||||
|
data-dtype="String"
|
||||||
|
>
|
||||||
|
{{selectOptions
|
||||||
|
config.damageAttributes
|
||||||
|
selected=item.system.properties.damageAttribute
|
||||||
|
localize=true
|
||||||
|
}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.damageModifiers"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.damageModifiers"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<input class="field-value" type="text" name="system.properties.damageModifiers"
|
<input
|
||||||
value="{{item.system.properties.damageModifiers}}" data-dtype="Number" />
|
class="field-value"
|
||||||
|
type="text"
|
||||||
|
name="system.properties.damageModifiers"
|
||||||
|
value="{{item.system.properties.damageModifiers}}"
|
||||||
|
data-dtype="Number"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.damageMultiplier"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.damageMultiplier"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<select class="field-value" name="system.properties.damageMultiplier" data-dtype="String">
|
<select
|
||||||
{{selectOptions config.damageMultiplier selected=item.system.properties.damageMultiplier}}
|
class="field-value"
|
||||||
|
name="system.properties.damageMultiplier"
|
||||||
|
data-dtype="String"
|
||||||
|
>
|
||||||
|
{{selectOptions
|
||||||
|
config.damageMultiplier
|
||||||
|
selected=item.system.properties.damageMultiplier
|
||||||
|
}}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.damageSpecial"}}</label>
|
<label class="property-label">{{localize
|
||||||
|
"BOL.itemProperty.damageSpecial"
|
||||||
|
}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<input class="field-value" type="checkbox" name="system.properties.damageReroll1" {{checked
|
<input
|
||||||
item.system.properties.damageReroll1}}> {{localize "BOL.itemProperty.damageReroll1"}}
|
class="field-value"
|
||||||
|
type="checkbox"
|
||||||
|
name="system.properties.damageReroll1"
|
||||||
|
{{checked item.system.properties.damageReroll1}}
|
||||||
|
/>
|
||||||
|
{{localize "BOL.itemProperty.damageReroll1"}}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#if (or item.system.properties.throwing (or item.system.properties.ranged item.system.properties.throwable))}}
|
{{#if
|
||||||
|
(or
|
||||||
|
item.system.properties.throwing
|
||||||
|
(or item.system.properties.ranged item.system.properties.throwable)
|
||||||
|
)
|
||||||
|
}}
|
||||||
<hr />
|
<hr />
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.range"}}</label>
|
<label class="property-label">{{localize "BOL.itemProperty.range"}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<input class="field-value" type="text" name="system.properties.range" value="{{item.system.properties.range}}"
|
<input
|
||||||
data-dtype="Number" />
|
class="field-value"
|
||||||
|
type="text"
|
||||||
|
name="system.properties.range"
|
||||||
|
value="{{item.system.properties.range}}"
|
||||||
|
data-dtype="Number"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
@@ -155,8 +310,13 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="property-label">{{localize "BOL.itemProperty.reload"}}</label>
|
<label class="property-label">{{localize "BOL.itemProperty.reload"}}</label>
|
||||||
<div class="form-fields center">
|
<div class="form-fields center">
|
||||||
<input class="field-value" type="text" name="system.properties.reload" value="{{item.system.properties.reload}}"
|
<input
|
||||||
data-dtype="Number" />
|
class="field-value"
|
||||||
|
type="text"
|
||||||
|
name="system.properties.reload"
|
||||||
|
value="{{item.system.properties.reload}}"
|
||||||
|
data-dtype="Number"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
Reference in New Issue
Block a user