pokemon-showdown/test/sim/misc/confusion.js
2023-01-14 19:08:44 -06:00

25 lines
674 B
JavaScript

'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Confusion', function () {
afterEach(function () {
battle.destroy();
});
it(`should not be affected by modifiers like Huge Power or Life Orb`, function () {
battle = common.createBattle({forceRandomChance: true}, [[
{species: 'Deoxys-Attack', ability: 'hugepower', item: 'lifeorb', moves: ['sleeptalk']},
], [
{species: 'Sableye', ability: 'prankster', moves: ['confuseray']},
]]);
battle.makeChoices();
const deoxys = battle.p1.active[0];
const damage = deoxys.maxhp - deoxys.hp;
assert.bounded(damage, [150, 177]);
});
});