mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-17 10:46:53 -05:00
57 lines
2.5 KiB
JavaScript
57 lines
2.5 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('./../../assert');
|
|
const common = require('./../../common');
|
|
|
|
let battle;
|
|
|
|
describe('Embargo', function () {
|
|
afterEach(function () {
|
|
battle.destroy();
|
|
});
|
|
|
|
it('should negate residual healing events', function () {
|
|
battle = common.createBattle();
|
|
battle.setPlayer('p1', {team: [{species: "Lopunny", ability: 'limber', item: 'leftovers', moves: ['bellydrum']}]});
|
|
battle.setPlayer('p2', {team: [{species: "Giratina", ability: 'pressure', moves: ['embargo']}]});
|
|
battle.makeChoices('move bellydrum', 'move embargo');
|
|
assert.equal(battle.p1.active[0].hp, Math.ceil(battle.p1.active[0].maxhp / 2));
|
|
});
|
|
|
|
it('should prevent items from being consumed', function () {
|
|
battle = common.createBattle();
|
|
battle.setPlayer('p1', {team: [{species: "Lopunny", ability: 'limber', item: 'chopleberry', moves: ['bulkup']}]});
|
|
battle.setPlayer('p2', {team: [{species: "Golem", ability: 'noguard', moves: ['embargo', 'lowkick']}]});
|
|
battle.makeChoices('move bulkup', 'move embargo');
|
|
battle.makeChoices('move bulkup', 'move lowkick');
|
|
assert.equal(battle.p1.active[0].item, 'chopleberry');
|
|
});
|
|
|
|
it('should ignore the effects of items that disable moves', function () {
|
|
battle = common.createBattle();
|
|
battle.setPlayer('p1', {team: [{species: "Lopunny", ability: 'limber', item: 'assaultvest', moves: ['protect']}]});
|
|
battle.setPlayer('p2', {team: [{species: "Golem", ability: 'noguard', moves: ['embargo']}]});
|
|
battle.makeChoices('default', 'move embargo');
|
|
assert.equal(battle.p1.active[0].lastMove.id, 'struggle');
|
|
battle.makeChoices('default', 'move embargo');
|
|
assert.equal(battle.p1.active[0].lastMove.id, 'protect');
|
|
});
|
|
|
|
it('should cause Fling to fail', function () {
|
|
battle = common.createBattle();
|
|
battle.setPlayer('p1', {team: [{species: "Lopunny", ability: 'limber', item: 'seaincense', moves: ['fling']}]});
|
|
battle.setPlayer('p2', {team: [{species: "Sableye", ability: 'prankster', moves: ['embargo']}]});
|
|
battle.makeChoices('move fling', 'move embargo');
|
|
assert.equal(battle.p1.active[0].item, 'seaincense');
|
|
});
|
|
|
|
it('should not prevent Pokemon from Mega Evolving', function () {
|
|
battle = common.createBattle();
|
|
battle.setPlayer('p1', {team: [{species: "Lopunny", ability: 'limber', item: 'lopunnite', moves: ['bulkup']}]});
|
|
battle.setPlayer('p2', {team: [{species: "Golem", ability: 'noguard', moves: ['embargo', 'rest']}]});
|
|
battle.makeChoices('move bulkup', 'move embargo');
|
|
battle.makeChoices('move bulkup mega', 'move rest');
|
|
assert.equal(battle.p1.active[0].species.id, 'lopunnymega');
|
|
});
|
|
});
|