Spaces:
Running
Running
File size: 5,766 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 |
'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Lightning Rod', () => {
afterEach(() => {
battle.destroy();
});
it('should grant immunity to Electric-type moves and boost Special Attack by 1 stage', () => {
battle = common.gen(6).createBattle([[
{ species: 'Manectric', ability: 'lightningrod', moves: ['sleeptalk'] },
], [
{ species: 'Jolteon', ability: 'static', moves: ['thunderbolt'] },
]]);
battle.makeChoices('move sleeptalk', 'move thunderbolt');
assert.fullHP(battle.p1.active[0]);
assert.statStage(battle.p1.active[0], 'spa', 1);
});
it('should not boost Special Attack if the user is already immune to Electric-type moves in gen 6-', () => {
battle = common.gen(6).createBattle([[
{ species: 'Rhydon', ability: 'lightningrod', moves: ['sleeptalk'] },
], [
{ species: 'Jolteon', ability: 'static', moves: ['thunderbolt'] },
]]);
battle.makeChoices('move sleeptalk', 'move thunderbolt');
assert.statStage(battle.p1.active[0], 'spa', 0);
});
it('should boost Special Attack if the user is already immune to Electric-type moves in gen 7+', () => {
battle = common.createBattle([[
{ species: 'Rhydon', ability: 'lightningrod', moves: ['sleeptalk'] },
], [
{ species: 'Jolteon', ability: 'static', moves: ['thunderbolt'] },
]]);
battle.makeChoices('move sleeptalk', 'move thunderbolt');
assert.fullHP(battle.p1.active[0]);
assert.statStage(battle.p1.active[0], 'spa', 1);
});
it('should redirect single-target Electric-type attacks to the user if it is a valid target', function () {
this.timeout(3000);
battle = common.gen(5).createBattle({ gameType: 'triples' }, [[
{ species: 'Manectric', ability: 'lightningrod', moves: ['sleeptalk'] },
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
], [
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
]]);
battle.makeChoices('move sleeptalk, move thunderbolt 1, move thunderbolt 1', 'move thunderbolt 3, move thunderbolt 3, move thunderbolt 2');
assert.statStage(battle.p1.active[0], 'spa', 3);
assert.false.fullHP(battle.p1.active[2]);
assert.false.fullHP(battle.p2.active[0]);
});
it('should redirect to the fastest Pokemon with the ability', () => {
battle = common.createBattle({ gameType: 'doubles' }, [[
{ species: 'Manectric', ability: 'lightningrod', moves: ['sleeptalk'] },
{ species: 'Manectric', ability: 'lightningrod', moves: ['sleeptalk'] },
], [
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
]]);
const [fastTric, slowTric] = battle.p1.active;
fastTric.boostBy({ spe: 6 });
battle.makeChoices('move sleeptalk, move sleeptalk', 'move thunderbolt 1, move thunderbolt 2');
assert.statStage(fastTric, 'spa', 2);
assert.statStage(slowTric, 'spa', 0);
});
it('should redirect to the Pokemon having the ability longest', () => {
battle = common.createBattle({ gameType: 'doubles' }, [[
{ species: 'Meloetta', ability: 'serenegrace', moves: ['roleplay'] },
{ species: 'Pikachu', ability: 'lightningrod', moves: ['sleeptalk'] },
], [
{ species: 'Pichu', ability: 'static', moves: ['thunderbolt'] },
{ species: 'Pichu', ability: 'static', moves: ['thunderbolt'] },
]]);
let [rodCopied, rodStarts] = battle.p1.active;
battle.makeChoices('move roleplay -2, move sleeptalk', 'move thunderbolt 1, move thunderbolt 2');
assert.statStage(rodCopied, 'spa', 0);
assert.statStage(rodStarts, 'spa', 2);
battle = common.createBattle({ gameType: 'doubles' }, [[
{ species: 'Togedemaru', moves: ['zingzap'] },
{ species: 'Ditto', ability: 'imposter', moves: ['transform'] },
], [
{ species: 'Manectric', ability: 'lightningrod', moves: ['sleeptalk'] },
{ species: 'Dratini', moves: ['thunderbolt'] },
]]);
rodCopied = battle.p1.active[1]; // Ditto
rodStarts = battle.p2.active[0]; // Manectric
battle.makeChoices('move zingzap 2, move sleeptalk', 'move sleeptalk, move thunderbolt 1');
assert.statStage(rodCopied, 'spa', 0);
assert.statStage(rodStarts, 'spa', 2);
});
it('should not redirect if another Pokemon has used Follow Me', () => {
battle = common.createBattle({ gameType: 'doubles' }, [[
{ species: 'Manectric', ability: 'lightningrod', moves: ['sleeptalk'] },
{ species: 'Manectric', ability: 'static', moves: ['followme'] },
], [
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
{ species: 'Electrode', ability: 'static', moves: ['thunderbolt'] },
]]);
const [rodPokemon, defender] = battle.p1.active;
battle.makeChoices('move sleeptalk, move followme', 'move thunderbolt 2, move thunderbolt 1');
assert.statStage(rodPokemon, 'spa', 0);
assert.false.fullHP(defender);
});
it('should have its Electric-type immunity and its ability to redirect moves suppressed by Mold Breaker', () => {
battle = common.createBattle({ gameType: 'doubles' }, [[
{ species: 'Manectric', ability: 'lightningrod', moves: ['endure'] },
{ species: 'Manaphy', ability: 'hydration', moves: ['tailglow'] },
], [
{ species: 'Haxorus', ability: 'moldbreaker', moves: ['thunderpunch'] },
{ species: 'Zekrom', ability: 'teravolt', moves: ['shockwave'] },
]]);
const [rodPokemon, ally] = battle.p1.active;
battle.makeChoices('move endure, move tailglow', 'move thunderpunch 1, move shockwave 2');
assert.false.fullHP(rodPokemon);
assert.false.fullHP(ally);
});
});
|