mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-04-24 23:30:37 -05:00
Raging Bull that is not Normal-type shouldn't be affected by -ate abilities
This commit is contained in:
parent
06b2ec5ff8
commit
9ec4810e82
|
|
@ -199,7 +199,7 @@ function PokemonSet({ set }: { set: Dex.PokemonSet }) {
|
|||
const allowTypeOverride = !noTypeOverride.includes(move);
|
||||
if (set.ability === 'Normalize') {
|
||||
moveType = 'Normal';
|
||||
} else if (allowTypeOverride && Dex.moves.get(move).type === 'Normal') {
|
||||
} else if (allowTypeOverride && moveType === 'Normal') {
|
||||
if (set.ability === 'Aerilate') {
|
||||
moveType = 'Flying';
|
||||
} else if (set.ability === 'Galvanize') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user