mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 07:52:17 +02:00
changed to only attacking moves
This commit is contained in:
parent
de3db9988f
commit
53aff71f52
@ -3075,7 +3075,7 @@ export function initAbilities() {
|
||||
.attr(NoTransformAbilityAbAttr)
|
||||
.attr(NoFusionAbilityAbAttr),
|
||||
new Ability(Abilities.QUICK_DRAW, "Quick Draw", "Enables the Pokémon to move first occasionally.", 8)
|
||||
.attr(IncrementMovePriorityAbAttr, (pokemon, move) => Math.random() <= 1/3, 0.5),
|
||||
.attr(IncrementMovePriorityAbAttr, (pokemon, move) => move.category !== MoveCategory.STATUS && Math.random() <= 1/3, 0.5),
|
||||
new Ability(Abilities.UNSEEN_FIST, "Unseen Fist (N)", "If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself.", 8),
|
||||
new Ability(Abilities.CURIOUS_MEDICINE, "Curious Medicine (N)", "When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies.", 8),
|
||||
new Ability(Abilities.TRANSISTOR, "Transistor", "Powers up Electric-type moves.", 8)
|
||||
|
Loading…
Reference in New Issue
Block a user