This commit is contained in:
andrebastosdias 2026-04-04 15:04:07 +01:00
parent d5c080dd79
commit 7a1dfb449c

View File

@ -40,7 +40,7 @@ describe(`Cheek Pouch`, () => {
battle.makeChoices();
assert.fullHP(battle.p1.active[0]);
});
it(`can activate multiple times if the user eats multiple Berries in a row`, () => {
battle = common.createBattle([[
{ species: 'darkrai', ability: 'cheekpouch', item: 'sitrusberry', moves: ['fling'] },
@ -50,7 +50,7 @@ describe(`Cheek Pouch`, () => {
battle.makeChoices();
assert.equal(
battle.getDebugLog().split('\n').filter(line => line.startsWith('|-heal|p2a: Deoxys') && line.endsWith('[from] ability: Cheek Pouch')).length,
2,
2
);
});
});