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

25 lines
671 B
JavaScript

'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Critical hits', function () {
afterEach(function () {
battle.destroy();
});
it(`should not happen on self-hits`, function () {
battle = common.createBattle({forceRandomChance: true}, [[
{species: 'Zubat', moves: ['confuseray']},
], [
{species: 'Chansey', item: 'luckypunch', ability: 'superluck', moves: ['softboiled']},
]]);
battle.makeChoices('move confuseray', 'move softboiled');
assert(battle.log.some(line => line.includes('[from] confusion')));
assert(battle.log.every(line => !line.startsWith('|-crit')));
});
});