mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-18 08:38:10 -05:00
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('./../../assert');
|
|
const common = require('./../../common');
|
|
|
|
let battle;
|
|
|
|
describe('Contrary', function () {
|
|
afterEach(function () {
|
|
battle.destroy();
|
|
});
|
|
|
|
it('should invert relative stat changes', function () {
|
|
this.timeout(0);
|
|
battle = common.createBattle([[
|
|
{species: "Spinda", ability: 'contrary', moves: ['superpower']},
|
|
], [
|
|
{species: "Dragonite", ability: 'multiscale', moves: ['dragondance']},
|
|
]]);
|
|
const contraryMon = battle.p1.active[0];
|
|
battle.makeChoices('move superpower', 'move dragondance');
|
|
assert.statStage(contraryMon, 'atk', 1);
|
|
assert.statStage(contraryMon, 'def', 1);
|
|
});
|
|
|
|
it('should not invert absolute stat changes', function () {
|
|
battle = common.createBattle([[
|
|
{species: "Serperior", ability: 'contrary', moves: ['leechseed']},
|
|
], [
|
|
{species: "Growlithe", ability: 'intimidate', moves: ['topsyturvy']},
|
|
]]);
|
|
const contraryMon = battle.p1.active[0];
|
|
battle.makeChoices('move leechseed', 'move topsyturvy');
|
|
assert.statStage(contraryMon, 'atk', -1);
|
|
});
|
|
|
|
it('should invert Belly Drum\'s maximizing Attack', function () {
|
|
battle = common.createBattle([[
|
|
{species: "Spinda", ability: 'contrary', moves: ['bellydrum']},
|
|
], [
|
|
{species: "Dragonite", ability: 'multiscale', moves: ['dragondance']},
|
|
]]);
|
|
const contraryMon = battle.p1.active[0];
|
|
battle.makeChoices('move bellydrum', 'move dragondance');
|
|
assert.statStage(contraryMon, 'atk', -6);
|
|
});
|
|
|
|
it('should be suppressed by Mold Breaker', function () {
|
|
battle = common.createBattle([[
|
|
{species: "Spinda", ability: 'contrary', moves: ['tackle']},
|
|
], [
|
|
{species: "Dragonite", ability: 'moldbreaker', moves: ['growl']},
|
|
]]);
|
|
const contraryMon = battle.p1.active[0];
|
|
battle.makeChoices('move tackle', 'move growl');
|
|
assert.statStage(contraryMon, 'atk', -1);
|
|
});
|
|
});
|