mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-27 18:52:19 +02:00
Remove non-form-change species locks
This commit is contained in:
parent
528e231794
commit
0f439136d3
@ -5872,6 +5872,6 @@ export function initAbilities() {
|
||||
new Ability(Abilities.POISON_PUPPETEER, 9)
|
||||
.attr(UncopiableAbilityAbAttr)
|
||||
.attr(UnswappableAbilityAbAttr)
|
||||
.conditionalAttr(pokemon => pokemon.species.speciesId===Species.PECHARUNT, ConfusionOnStatusEffectAbAttr, StatusEffect.POISON, StatusEffect.TOXIC)
|
||||
.attr(ConfusionOnStatusEffectAbAttr, StatusEffect.POISON, StatusEffect.TOXIC)
|
||||
);
|
||||
}
|
||||
|
@ -9073,8 +9073,7 @@ export function initMoves() {
|
||||
new AttackMove(Moves.AURA_WHEEL, Type.ELECTRIC, MoveCategory.PHYSICAL, 110, 100, 10, 100, 0, 8)
|
||||
.attr(StatStageChangeAttr, [ Stat.SPD ], 1, true)
|
||||
.makesContact(false)
|
||||
.attr(AuraWheelTypeAttr)
|
||||
.condition((user, target, move) => [user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.MORPEKO)), // Missing custom fail message
|
||||
.attr(AuraWheelTypeAttr),
|
||||
new AttackMove(Moves.BREAKING_SWIPE, Type.DRAGON, MoveCategory.PHYSICAL, 60, 100, 15, 100, 0, 8)
|
||||
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
||||
.attr(StatStageChangeAttr, [ Stat.ATK ], -1),
|
||||
|
@ -1237,6 +1237,6 @@
|
||||
},
|
||||
"poisonPuppeteer": {
|
||||
"name": "Poison Puppeteer",
|
||||
"description": "Pokémon poisoned by Pecharunt's moves will also become confused."
|
||||
"description": "Pokémon poisoned by this Pokemon's moves will also become confused."
|
||||
}
|
||||
}
|
@ -3129,7 +3129,7 @@
|
||||
},
|
||||
"auraWheel": {
|
||||
"name": "Aura Wheel",
|
||||
"effect": "Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form."
|
||||
"effect": "The user attacks and raises its Speed with the energy stored in its cheeks. If used by Morpeko, this move's type changes depending on the user's form."
|
||||
},
|
||||
"breakingSwipe": {
|
||||
"name": "Breaking Swipe",
|
||||
|
Loading…
Reference in New Issue
Block a user