Spaces:
Sleeping
Sleeping
File size: 1,317 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Hyper Voice', () => {
afterEach(() => {
battle.destroy();
});
it('should pierce through substitutes', () => {
battle = common.createBattle();
battle.setPlayer('p1', { team: [{ species: "Deoxys-Attack", ability: 'victorystar', item: 'laggingtail', moves: ['splash', 'hypervoice'] }] });
battle.setPlayer('p2', { team: [{ species: "Caterpie", level: 2, ability: 'naturalcure', item: 'focussash', moves: ['substitute', 'rest'] }] });
battle.makeChoices('move splash', 'move substitute');
battle.makeChoices('move hypervoice', 'move rest');
assert.equal(battle.p2.active[0].item, '');
});
});
describe('Hyper Voice [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', 'hypervoice'] }],
[{ species: "Caterpie", level: 2, ability: 'naturalcure', item: 'focussash', moves: ['substitute', 'rest'] }],
]);
battle.makeChoices('move splash', 'move substitute');
battle.makeChoices('move hypervoice', 'move rest');
assert.equal(battle.p2.active[0].item, 'focussash');
});
});
|