Spaces:
Running
Running
File size: 1,472 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 39 40 41 42 43 44 45 |
'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Imposter', () => {
afterEach(() => {
battle.destroy();
});
it('should Transform into the opposing Pokemon facing it', () => {
battle = common.createBattle([[
{ species: "Ditto", ability: 'imposter', moves: ['sleeptalk'] },
], [
{ species: "Hoopa-Unbound", ability: 'magician', moves: ['rest'] },
]]);
assert.equal(battle.p1.active[0].species, battle.p2.active[0].species);
});
it('should be blocked by substitutes', () => {
battle = common.createBattle([[
{ species: "Escavalier", ability: 'shellarmor', moves: ['substitute'] },
], [
{ species: "Shuckle", ability: 'sturdy', moves: ['uturn'] },
{ species: "Ditto", ability: 'imposter', moves: ['sleeptalk'] },
]]);
battle.makeChoices('move substitute', 'move uturn');
battle.makeChoices('', 'switch ditto');
assert.notEqual(battle.p2.active[0].species, battle.p1.active[0].species);
});
it('should not activate if Skill Swapped', () => {
battle = common.createBattle([[
{ species: "Shuckle", ability: 'imposter', moves: ['sleeptalk', 'skillswap'] },
], [
{ species: "Ditto", ability: 'imposter', moves: ['sleeptalk'] },
{ species: "Greninja", ability: 'torrent', moves: ['sleeptalk'] },
]]);
battle.makeChoices('move skillswap', 'switch greninja');
assert.notEqual(battle.p1.active[0].species, battle.p2.active[0].species);
});
});
|