pokemon-showdown/test/sim/items/mail.js
André Bastos Dias 7d92a7e14e
Some checks failed
Node.js CI / build (18.x) (push) Has been cancelled
Normalize test code formatting (#12029)
2026-05-11 21:13:30 -05:00

59 lines
2.2 KiB
JavaScript

'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Mail', () => {
afterEach(() => {
battle.destroy();
});
it('should not be stolen by most moves or abilities', () => {
battle = common.createBattle([[
{ species: 'Blissey', ability: 'naturalcure', item: 'mail', moves: ['softboiled'] },
], [
{ species: 'Fennekin', ability: 'magician', moves: ['grassknot'] },
{ species: 'Abra', ability: 'synchronize', moves: ['trick'] },
{ species: 'Lopunny', ability: 'klutz', moves: ['switcheroo'] },
]]);
const holder = battle.p1.active[0];
assert.constant(() => holder.item, () => battle.makeChoices('move softboiled', 'move grassknot'));
battle.makeChoices('move softboiled', 'switch 2');
assert.constant(() => holder.item, () => battle.makeChoices('move softboiled', 'move trick'));
battle.makeChoices('move softboiled', 'switch 3');
assert.constant(() => holder.item, () => battle.makeChoices('move softboiled', 'move switcheroo'));
});
it('should not be removed by Fling', () => {
battle = common.createBattle([[
{ species: 'Pangoro', ability: 'ironfist', moves: ['swordsdance'] },
], [
{ species: 'Abra', ability: 'synchronize', item: 'mail', moves: ['fling'] },
]]);
const holder = battle.p2.active[0];
assert.constant(() => holder.item, () => battle.makeChoices('move swordsdance', 'move fling'));
});
it('should be removed by Knock Off', () => {
battle = common.createBattle([[
{ species: 'Pangoro', ability: 'ironfist', item: 'mail', moves: ['swordsdance'] },
], [
{ species: 'Abra', ability: 'synchronize', moves: ['knockoff'] },
]]);
const holder = battle.p1.active[0];
assert.false.constant(() => holder.item, () => battle.makeChoices('move swordsdance', 'move knockoff'));
});
it('should be stolen by Thief', () => {
battle = common.createBattle([[
{ species: 'Pangoro', ability: 'ironfist', item: 'mail', moves: ['swordsdance'] },
], [
{ species: 'Abra', ability: 'synchronize', moves: ['thief'] },
]]);
const holder = battle.p1.active[0];
assert.false.constant(() => holder.item, () => battle.makeChoices('move swordsdance', 'move thief'));
});
});