Skip to content

Commit

Permalink
i hate toucannon
Browse files Browse the repository at this point in the history
  • Loading branch information
ACakeWearingAHat committed Jan 19, 2024
1 parent dee0957 commit 5048e63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data/random-teams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,8 @@ export class RandomTeams {
case 'Sheer Force':
const braviaryCase = (species.id === 'braviaryhisui' && (role === 'Wallbreaker' || role === 'Bulky Protect'));
const abilitiesCase = (abilities.has('Guts') || abilities.has('Sharpness'));
return (!counter.get('sheerforce') || moves.has('bellydrum') || braviaryCase || abilitiesCase);
const movesCase = (moves.has('bellydrum') || moves.has('flamecharge'));
return (!counter.get('sheerforce') || braviaryCase || abilitiesCase || movesCase);
case 'Slush Rush':
return !teamDetails.snow;
case 'Solar Power':
Expand Down

0 comments on commit 5048e63

Please sign in to comment.