Pokemon_server / test /sim /misc /confusion.js
Jofthomas's picture
Jofthomas HF staff
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
662 Bytes
'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Confusion', () => {
afterEach(() => {
battle.destroy();
});
it(`should not be affected by modifiers like Huge Power or Life Orb`, () => {
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]);
});
});