|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const assert = require('./../../assert'); |
| 4 | +const common = require('./../../common'); |
| 5 | + |
| 6 | +let battle; |
| 7 | + |
| 8 | +describe('Download', () => { |
| 9 | + afterEach(() => battle.destroy()); |
| 10 | + |
| 11 | + it('should boost based on which defensive stat is higher', () => { |
| 12 | + battle = common.createBattle([[ |
| 13 | + {species: 'porygon', moves: ['sleeptalk'], ability: 'download'}, |
| 14 | + {species: 'furret', moves: ['sleeptalk']}, |
| 15 | + ], [ |
| 16 | + {species: 'stonjourner', moves: ['sleeptalk']}, |
| 17 | + {species: 'chansey', moves: ['sleeptalk']}, |
| 18 | + ]]); |
| 19 | + assert.statStage(battle.p1.active[0], 'spa', 1); |
| 20 | + battle.makeChoices('switch 2', 'switch 2'); |
| 21 | + battle.makeChoices('switch 2', 'auto'); |
| 22 | + assert.statStage(battle.p1.active[0], 'atk', 1); |
| 23 | + }); |
| 24 | + |
| 25 | + it('should boost Special Attack if both stats are tied', () => { |
| 26 | + battle = common.createBattle([[ |
| 27 | + {species: 'porygon', moves: ['sleeptalk'], ability: 'download'}, |
| 28 | + ], [ |
| 29 | + {species: 'mew', moves: ['sleeptalk']}, |
| 30 | + ]]); |
| 31 | + assert.statStage(battle.p1.active[0], 'spa', 1); |
| 32 | + assert.statStage(battle.p1.active[0], 'atk', 0); |
| 33 | + }); |
| 34 | + |
| 35 | + it('should boost based on the total of both foes in a Double Battle', () => { |
| 36 | + battle = common.createBattle({gameType: 'doubles'}, [[ |
| 37 | + {species: 'porygon', moves: ['sleeptalk'], ability: 'download'}, |
| 38 | + {species: 'blissey', moves: ['sleeptalk']}, |
| 39 | + ], [ |
| 40 | + {species: 'blissey', level: 1, moves: ['sleeptalk']}, |
| 41 | + {species: 'stonjourner', moves: ['sleeptalk']}, |
| 42 | + ]]); |
| 43 | + assert.statStage(battle.p1.active[0], 'spa', 1); |
| 44 | + assert.statStage(battle.p1.active[0], 'atk', 0); |
| 45 | + }); |
| 46 | + |
| 47 | + it('should trigger even if the foe is behind a Substitute', () => { |
| 48 | + battle = common.createBattle([[ |
| 49 | + {species: 'furret', moves: ['sleeptalk']}, |
| 50 | + {species: 'porygon', ability: 'download', moves: ['sleeptalk']}, |
| 51 | + ], [ |
| 52 | + {species: 'blissey', moves: ['substitute']}, |
| 53 | + ]]); |
| 54 | + battle.makeChoices(); |
| 55 | + battle.makeChoices('switch 2', 'auto'); |
| 56 | + assert.statStage(battle.p1.active[0], 'atk', 1); |
| 57 | + }); |
| 58 | + |
| 59 | + describe('Gen 4', () => { |
| 60 | + it('should not trigger if the foe is behind a Substitute', () => { |
| 61 | + battle = common.gen(4).createBattle([[ |
| 62 | + {species: 'furret', moves: ['sleeptalk']}, |
| 63 | + {species: 'porygon', ability: 'download', moves: ['sleeptalk']}, |
| 64 | + ], [ |
| 65 | + {species: 'ampharos', moves: ['substitute']}, |
| 66 | + ]]); |
| 67 | + battle.makeChoices(); |
| 68 | + battle.makeChoices('switch 2', 'auto'); |
| 69 | + assert.statStage(battle.p1.active[0], 'atk', 0); |
| 70 | + assert.statStage(battle.p1.active[0], 'spa', 0); |
| 71 | + }); |
| 72 | + |
| 73 | + it('in Double Battles, should only account for foes not behind a Substitute', () => { |
| 74 | + battle = common.gen(4).createBattle({gameType: 'doubles'}, [[ |
| 75 | + {species: 'furret', moves: ['sleeptalk']}, |
| 76 | + {species: 'ampharos', moves: ['sleeptalk']}, |
| 77 | + {species: 'porygon', ability: 'download', moves: ['sleeptalk']}, |
| 78 | + ], [ |
| 79 | + {species: 'blissey', moves: ['substitute']}, |
| 80 | + {species: 'furret', moves: ['sleeptalk', 'substitute']}, |
| 81 | + ]]); |
| 82 | + battle.makeChoices(); |
| 83 | + battle.makeChoices('move 1, switch 3', 'auto'); |
| 84 | + assert.statStage(battle.p1.active[1], 'atk', 0); |
| 85 | + assert.statStage(battle.p1.active[1], 'spa', 1); |
| 86 | + battle.makeChoices('move 1, switch 3', 'move 1, move 2'); |
| 87 | + battle.makeChoices('move 1, switch 3', 'auto'); |
| 88 | + assert.statStage(battle.p1.active[1], 'atk', 0); |
| 89 | + assert.statStage(battle.p1.active[1], 'spa', 0); |
| 90 | + }); |
| 91 | + }); |
| 92 | +}); |
0 commit comments