diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 47c3ce3f840..15dc357a4c3 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -1103,3 +1103,4 @@ export function getBattlerTag(tagType: BattlerTagType, turnCount: integer, sourc return new BattlerTag(tagType, BattlerTagLapseType.CUSTOM, turnCount, sourceMove, sourceId); } } + \ No newline at end of file diff --git a/src/data/enums/battler-tag-type.ts b/src/data/enums/battler-tag-type.ts index 4fdd8182272..b5cae5b8459 100644 --- a/src/data/enums/battler-tag-type.ts +++ b/src/data/enums/battler-tag-type.ts @@ -47,6 +47,6 @@ export enum BattlerTagType { IGNORE_ACCURACY = "IGNORE_ACCURACY", BYPASS_SLEEP = "BYPASS_SLEEP", IGNORE_FLYING = "IGNORE_FLYING", - GROUNDED = "GROUNDED", + GROUNDED = "GROUNDED", SALT_CURED = "SALT_CURED" } diff --git a/src/data/move.ts b/src/data/move.ts index dac1301b7f4..40a3b9d07a6 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -5708,4 +5708,4 @@ export function initMoves() { new AttackMove(Moves.MALIGNANT_CHAIN, "Malignant Chain", Type.POISON, MoveCategory.SPECIAL, 100, 100, 5, "The user pours toxins into the target by wrapping them in a toxic, corrosive chain. This may also leave the target badly poisoned.", 50, 0, 9) .attr(StatusEffectAttr, StatusEffect.TOXIC) ); -} +} diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 8911e28ac0d..f5be97da76d 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -734,7 +734,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { while (pokemonPrevolutions.hasOwnProperty(starterSpeciesId)) starterSpeciesId = pokemonPrevolutions[starterSpeciesId]; return allAbilities[starterPassiveAbilities[starterSpeciesId]]; - } + } hasPassive(): boolean { return this.passive || this.isBoss();