mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-09-14 06:49:56 -05:00
Raging Bull that is not Normal-type shouldn't be affected by -ate abilities
This commit is contained in:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user