From 7f30cc1d375b8666ca07c15b044dc7bebf74424c Mon Sep 17 00:00:00 2001 From: Hyun Ahn Date: Tue, 28 Nov 2023 10:48:09 +0900 Subject: [PATCH] implement_hustle_ability --- src/data/ability.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index 3a6d5a7ac7e..f95bae7fd99 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -1338,7 +1338,9 @@ export function initAbilities() { new Ability(Abilities.GUTS, "Guts (N)", "Boosts Attack if there is a status problem.", 3), new Ability(Abilities.HUGE_POWER, "Huge Power", "Raises the Pokémon's Attack stat.", 3) .attr(PostSummonStatChangeAbAttr, BattleStat.ATK, 2, true), - new Ability(Abilities.HUSTLE, "Hustle (N)", "Boosts the Attack stat, but lowers Accuracy.", 3), + new Ability(Abilities.HUSTLE, "Hustle", "Boosts the Attack stat, but lowers Accuracy.", 3) + .attr(BattleStatMultiplierAbAttr, BattleStat.ATK, 1.5) + .attr(BattleStatMultiplierAbAttr, BattleStat.ACC, 0.8), new Ability(Abilities.HYPER_CUTTER, "Hyper Cutter", "Prevents other Pokémon from lowering Attack stat.", 3) .attr(ProtectStatAbAttr, BattleStat.ATK), new Ability(Abilities.ILLUMINATE, "Illuminate", "Raises the likelihood of an encounter being a double battle.", 3)