Stop more abilities from displaying

This commit is contained in:
Dean 2025-02-22 01:28:22 -08:00
parent f5468f8d58
commit 36a1916fe0

View File

@ -354,7 +354,7 @@ export class ReceivedMoveDamageMultiplierAbAttr extends PreDefendAbAttr {
protected condition: PokemonDefendCondition;
private damageMultiplier: number;
constructor(condition: PokemonDefendCondition, damageMultiplier: number, showAbility: boolean = true) {
constructor(condition: PokemonDefendCondition, damageMultiplier: number, showAbility: boolean = false) {
super(showAbility);
this.condition = condition;
@ -1456,7 +1456,7 @@ export class MovePowerBoostAbAttr extends VariableMovePowerAbAttr {
private condition: PokemonAttackCondition;
private powerMultiplier: number;
constructor(condition: PokemonAttackCondition, powerMultiplier: number, showAbility: boolean = true) {
constructor(condition: PokemonAttackCondition, powerMultiplier: number, showAbility: boolean = false) {
super(showAbility);
this.condition = condition;
this.powerMultiplier = powerMultiplier;