pokemon-showdown/test/sim/moves/bugbuzz.js
André Bastos Dias 7d92a7e14e
Some checks failed
Node.js CI / build (18.x) (push) Has been cancelled
Normalize test code formatting (#12029)
2026-05-11 21:13:30 -05:00

41 lines
1.2 KiB
JavaScript

'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Bug Buzz', () => {
afterEach(() => {
battle.destroy();
});
it('should pierce through substitutes', () => {
battle = common.createBattle([[
{ species: "Deoxys-Attack", ability: 'victorystar', item: 'laggingtail', moves: ['splash', 'bugbuzz'] },
], [
{ species: "Caterpie", level: 2, ability: 'naturalcure', item: 'focussash', moves: ['substitute', 'rest'] },
]]);
battle.makeChoices('move splash', 'move substitute');
battle.makeChoices('move bugbuzz', 'move rest');
assert.equal(battle.p2.active[0].item, '');
});
});
describe('Bug Buzz [Gen 5]', () => {
afterEach(() => {
battle.destroy();
});
it('should not pierce through substitutes', () => {
battle = common.gen(5).createBattle([[
{ species: "Deoxys-Attack", ability: 'victorystar', item: 'laggingtail', moves: ['splash', 'bugbuzz'] },
], [
{ species: "Caterpie", level: 2, ability: 'naturalcure', item: 'focussash', moves: ['substitute', 'rest'] },
]]);
battle.makeChoices('move splash', 'move substitute');
battle.makeChoices('move bugbuzz', 'move rest');
assert.equal(battle.p2.active[0].item, 'focussash');
});
});