Skip to content

Commit 2563094

Browse files
committed
Gen III-IV: Fix Mud/Water Sport with Baton Pass
https://www.smogon.com/forums/posts/10151015/
1 parent 4889600 commit 2563094

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

data/mods/gen4/moves.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1088,14 +1088,13 @@ export const Moves: {[k: string]: ModdedMoveData} = {
10881088
mudsport: {
10891089
inherit: true,
10901090
condition: {
1091-
noCopy: true,
10921091
onStart(pokemon) {
10931092
this.add('-start', pokemon, 'move: Mud Sport');
10941093
},
10951094
onAnyBasePowerPriority: 3,
10961095
onAnyBasePower(basePower, user, target, move) {
10971096
if (move.type === 'Electric') {
1098-
this.debug('mud sport weaken');
1097+
this.debug('Mud Sport weaken');
10991098
return this.chainModify(0.5);
11001099
}
11011100
},
@@ -1752,14 +1751,13 @@ export const Moves: {[k: string]: ModdedMoveData} = {
17521751
watersport: {
17531752
inherit: true,
17541753
condition: {
1755-
noCopy: true,
17561754
onStart(pokemon) {
17571755
this.add('-start', pokemon, 'move: Water Sport');
17581756
},
17591757
onAnyBasePowerPriority: 3,
17601758
onAnyBasePower(basePower, user, target, move) {
17611759
if (move.type === 'Fire') {
1762-
this.debug('water sport weaken');
1760+
this.debug('Water Sport weaken');
17631761
return this.chainModify(0.5);
17641762
}
17651763
},

0 commit comments

Comments
 (0)