mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-18 03:01:00 -05:00
52 lines
2.0 KiB
JavaScript
52 lines
2.0 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('./../../assert');
|
|
const common = require('./../../common');
|
|
|
|
let battle;
|
|
|
|
describe('Magnet Pull', function () {
|
|
afterEach(function () {
|
|
battle.destroy();
|
|
});
|
|
|
|
it('should prevent Steel-type Pokemon from switching out normally', function () {
|
|
battle = common.createBattle();
|
|
battle.join('p1', 'Guest 1', 1, [{species: "Magnezone", ability: 'magnetpull', moves: ['soak', 'charge']}]);
|
|
battle.join('p2', 'Guest 2', 1, [
|
|
{species: "Heatran", ability: 'flashfire', moves: ['curse']},
|
|
{species: "Starmie", ability: 'illuminate', moves: ['reflecttype']},
|
|
]);
|
|
battle.makeChoices('move soak', 'switch 2');
|
|
assert.species(battle.p2.active[0], 'Heatran');
|
|
battle.makeChoices('move soak', 'switch 2');
|
|
assert.species(battle.p2.active[0], 'Starmie');
|
|
battle.makeChoices('move charge', 'move reflecttype'); // Reflect Type makes Starmie part Steel
|
|
battle.makeChoices('move soak', 'switch 2');
|
|
assert.species(battle.p2.active[0], 'Starmie');
|
|
});
|
|
|
|
it('should not prevent Steel-type Pokemon from switching out using moves', function () {
|
|
battle = common.createBattle();
|
|
battle.join('p1', 'Guest 1', 1, [{species: "Magnezone", ability: 'magnetpull', moves: ['toxic']}]);
|
|
battle.join('p2', 'Guest 2', 1, [
|
|
{species: "Heatran", ability: 'flashfire', moves: ['batonpass']},
|
|
{species: "Tentacruel", ability: 'clearbody', moves: ['rapidspin']},
|
|
]);
|
|
battle.makeChoices('move toxic', 'move batonpass');
|
|
battle.makeChoices('move toxic', 'switch 2');
|
|
assert.species(battle.p2.active[0], 'Tentacruel');
|
|
});
|
|
|
|
it('should not prevent Pokemon immune to trapping from switching out', function () {
|
|
battle = common.createBattle();
|
|
battle.join('p1', 'Guest 1', 1, [{species: "Magnezone", ability: 'magnetpull', moves: ['substitute']}]);
|
|
battle.join('p2', 'Guest 2', 1, [
|
|
{species: "Aegislash", ability: 'stancechange', moves: ['swordsdance']},
|
|
{species: "Arcanine", ability: 'flashfire', moves: ['roar']},
|
|
]);
|
|
battle.makeChoices('move substitute', 'switch 2');
|
|
assert.species(battle.p2.active[0], 'Arcanine');
|
|
});
|
|
});
|