mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-26 10:48:53 -05:00
ESLint has a whole new config format, so I figure it's a good time to make the config system saner. - First, we no longer have separate eslint-no-types configs. Lint performance shouldn't be enough of a problem to justify the relevant maintenance complexity. - Second, our base config should work out-of-the-box now. `npx eslint` will work as expected, without any CLI flags. You should still use `npm run lint` which adds the `--cached` flag for performance. - Third, whatever updates I did fixed style linting, which apparently has been bugged for quite some time, considering all the obvious mixed-tabs-and-spaces issues I found in the upgrade. Also here are some changes to our style rules. In particular: - Curly brackets (for objects etc) now have spaces inside them. Sorry for the huge change. ESLint doesn't support our old style, and most projects use Prettier style, so we might as well match them in this way. See https://github.com/eslint-stylistic/eslint-stylistic/issues/415 - String + number concatenation is no longer allowed. We now consistently use template strings for this.
80 lines
2.8 KiB
JavaScript
80 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('./../../assert');
|
|
const common = require('./../../common');
|
|
|
|
let battle;
|
|
|
|
describe('Lash Out', () => {
|
|
afterEach(() => {
|
|
battle.destroy();
|
|
});
|
|
|
|
it(`should double in base power if the user's stats were lowered this turn`, () => {
|
|
battle = common.createBattle([[
|
|
{ species: 'Wynaut', moves: ['lashout'] },
|
|
], [
|
|
{ species: 'Blissey', moves: ['faketears'] },
|
|
]]);
|
|
battle.makeChoices();
|
|
const blissey = battle.p2.active[0];
|
|
const damage = blissey.maxhp - blissey.hp;
|
|
assert.bounded(damage, [158, 186]); // If it wasn't doubled, range would be 79-94
|
|
});
|
|
|
|
it(`should double in base power if the user's stats were lowered this turn by an ally`, () => {
|
|
battle = common.createBattle({ gameType: 'doubles' }, [[
|
|
{ species: 'Wynaut', moves: ['lashout'] },
|
|
{ species: 'Blissey', moves: ['faketears'] },
|
|
], [
|
|
{ species: 'Tyrogue', moves: ['sleeptalk'] },
|
|
{ species: 'Tyrogue', moves: ['sleeptalk'] },
|
|
]]);
|
|
battle.makeChoices('move lashout -2, move faketears -1', 'auto');
|
|
const blissey = battle.p1.active[1];
|
|
const damage = blissey.maxhp - blissey.hp;
|
|
assert.bounded(damage, [158, 186]); // If it wasn't doubled, range would be 79-94
|
|
});
|
|
|
|
it(`should double in base power if the user's stats were lowered at the start of the match`, () => {
|
|
battle = common.createBattle([[
|
|
{ species: 'Wynaut', ability: 'shellarmor', moves: ['lashout'] },
|
|
], [
|
|
{ species: 'Blissey', ability: 'intimidate', moves: ['skillswap'] },
|
|
]]);
|
|
battle.makeChoices();
|
|
const blissey = battle.p2.active[0];
|
|
const damage = blissey.maxhp - blissey.hp;
|
|
assert.bounded(damage, [104, 123]); // If it wasn't doubled, range would be 52-62
|
|
});
|
|
|
|
it(`should not double in base power if the user's stats were lowered at a switch after a KO`, () => {
|
|
battle = common.createBattle([[
|
|
{ species: 'Wynaut', ability: 'shellarmor', moves: ['lashout'] },
|
|
], [
|
|
{ species: 'Shedinja', moves: ['sleeptalk'] },
|
|
{ species: 'Blissey', ability: 'intimidate', moves: ['skillswap'] },
|
|
]]);
|
|
battle.makeChoices();
|
|
battle.makeChoices();
|
|
battle.makeChoices();
|
|
const blissey = battle.p2.active[0];
|
|
const damage = blissey.maxhp - blissey.hp;
|
|
assert.bounded(damage, [52, 62]); // If it was doubled, range would be 104-123
|
|
});
|
|
|
|
it(`should double in base power even if stat resets are reset by Haze`, () => {
|
|
battle = common.createBattle({ gameType: 'doubles' }, [[
|
|
{ species: 'Wynaut', moves: ['lashout'] },
|
|
{ species: 'Blissey', moves: ['faketears'] },
|
|
], [
|
|
{ species: 'Tyrogue', moves: ['haze'] },
|
|
{ species: 'Tyrogue', moves: ['sleeptalk'] },
|
|
]]);
|
|
battle.makeChoices('move lashout -2, move faketears -1', 'auto');
|
|
const blissey = battle.p1.active[1];
|
|
const damage = blissey.maxhp - blissey.hp;
|
|
assert.bounded(damage, [158, 186]); // If it wasn't doubled, range would be 79-94
|
|
});
|
|
});
|