pokemon-showdown/test/simulator/moves/disable.js

18 lines
596 B
JavaScript

var assert = require('assert');
var battle;
describe('Disable', function () {
afterEach(function () {
battle.destroy();
});
it('should prevent the use of the target\'s last move', function () {
battle = BattleEngine.Battle.construct();
battle.join('p1', 'Guest 1', 1, [{species: 'Abra', ability: 'synchronize', item: 'laggingtail', moves: ['disable']}]);
battle.join('p2', 'Guest 2', 1, [{species: 'Abra', ability: 'synchronize', moves: ['teleport']}]);
battle.commitDecisions();
battle.commitDecisions();
assert.strictEqual(battle.p2.active[0].lastMove, 'struggle');
});
});