Nature Power move change for Town Metropolis and Plains (#147)

This commit is contained in:
damocleas 2024-04-15 14:23:44 -06:00 committed by GitHub
parent e15b810f6a
commit a0fd462b5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -2828,16 +2828,16 @@ export class NaturePowerAttr extends OverrideMoveEffectAttr {
case TerrainType.NONE:
switch (user.scene.arena.biomeType) {
case Biome.TOWN:
moveId = Moves.TRI_ATTACK;
moveId = Moves.ROUND;
break;
case Biome.METROPOLIS:
moveId = Moves.DARK_PULSE;
moveId = Moves.TRI_ATTACK;
break;
case Biome.SLUM:
moveId = Moves.SLUDGE_BOMB;
break;
case Biome.PLAINS:
moveId = Moves.ROUND;
moveId = Moves.SILVER_WIND;
break;
case Biome.GRASS:
moveId = Moves.GRASS_KNOT;