Skip to content

Commit 71dd237

Browse files
committed
swanna adjustement
1 parent a3b7512 commit 71dd237

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/core/abilities/abilities.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15644,7 +15644,7 @@ export class FeatherDanceStrategy extends AbilityStrategy {
1564415644
"PRETTY_FEATHER"
1564515645
] as const
1564615646

15647-
const featherCount = 10
15647+
const featherCount = [8, 10, 12][pokemon.stars - 1] ?? 12
1564815648
const landingPlace =
1564915649
board.getFarthestTargetCoordinateAvailablePlace(pokemon, true) ||
1565015650
board.getSafePlaceAwayFrom(
@@ -15693,20 +15693,20 @@ export class FeatherDanceStrategy extends AbilityStrategy {
1569315693
)
1569415694
}
1569515695
} else if (feather === "MUSCLE_FEATHER") {
15696-
featherTarget.addAttack(sign * 2, featherTarget, 1, crit)
15696+
featherTarget.addAttack(sign * 4, featherTarget, 1, crit)
1569715697
} else if (feather === "RESIST_FEATHER") {
15698-
featherTarget.addDefense(sign * 2, featherTarget, 1, crit)
15698+
featherTarget.addDefense(sign * 4, featherTarget, 1, crit)
1569915699
} else if (feather === "GENIUS_FEATHER") {
1570015700
featherTarget.addAbilityPower(sign * 10, featherTarget, 1, crit)
1570115701
} else if (feather === "CLEVER_FEATHER") {
1570215702
featherTarget.addSpecialDefense(
15703-
sign * 2,
15703+
sign * 4,
1570415704
featherTarget,
1570515705
1,
1570615706
crit
1570715707
)
1570815708
} else if (feather === "SWIFT_FEATHER") {
15709-
featherTarget.addSpeed(sign * 5, featherTarget, 1, crit)
15709+
featherTarget.addSpeed(sign * 10, featherTarget, 1, crit)
1571015710
} else if (feather === "PRETTY_FEATHER") {
1571115711
featherTarget.addLuck(sign * 10, featherTarget, 1, crit)
1571215712
}

app/public/dist/client/locales/en/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2261,7 +2261,7 @@
22612261
"BANEFUL_BUNKER": "Taunt all ADJACENT enemies and PROTECT itself for 2 seconds. During this time, units that melee attack the user take [10,20,30,SP] SPECIAL and are inflicted with POISONNED for 3 seconds.",
22622262
"SHADOW_FORCE": "Teleport into the largest group of enemy Pokémon, dealing [60,SP] SPECIAL to ADJACENT enemies, breaking barriers like PROTECT and Reflect, and transforms into Origin Form.",
22632263
"SHADOW_CLAW": "Slash enemies in front of the user, dealing [20,40,60,SP] SPECIAL and healing HP for 25% of the damage dealt. If only one enemy is hit, deals [60,100,140,SP] SPECIAL.",
2264-
"FEATHER_DANCE": "Flies to the furthest ally, scattering 10 feathers along the path. Each feather grants a random stat buff to allies or inflicts a debuff to enemies: [20,SP] HP, [2,SP] ATK, [2,SP] DEF, [2,SP] SPE_DEF, [5,SP] SPEED, or [10,SP] LUCK."
2264+
"FEATHER_DANCE": "Flies to the furthest ally, scattering 10 feathers along the path. Each feather grants a random stat buff to allies or inflicts a debuff to enemies: [20,SP] HP, [4,SP] ATK, [4,SP] DEF, [4,SP] SPE_DEF, [10,SP] SPEED, or [10,SP] LUCK."
22652265
},
22662266
"effect": {
22672267
"STAMINA": "Stamina",

0 commit comments

Comments
 (0)