pokemon-showdown/test/sim/abilities/cheekpouch.js
2021-11-05 13:28:45 -05:00

34 lines
889 B
JavaScript

'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe(`Cheek Pouch`, function () {
afterEach(function () {
battle.destroy();
});
it(`should restore 1/3 HP to the user after eating a Berry`, function () {
battle = common.createBattle([[
{species: 'wynaut', item: 'lumberry', ability: 'cheekpouch', moves: ['sleeptalk']},
], [
{species: 'pichu', moves: ['nuzzle']},
]]);
const wynaut = battle.p1.active[0];
battle.makeChoices();
assert.fullHP(wynaut);
});
it(`should not activate if the user was at full HP`, function () {
battle = common.createBattle([[
{species: 'wynaut', item: 'lumberry', ability: 'cheekpouch', moves: ['sleeptalk']},
], [
{species: 'pichu', moves: ['glare']},
]]);
battle.makeChoices();
assert(battle.log.every(line => !line.startsWith('|-heal')));
});
});