displays ZfW based on selected Mods and its initial Spell Value
parent
957584206d
commit
5f85631679
|
|
@ -47,11 +47,13 @@ export class SpellDialog extends HandlebarsApplicationMixin(ApplicationV2) {
|
||||||
_mutators = {}
|
_mutators = {}
|
||||||
_variants = {}
|
_variants = {}
|
||||||
_costModel = {}
|
_costModel = {}
|
||||||
|
displayModResult = 0
|
||||||
|
|
||||||
constructor(actor, spellId) {
|
constructor(actor, spellId) {
|
||||||
super()
|
super()
|
||||||
this._actor = actor
|
this._actor = actor
|
||||||
this._spell = this._actor.itemTypes["Spell"].find(p => p._id === spellId)
|
this._spell = this._actor.itemTypes["Spell"].find(p => p._id === spellId)
|
||||||
|
this.displayModResult = Number(this._spell.system.zfw)
|
||||||
this._circumstance = 0
|
this._circumstance = 0
|
||||||
this._mods = []
|
this._mods = []
|
||||||
this._mutators = {}
|
this._mutators = {}
|
||||||
|
|
@ -107,6 +109,18 @@ export class SpellDialog extends HandlebarsApplicationMixin(ApplicationV2) {
|
||||||
this._mutators = mutators
|
this._mutators = mutators
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.displayModResult = Number(this._spell.system.zfw)
|
||||||
|
|
||||||
|
this._activeVariants = Object.entries(this._variants)
|
||||||
|
.filter(([key, truthiness]) => truthiness)
|
||||||
|
.map(([key, truthiness]) => this._spell.system.varianten.find(v => v.name === key))
|
||||||
|
this._activeVariants.forEach(variant => {
|
||||||
|
|
||||||
|
if (variant.mod) {
|
||||||
|
this.displayModResult += Number(variant.mod)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
this.render({parts: ["form"]})
|
this.render({parts: ["form"]})
|
||||||
}
|
}
|
||||||
|
|
@ -148,7 +162,7 @@ export class SpellDialog extends HandlebarsApplicationMixin(ApplicationV2) {
|
||||||
|
|
||||||
if (options.window) {
|
if (options.window) {
|
||||||
if (this._spell) {
|
if (this._spell) {
|
||||||
options.window.title = this._spell.name
|
options.window.title = `${this._spell.name} [${this._spell.system.zfw}]`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -166,6 +180,8 @@ export class SpellDialog extends HandlebarsApplicationMixin(ApplicationV2) {
|
||||||
context.text = this._spell.system.wirkung
|
context.text = this._spell.system.wirkung
|
||||||
context.dice = []
|
context.dice = []
|
||||||
context.colorfulDice = game.settings.get('DSA_4-1', 'optional_colorfuldice')
|
context.colorfulDice = game.settings.get('DSA_4-1', 'optional_colorfuldice')
|
||||||
|
context.modResult = this.displayModResult
|
||||||
|
context.displayModResult = (context.modResult > 0 ? "+" : "") + this.displayModResult
|
||||||
|
|
||||||
this._spell.system.probe.map(p => {
|
this._spell.system.probe.map(p => {
|
||||||
if (p === "*") {
|
if (p === "*") {
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#if this.variants}}
|
{{#if this.variants}}
|
||||||
<fieldset>
|
<fieldset class="scroll-y">
|
||||||
<legend>Variante</legend>
|
<legend>Variante</legend>
|
||||||
<div class="variantList scroll-y">
|
<div class="variantList">
|
||||||
{{#each this.variants}}
|
{{#each this.variants}}
|
||||||
<div class="variant">
|
<div class="variant">
|
||||||
<div class="selection">
|
<div class="selection">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue