mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-28 03:02:24 +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)
|
new Ability(Abilities.POISON_PUPPETEER, 9)
|
||||||
.attr(UncopiableAbilityAbAttr)
|
.attr(UncopiableAbilityAbAttr)
|
||||||
.attr(UnswappableAbilityAbAttr)
|
.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)
|
new AttackMove(Moves.AURA_WHEEL, Type.ELECTRIC, MoveCategory.PHYSICAL, 110, 100, 10, 100, 0, 8)
|
||||||
.attr(StatStageChangeAttr, [ Stat.SPD ], 1, true)
|
.attr(StatStageChangeAttr, [ Stat.SPD ], 1, true)
|
||||||
.makesContact(false)
|
.makesContact(false)
|
||||||
.attr(AuraWheelTypeAttr)
|
.attr(AuraWheelTypeAttr),
|
||||||
.condition((user, target, move) => [user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.MORPEKO)), // Missing custom fail message
|
|
||||||
new AttackMove(Moves.BREAKING_SWIPE, Type.DRAGON, MoveCategory.PHYSICAL, 60, 100, 15, 100, 0, 8)
|
new AttackMove(Moves.BREAKING_SWIPE, Type.DRAGON, MoveCategory.PHYSICAL, 60, 100, 15, 100, 0, 8)
|
||||||
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
||||||
.attr(StatStageChangeAttr, [ Stat.ATK ], -1),
|
.attr(StatStageChangeAttr, [ Stat.ATK ], -1),
|
||||||
|
@ -1237,6 +1237,6 @@
|
|||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "Poison Puppeteer",
|
"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": {
|
"auraWheel": {
|
||||||
"name": "Aura Wheel",
|
"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": {
|
"breakingSwipe": {
|
||||||
"name": "Breaking Swipe",
|
"name": "Breaking Swipe",
|
||||||
|
Loading…
Reference in New Issue
Block a user