Spaces:
Running
Running
; | |
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); | |
}); | |
}); | |