Compare commits
No commits in common. "b459c96961f8070c164704830efd49570e887e68" and "21df7378dcc67103c937b8c5446deb09f0bad0da" have entirely different histories.
b459c96961
...
21df7378dc
|
|
@ -254,7 +254,6 @@ class CharacterSheet extends HandlebarsApplicationMixin(ActorSheetV2) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static #startResting(event, target) {
|
static #startResting(event, target) {
|
||||||
|
|
||||||
const dialog = new RestingDialog(this.document)
|
const dialog = new RestingDialog(this.document)
|
||||||
|
|
||||||
dialog.render(true)
|
dialog.render(true)
|
||||||
|
|
@ -356,7 +355,6 @@ class CharacterSheet extends HandlebarsApplicationMixin(ActorSheetV2) {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|
||||||
await this.document.update(formData.object)
|
await this.document.update(formData.object)
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static async #rollDamage(event, target) {
|
static async #rollDamage(event, target) {
|
||||||
|
|
|
||||||
|
|
@ -38,9 +38,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.rkp {
|
.rkp {
|
||||||
overflow: hidden;
|
|
||||||
padding-bottom: 6px;
|
|
||||||
text-wrap: nowrap;
|
|
||||||
|
|
||||||
.pill {
|
.pill {
|
||||||
@include buttons.pill-button;
|
@include buttons.pill-button;
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<div class="sidebar-element button">
|
<div class="sidebar-element button">
|
||||||
<button type="button" data-action="rest"><i class="fa-solid fa-bed"></i> Rasten</button>
|
<button data-action="rest"><i class="fa-solid fa-bed"></i> Rasten</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#each attacks}}
|
{{#each attacks}}
|
||||||
|
|
@ -130,14 +130,14 @@
|
||||||
|
|
||||||
<div class="sidebuttons">
|
<div class="sidebuttons">
|
||||||
<div>
|
<div>
|
||||||
<button type="button" data-action="openStandaloneADVSF">Vorteile</button>
|
<button data-action="openStandaloneADVSF">Vorteile</button>
|
||||||
<button type="button" data-action="openStandaloneHealth">Gesundheit</button>
|
<button data-action="openStandaloneHealth">Gesundheit</button>
|
||||||
<button type="button" data-action="openStandaloneSkills">Talente</button>
|
<button data-action="openStandaloneSkills">Talente</button>
|
||||||
<button type="button" data-action="openBagpack">Inventar</button>
|
<button data-action="openBagpack">Inventar</button>
|
||||||
{{#if this.hasLiturgies}}
|
{{#if this.hasLiturgies}}
|
||||||
<button type="button" data-action="openStandaloneLiturgies">Liturgien</button>{{/if}}
|
<button data-action="openStandaloneLiturgies">Liturgien</button>{{/if}}
|
||||||
{{#if this.hasSpells}}
|
{{#if this.hasSpells}}
|
||||||
<button type="button" data-action="openStandaloneSpells">Zauber</button>{{/if}}
|
<button data-action="openStandaloneSpells">Zauber</button>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@
|
||||||
|
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button type="button" data-action="newItem"><i class="fa-solid fa-sack" data-tooltip="Neuer Gegenstand"></i></button>
|
<button data-action="newItem"><i class="fa-solid fa-sack" data-tooltip="Neuer Gegenstand"></i></button>
|
||||||
<button type="button" data-action="openItemBrowser"><i class="fa-solid fa-store" data-tooltip="Einkaufen"></i></button>
|
<button data-action="openItemBrowser"><i class="fa-solid fa-store" data-tooltip="Einkaufen"></i></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>{{this.conditions}}</td>
|
<td>{{this.conditions}}</td>
|
||||||
<td>{{#if ../isGM}}
|
<td>{{#if ../isGM}}
|
||||||
<button type="button" data-action="removeEffect" data-actor-id="{{actor}}" data-effect-id="{{id}}"><i
|
<button data-action="removeEffect" data-actor-id="{{actor}}" data-effect-id="{{id}}"><i
|
||||||
class="fa-solid fa-trash"></i></button>{{/if}}</td>
|
class="fa-solid fa-trash"></i></button>{{/if}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,8 @@
|
||||||
<div class="inventory-header">
|
<div class="inventory-header">
|
||||||
<h3>Inventar</h3>
|
<h3>Inventar</h3>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button type="button" data-action="newItem"><i class="fa-solid fa-sack" data-tooltip="Neuer Gegenstand"></i></button>
|
<button data-action="newItem"><i class="fa-solid fa-sack" data-tooltip="Neuer Gegenstand"></i></button>
|
||||||
<button type="button" data-action="openItemBrowser"><i class="fa-solid fa-store" data-tooltip="Einkaufen"></i></button>
|
<button data-action="openItemBrowser"><i class="fa-solid fa-store" data-tooltip="Einkaufen"></i></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="inventory">
|
<div class="inventory">
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
{{#if setEquipped}}
|
{{#if setEquipped}}
|
||||||
<button type="button" disabled="disabled">Ausgerüstet</button>
|
<button disabled="disabled">Ausgerüstet</button>
|
||||||
{{else}}
|
{{else}}
|
||||||
<button type="button" data-action="switchSet" data-id="{{@index}}">Wechseln</button>
|
<button data-action="switchSet" data-id="{{@index}}">Wechseln</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,9 +19,9 @@
|
||||||
src="{{this.icon}}"/></div>
|
src="{{this.icon}}"/></div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{#if (eq ../actor.system.setEquipped @index)}}
|
{{#if (eq ../actor.system.setEquipped @index)}}
|
||||||
<button type="button" disabled="disabled">Ausgerüstet</button>
|
<button disabled="disabled">Ausgerüstet</button>
|
||||||
{{else}}
|
{{else}}
|
||||||
<button type="button" data-operation="switchSet" data-id="{{@index}}">Wechseln</button>
|
<button data-operation="switchSet" data-id="{{@index}}">Wechseln</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -19,9 +19,9 @@
|
||||||
src="{{this.icon}}"/></div>
|
src="{{this.icon}}"/></div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{#if (eq ../actor.system.setEquipped @index)}}
|
{{#if (eq ../actor.system.setEquipped @index)}}
|
||||||
<button type="button" disabled="disabled">Ausgerüstet</button>
|
<button disabled="disabled">Ausgerüstet</button>
|
||||||
{{else}}
|
{{else}}
|
||||||
<button type="button" data-operation="switchSet" data-id="{{@index}}">Wechseln</button>
|
<button data-operation="switchSet" data-id="{{@index}}">Wechseln</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -45,8 +45,9 @@
|
||||||
value="{{this.tp}}"/>
|
value="{{this.tp}}"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<button type="button" class="button-inline remove-attack" data-action="removeAttack" data-index="{{this.index}}">
|
<button class="button-inline remove-attack" data-action="removeAttack" data-index="{{this.index}}">
|
||||||
<i class="fa-solid fa-trash"></i></button>
|
<i
|
||||||
|
class="fa-solid fa-trash"></i></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -72,7 +73,7 @@
|
||||||
<input type="text" id="attack_tp" placeholder="1d6+3"/>
|
<input type="text" id="attack_tp" placeholder="1d6+3"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<button type="button" data-action="addAttack" class="button-inline add-attack"><i class="fa-solid fa-plus"></i>
|
<button data-action="addAttack" class="button-inline add-attack"><i class="fa-solid fa-plus"></i>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<img src="{{this.img}}" style="width: 32px; height: 32px;"/>
|
<img src="{{this.img}}" style="width: 32px; height: 32px;"/>
|
||||||
<span class="name">{{this.name}}</span>
|
<span class="name">{{this.name}}</span>
|
||||||
<span class="price">{{currency this.system.price}}</span>
|
<span class="price">{{currency this.system.price}}</span>
|
||||||
<button type="button" data-action="buy" data-item-id="{{this._id}}"><i class="fa-solid fa-coins"></i></button>
|
<button data-action="buy" data-item-id="{{this._id}}"><i class="fa-solid fa-coins"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
<input type="number" name="system.services.{{@key}}.availability"
|
<input type="number" name="system.services.{{@key}}.availability"
|
||||||
value="{{this.availability}}"/>
|
value="{{this.availability}}"/>
|
||||||
</label>
|
</label>
|
||||||
<button type="button" class="actions" data-action="removeService" data-row-id="{{@key}}"><i
|
<button class="actions" data-action="removeService" data-row-id="{{@key}}"><i
|
||||||
class="fa-solid fa-trash"></i></button>
|
class="fa-solid fa-trash"></i></button>
|
||||||
<div class="description">
|
<div class="description">
|
||||||
<label class="description_label">Beschreibung</label>
|
<label class="description_label">Beschreibung</label>
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
<span class="availability {{#if
|
<span class="availability {{#if
|
||||||
(lte this.availability 0)}}infinite{{/if}}">{{#unless
|
(lte this.availability 0)}}infinite{{/if}}">{{#unless
|
||||||
(lte this.availability 0)}}{{this.availability}}{{/unless}}</span>
|
(lte this.availability 0)}}{{this.availability}}{{/unless}}</span>
|
||||||
<button type="button" class="actions"><i class="fa-solid fa-coins"></i></button>
|
<button class="actions"><i class="fa-solid fa-coins"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
|
||||||
<button type="button" class="actions" data-action="use"><i class="fa-solid fa-bolt"></i> Eigenschaftseinsatz {{#if modResult}}
|
<button class="actions" data-action="use"><i class="fa-solid fa-bolt"></i> Eigenschaftseinsatz {{#if modResult}}
|
||||||
[{{displayModResult}}]{{/if}}</button>
|
[{{displayModResult}}]{{/if}}</button>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
<option value="glückspiel-v-glückspiel">Vergleichend: Glücksspiel</option>
|
<option value="glückspiel-v-glückspiel">Vergleichend: Glücksspiel</option>
|
||||||
<option value="falschspiel-v-sinnenschärfe">Schummeln</option>
|
<option value="falschspiel-v-sinnenschärfe">Schummeln</option>
|
||||||
</select>
|
</select>
|
||||||
<button type="button" data-action="applyPreset"><i class="fa-solid fa-fill"></i></button>
|
<button data-action="applyPreset"><i class="fa-solid fa-fill"></i></button>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -338,7 +338,7 @@
|
||||||
<div class="offenseActorSave"><label><input name="saveOffenseData" type="checkbox">Daten speichern</label>
|
<div class="offenseActorSave"><label><input name="saveOffenseData" type="checkbox">Daten speichern</label>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<button type="button" data-action="doBattle"><i class="fa-solid fa-user-secret"></i> Würfeln</button>
|
<button data-action="doBattle"><i class="fa-solid fa-user-secret"></i> Würfeln</button>
|
||||||
{{#if (or (not defenseTalents) (not defenseAttributes))}}
|
{{#if (or (not defenseTalents) (not defenseAttributes))}}
|
||||||
<div class="defenseActorSave"><label><input name="saveDefenseData" type="checkbox">Daten speichern</label>
|
<div class="defenseActorSave"><label><input name="saveDefenseData" type="checkbox">Daten speichern</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button type="button" {{#if ready}}class="ready" {{else}}data-tooltip="{{notReadyReason}}"{{/if}} type="submit"><i
|
<button {{#if ready}}class="ready" {{else}}data-tooltip="{{notReadyReason}}"{{/if}} type="submit"><i
|
||||||
class="fa-solid fa-swords"></i>Angreifen <span
|
class="fa-solid fa-swords"></i>Angreifen <span
|
||||||
class="value"></span></button>
|
class="value"></span></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
|
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button type="button" {{#if ready}}class="ready" {{else}}data-tooltip="{{notReadyReason}}"{{/if}} type="submit"><i
|
<button {{#if ready}}class="ready" {{else}}data-tooltip="{{notReadyReason}}"{{/if}} type="submit"><i
|
||||||
class="fa-solid fa-shield"></i>Verteidigen <span
|
class="fa-solid fa-shield"></i>Verteidigen <span
|
||||||
class="value"></span></button>
|
class="value"></span></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
<td>{{this.displayRank}}</td>
|
<td>{{this.displayRank}}</td>
|
||||||
<td>{{this.mod}}</td>
|
<td>{{this.mod}}</td>
|
||||||
<td>
|
<td>
|
||||||
<button type="button" data-action="removeMod" data-index="{{@key}}">
|
<button data-action="removeMod" data-index="{{@key}}">
|
||||||
<i class="fa-solid fa-xmark"></i>
|
<i class="fa-solid fa-xmark"></i>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -74,7 +74,7 @@
|
||||||
<option value="castduration">Wirkzeit</option>
|
<option value="castduration">Wirkzeit</option>
|
||||||
<option value="duration">Wirkungsdauer</option>
|
<option value="duration">Wirkungsdauer</option>
|
||||||
</select>
|
</select>
|
||||||
<button type="button" data-action="addMod"><i class="fa fa-plus"></i></button>
|
<button data-action="addMod"><i class="fa fa-plus"></i></button>
|
||||||
<span id="info"></span>
|
<span id="info"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -97,7 +97,7 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
|
||||||
<button type="button" class="actions" data-action="castLiturgy"><i class="fa-solid fa-sparkles"></i> Wirken {{#if modResult}}
|
<button class="actions" data-action="castLiturgy"><i class="fa-solid fa-sparkles"></i> Wirken {{#if modResult}}
|
||||||
[{{displayModResult}}]{{/if}}</button>
|
[{{displayModResult}}]{{/if}}</button>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -71,5 +71,5 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<button type="button" class="actions" data-action="regenerate"><i class="fa-solid fa-bed"></i> Regenerieren</button>
|
<button class="actions" data-action="regenerate"><i class="fa-solid fa-bed"></i> Regenerieren</button>
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -63,7 +63,7 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<button type="button" class="actions" {{#unless noSelectedRepresentation}}data-action="diceRoll"{{else}} disabled="disabled"{{/unless}}><i class="fa-solid fa-dice"></i> Zauber würfeln {{#if
|
<button class="actions" {{#unless noSelectedRepresentation}}data-action="diceRoll"{{else}} disabled="disabled"{{/unless}}><i class="fa-solid fa-dice"></i> Zauber würfeln {{#if
|
||||||
displayModResult}}
|
displayModResult}}
|
||||||
[{{displayModResult}}]{{/if}}</button>
|
[{{displayModResult}}]{{/if}}</button>
|
||||||
|
|
||||||
|
|
@ -137,11 +137,11 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button type="button" {{#if ready}}data-action="cast" {{else}}
|
<button {{#if ready}}data-action="cast" {{else}}
|
||||||
data-tooltip="{{{notReadyReasons}}}" disabled="disabled" {{/if}}><i class="fa-solid fa-sparkles"></i> Zauber
|
data-tooltip="{{{notReadyReasons}}}" disabled="disabled" {{/if}}><i class="fa-solid fa-sparkles"></i> Zauber
|
||||||
wirken
|
wirken
|
||||||
</button>
|
</button>
|
||||||
<button type="button" data-action="cancel">
|
<button data-action="cancel">
|
||||||
Zauber abbrechen
|
Zauber abbrechen
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
|
||||||
<button type="button" class="actions" data-action="use"><i class="fa-solid fa-bolt"></i> Talenteinsatz {{#if modResult}}
|
<button class="actions" data-action="use"><i class="fa-solid fa-bolt"></i> Talenteinsatz {{#if modResult}}
|
||||||
[{{displayModResult}}]{{/if}}</button>
|
[{{displayModResult}}]{{/if}}</button>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<img class="img" src="{{img}}" data-action="editImage" data-edit="img" alt="{{name}}" title="{{name}}"/>
|
<img class="img" src="{{img}}" data-action="editImage" data-edit="img" alt="{{name}}" title="{{name}}"/>
|
||||||
<input type="text" name="name" value="{{name}}"/>
|
<input type="text" name="name" value="{{name}}"/>
|
||||||
|
|
||||||
<button type="button" class="editEffects" data-id="{{this.effectId}}" data-action="openEffect">
|
<button class="editEffects" data-id="{{this.effectId}}" data-action="openEffect">
|
||||||
<i class="fas fa-pencil-alt"></i>
|
<i class="fas fa-pencil-alt"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
{{#each liturgies.rank0}}
|
{{#each liturgies.rank0}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="0" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="0" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="0" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="0" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
{{#each liturgies.rank1}}
|
{{#each liturgies.rank1}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="1" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="1" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="1" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="1" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -74,7 +74,7 @@
|
||||||
{{#each liturgies.rank2}}
|
{{#each liturgies.rank2}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="2" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="2" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="2" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="2" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
{{#each liturgies.rank3}}
|
{{#each liturgies.rank3}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="3" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="3" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="3" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="3" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -100,7 +100,7 @@
|
||||||
{{#each liturgies.rank4}}
|
{{#each liturgies.rank4}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="4" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="4" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="4" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="4" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -113,7 +113,7 @@
|
||||||
{{#each liturgies.rank5}}
|
{{#each liturgies.rank5}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="5" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="5" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="5" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="5" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -126,7 +126,7 @@
|
||||||
{{#each liturgies.rank6}}
|
{{#each liturgies.rank6}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="6" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="6" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="6" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="6" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -139,7 +139,7 @@
|
||||||
{{#each liturgies.rank7}}
|
{{#each liturgies.rank7}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="7" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="7" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="7" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="7" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
@ -152,7 +152,7 @@
|
||||||
{{#each liturgies.rank8}}
|
{{#each liturgies.rank8}}
|
||||||
<div class="liturgy" data-action="openLiturgy" data-rank="8" data-liturgy-id="{{this.id}}">
|
<div class="liturgy" data-action="openLiturgy" data-rank="8" data-liturgy-id="{{this.id}}">
|
||||||
<span>{{this.name}}</span>
|
<span>{{this.name}}</span>
|
||||||
<button type="button" data-action="removeLiturgy" data-rank="8" data-liturgy-id="{{this.id}}"
|
<button data-action="removeLiturgy" data-rank="8" data-liturgy-id="{{this.id}}"
|
||||||
class="mini"><i class="fa fa-xmark"></i></button>
|
class="mini"><i class="fa fa-xmark"></i></button>
|
||||||
</div>
|
</div>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
<input name="grad" type="number" min="0" max="7" step="1"/>
|
<input name="grad" type="number" min="0" max="7" step="1"/>
|
||||||
</label>
|
</label>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button type="button" data-action="addCommonality"><i class="fa-solid fa-plus"></i> Hinzugefügen</button>
|
<button data-action="addCommonality"><i class="fa-solid fa-plus"></i> Hinzugefügen</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
<span class="deity">{{this.name}}</span>
|
<span class="deity">{{this.name}}</span>
|
||||||
<span class="rank">Grad {{grad}}</span>
|
<span class="rank">Grad {{grad}}</span>
|
||||||
{{#if ../editable}}
|
{{#if ../editable}}
|
||||||
<button type="button" class="action" data-action="removeCommonality" data-id="{{@key}}"><i
|
<button class="action" data-action="removeCommonality" data-id="{{@key}}"><i
|
||||||
class="fa-solid fa-xmark"></i></button>
|
class="fa-solid fa-xmark"></i></button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
data-action="activateCooldown"
|
data-action="activateCooldown"
|
||||||
{{/if}}
|
{{/if}}
|
||||||
data-cooldown-id="{{@key}}">{{this.title}}</span>
|
data-cooldown-id="{{@key}}">{{this.title}}</span>
|
||||||
<button type="button" data-tooltip="{{localize "COOLDOWN.cancel" t=this.title}}" class="btn-right"
|
<button data-tooltip="{{localize "COOLDOWN.cancel" t=this.title}}" class="btn-right"
|
||||||
data-action="cancelCooldown" data-cooldown-id="{{@key}}">
|
data-action="cancelCooldown" data-cooldown-id="{{@key}}">
|
||||||
<i class="fa-solid fa-xmark"></i>
|
<i class="fa-solid fa-xmark"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@
|
||||||
<legend class="variant-operator"><select name="variant">
|
<legend class="variant-operator"><select name="variant">
|
||||||
{{selectOptions variantChoices selected=currentSelectedVariantName inverted=true}}
|
{{selectOptions variantChoices selected=currentSelectedVariantName inverted=true}}
|
||||||
</select>
|
</select>
|
||||||
<button type="button" {{#if currentSelectedVariant}}data-action="addVariant" {{else}}disabled="disabled"{{/if}}><i
|
<button {{#if currentSelectedVariant}}data-action="addVariant" {{else}}disabled="disabled"{{/if}}><i
|
||||||
class="fa-solid fa-plus"></i></button>
|
class="fa-solid fa-plus"></i></button>
|
||||||
<button type="button" {{#if currentSelectedVariant}}data-action="removeVariant" {{else}}disabled="disabled"{{/if}}><i
|
<button {{#if currentSelectedVariant}}data-action="removeVariant" {{else}}disabled="disabled"{{/if}}><i
|
||||||
class="fa-solid fa-minus"></i></button>
|
class="fa-solid fa-minus"></i></button>
|
||||||
</legend>
|
</legend>
|
||||||
|
|
||||||
|
|
@ -91,7 +91,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<td>
|
<td>
|
||||||
<button type="button" data-action="removeRequirement" data-index="{{@key}}"><i
|
<button data-action="removeRequirement" data-index="{{@key}}"><i
|
||||||
class="fa-solid fa-trash"></i></button>
|
class="fa-solid fa-trash"></i></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -100,7 +100,7 @@
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="4">
|
<td colspan="4">
|
||||||
<button type="button" {{#if currentSelectedVariant}}data-action="addRequirement"
|
<button {{#if currentSelectedVariant}}data-action="addRequirement"
|
||||||
{{else}}disabled="disabled"{{/if}}><i class="fa-solid fa-plus"></i></button>
|
{{else}}disabled="disabled"{{/if}}><i class="fa-solid fa-plus"></i></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -116,7 +116,7 @@
|
||||||
<td><input type="text" value="{{this.name}}" name="mod.{{@key}}.name"/></td>
|
<td><input type="text" value="{{this.name}}" name="mod.{{@key}}.name"/></td>
|
||||||
<td><input type="number" value="{{this.value}}" name="mod.{{@key}}.value"/></td>
|
<td><input type="number" value="{{this.value}}" name="mod.{{@key}}.value"/></td>
|
||||||
<td>
|
<td>
|
||||||
<button type="button" data-action="removeMod" data-index="{{@key}}"><i class="fa-solid fa-trash"></i>
|
<button data-action="removeMod" data-index="{{@key}}"><i class="fa-solid fa-trash"></i>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<button type="button" {{#if currentSelectedVariant}}data-action="addMod"
|
<button {{#if currentSelectedVariant}}data-action="addMod"
|
||||||
{{else}}disabled="disabled"{{/if}}><i class="fa-solid fa-plus"></i></button>
|
{{else}}disabled="disabled"{{/if}}><i class="fa-solid fa-plus"></i></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -134,7 +134,7 @@
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<button type="button" {{#if currentSelectedVariant}}data-action="saveVariant" {{else}}disabled="disabled"{{/if}}><i
|
<button {{#if currentSelectedVariant}}data-action="saveVariant" {{else}}disabled="disabled"{{/if}}><i
|
||||||
class="fa-solid fa-save"></i> Speichern
|
class="fa-solid fa-save"></i> Speichern
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue