Spaces:
Running
Running
File size: 4,718 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Heavy Metal', () => {
afterEach(() => {
battle.destroy();
});
it('should double the weight of a Pokemon', () => {
battle = common.createBattle([
[{ species: "Simisear", ability: 'heavymetal', moves: ['nastyplot'] }],
[{ species: "Simisage", ability: 'gluttony', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move nastyplot', 'move grassknot');
assert.equal(basePower, 80);
});
it('should be negated by Mold Breaker', () => {
battle = common.createBattle([
[{ species: "Simisear", ability: 'heavymetal', moves: ['nastyplot'] }],
[{ species: "Simisage", ability: 'moldbreaker', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move nastyplot', 'move grassknot');
assert.equal(basePower, 60);
});
});
describe('Light Metal', () => {
afterEach(() => {
battle.destroy();
});
it('should halve the weight of a Pokemon', () => {
battle = common.createBattle([
[{ species: "Registeel", ability: 'lightmetal', moves: ['curse'] }],
[{ species: "Simisage", ability: 'gluttony', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move curse', 'move grassknot');
assert.equal(basePower, 100);
});
it('should be negated by Mold Breaker', () => {
battle = common.createBattle([
[{ species: "Registeel", ability: 'lightmetal', moves: ['splash'] }],
[{ species: "Simisage", ability: 'moldbreaker', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move splash', 'move grassknot');
assert.equal(basePower, 120);
});
});
describe('Float Stone', () => {
afterEach(() => {
battle.destroy();
});
it('should halve the weight of a Pokemon', () => {
battle = common.createBattle([
[{ species: "Registeel", ability: 'clearbody', item: 'floatstone', moves: ['curse'] }],
[{ species: "Simisage", ability: 'gluttony', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move curse', 'move grassknot');
assert.equal(basePower, 100);
});
});
describe('Autotomize', () => {
afterEach(() => {
battle.destroy();
});
it('should reduce the weight of a Pokemon by 100 kg with each use', () => {
battle = common.createBattle([
[{ species: "Registeel", ability: 'clearbody', moves: ['autotomize'] }],
[{ species: "Simisage", ability: 'gluttony', item: 'laggingtail', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move autotomize', 'move grassknot');
assert.equal(basePower, 100);
battle.makeChoices('move autotomize', 'move grassknot');
assert.equal(basePower, 20);
});
it('should factor into weight before Heavy Metal does', () => {
battle = common.createBattle([
[{ species: "Lairon", ability: 'heavymetal', moves: ['autotomize'] }],
[{ species: "Simisage", ability: 'gluttony', item: 'laggingtail', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move autotomize', 'move grassknot');
assert.equal(basePower, 60);
});
it('should reset after a forme change', () => {
battle = common.createBattle([
[{ species: "Aegislash", ability: 'stancechange', moves: ['autotomize', 'shadowsneak'] }],
[{ species: "Simisage", ability: 'gluttony', item: 'laggingtail', moves: ['grassknot'] }],
]);
let basePower = 0;
battle.onEvent('BasePower', battle.format, (bp, attacker, defender, move) => {
if (move.id === 'grassknot') {
basePower = bp;
}
});
battle.makeChoices('move autotomize', 'move grassknot');
battle.makeChoices('move shadowsneak', 'move grassknot');
assert.equal(basePower, 80);
});
});
|