diff --git a/src/module/sheets/characterSheet.mjs b/src/module/sheets/characterSheet.mjs index cb3ca60d..eb3f3be3 100644 --- a/src/module/sheets/characterSheet.mjs +++ b/src/module/sheets/characterSheet.mjs @@ -209,6 +209,8 @@ export class CharacterSheet extends ActorSheet { using: fernkampf.name, atroll: `1d20 + ${this.object.system.fk + obj.system.at}`, at: `1w20 + ${this.object.system.fk + obj.system.at}`, + iniroll: `(${context.inidice})d6 + ${context.inivalue + fernkampf.system.iniModifier??0}`, + ini: `${context.inidice}w6 + ${context.inivalue + fernkampf.system.iniModifier??0}`, }) }) } @@ -223,6 +225,8 @@ export class CharacterSheet extends ActorSheet { at: `1w20 + ${this.object.system.at + obj.system.at + links.system.attackModifier}`, paroll: `1d20 + ${this.object.system.pa + obj.system.pa + links.system.parryModifier}`, pa: `1w20 + ${this.object.system.pa + obj.system.pa + links.system.parryModifier}`, + iniroll: `(${context.inidice})d6 + ${context.inivalue + links.system.iniModifier??0}`, + ini: `${context.inidice}w6 + ${context.inivalue + links.system.iniModifier??0}`, }) }) } @@ -238,6 +242,8 @@ export class CharacterSheet extends ActorSheet { at: `1w20 + ${this.object.system.at + obj.system.at + rechts.system.attackModifier}`, paroll: `1d20 + ${this.object.system.pa + obj.system.pa + rechts.system.parryModifier}`, pa: `1w20 + ${this.object.system.pa + obj.system.pa + rechts.system.parryModifier}`, + iniroll: `(${context.inidice})d6 + ${context.inivalue + rechts.system.iniModifier??0}`, + ini: `${context.inidice}w6 + ${context.inivalue + rechts.system.iniModifier??0}`, }) }) } diff --git a/src/templates/actor/actor-character-sheet.hbs b/src/templates/actor/actor-character-sheet.hbs index ff554b0a..16a9d356 100644 --- a/src/templates/actor/actor-character-sheet.hbs +++ b/src/templates/actor/actor-character-sheet.hbs @@ -35,11 +35,13 @@