mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-17 18:51:43 -05:00
* Standardize Photon Geyser tests * Add Gulp Missile tests * Add Berserk Dragon Darts test * Add Ring Target tests * Add and improve Metronome tests * Add Sparkling Aria tests * Add additional Fling tests * Standardize Mummy tests * Add Rollout submove targeting test * Improve Flower Veil tests * Add Acupressure tests * Improve Sky Drop tests * Add Future Sight tests * Improve Wandering Spirit tests * Improve Rapid Spin tests * Add Rocky Helmet victory test * Improve Focus Punch tests * Add a skipped Stomping Tantrum test
77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('./../../assert');
|
|
const common = require('./../../common');
|
|
|
|
let battle;
|
|
|
|
describe('Fling', function () {
|
|
afterEach(function () {
|
|
battle.destroy();
|
|
});
|
|
|
|
it(`should consume the user's item after being flung`, function () {
|
|
battle = common.createBattle([[
|
|
{species: 'wynaut', item: 'ironball', moves: ['fling']},
|
|
], [
|
|
{species: 'cleffa', moves: ['protect']},
|
|
]]);
|
|
battle.makeChoices();
|
|
assert.equal(battle.p1.active[0].item, '');
|
|
});
|
|
|
|
it(`should apply custom effects when certain items are flung`, function () {
|
|
battle = common.createBattle([[
|
|
{species: 'wynaut', item: 'flameorb', moves: ['fling']},
|
|
], [
|
|
{species: 'cleffa', moves: ['sleeptalk']},
|
|
]]);
|
|
battle.makeChoices();
|
|
assert.equal(battle.p2.active[0].status, 'brn');
|
|
});
|
|
|
|
it(`should not be usuable in Magic Room`, function () {
|
|
battle = common.createBattle([[
|
|
{species: 'wynaut', item: 'ironball', moves: ['fling']},
|
|
], [
|
|
{species: 'cleffa', moves: ['magicroom']},
|
|
]]);
|
|
battle.makeChoices();
|
|
assert.equal(battle.p1.active[0].item, 'ironball');
|
|
});
|
|
|
|
it(`should use its item to be flung in damage calculations`, function () {
|
|
battle = common.createBattle([[
|
|
{species: 'wynaut', item: 'lifeorb', moves: ['fling']},
|
|
], [
|
|
{species: 'cleffa', moves: ['sleeptalk']},
|
|
]]);
|
|
battle.makeChoices();
|
|
|
|
// Fling's damage should be boosted by Life Orb
|
|
const cleffa = battle.p2.active[0];
|
|
const damage = cleffa.maxhp - cleffa.hp;
|
|
assert.bounded(damage, [13, 16]);
|
|
|
|
// Wynaut should not have taken Life Orb recoil
|
|
assert.fullHP(battle.p1.active[0]);
|
|
});
|
|
|
|
it(`should Fling, not consume Leppa Berry when using 1 PP Leppa Berry Fling`, function () {
|
|
battle = common.createBattle([[
|
|
{species: 'wynaut', moves: ['fling', 'sleeptalk']},
|
|
], [
|
|
{species: 'cleffa', item: 'leppaberry', moves: ['spite', 'trick', 'sleeptalk']},
|
|
]]);
|
|
// Waste 15 Fling PP
|
|
for (let i = 0; i < 3; i++) battle.makeChoices();
|
|
battle.makeChoices('move sleeptalk', 'move trick');
|
|
battle.makeChoices('move fling', 'move sleeptalk');
|
|
|
|
const wynaut = battle.p1.active[0];
|
|
const cleffa = battle.p2.active[0];
|
|
assert.equal(wynaut.getMoveData('fling').pp, 0);
|
|
assert.equal(cleffa.getMoveData('spite').pp, 16);
|
|
});
|
|
});
|