diff --git a/modules/sheets/pokemonCharacterSheet.js b/modules/sheets/pokemonCharacterSheet.js index e06facd..c9c9eb4 100644 --- a/modules/sheets/pokemonCharacterSheet.js +++ b/modules/sheets/pokemonCharacterSheet.js @@ -81,11 +81,6 @@ export default class pokemonCharacterSheet extends api.HandlebarsApplicationMixi calculateDerivated(context) { context.system.phArmorClass = 3+context.system.stats.defense; context.system.spArmorClass = 3+context.system.stats.specialDefense; - if (context.system.defenseCategory == "Physical") { - context.system.phArmorClass += 2; - } else { - context.system.spArmorClass += 2; - } context.defenses = context.types.map(type => this.calcEffectiveness(context, type)); diff --git a/system.zip b/system.zip index 54ad727..da1a161 100644 Binary files a/system.zip and b/system.zip differ