From 51744828a3b0b32903c85d53cc618df2810fdfb4 Mon Sep 17 00:00:00 2001 From: Akuma-Reiki <66755974+Akuma-Reiki@users.noreply.github.com> Date: Mon, 22 Apr 2024 22:44:09 -0500 Subject: [PATCH] Make arena trap count as a lure ability --- src/data/ability.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index bfc608dc7e0..fcb7606157d 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2575,7 +2575,8 @@ export function initAbilities() { .attr(PostSummonWeatherChangeAbAttr, WeatherType.SUNNY) .attr(PostBiomeChangeWeatherChangeAbAttr, WeatherType.SUNNY), new Ability(Abilities.ARENA_TRAP, "Arena Trap", "Prevents opposing Pokémon from fleeing.", 3) - .attr(ArenaTrapAbAttr), + .attr(ArenaTrapAbAttr) + .attr(DoubleBattleChanceAbAttr), new Ability(Abilities.VITAL_SPIRIT, "Vital Spirit", "The Pokémon is full of vitality, and that prevents it from falling asleep.", 3) .attr(StatusEffectImmunityAbAttr, StatusEffect.SLEEP) .attr(BattlerTagImmunityAbAttr, BattlerTagType.DROWSY)