Skip to content

Commit 44ea408

Browse files
authored
Gen IV: Make Download ignore foes behind substitutes (#10310)
1 parent 717ef95 commit 44ea408

File tree

2 files changed

+109
-0
lines changed

2 files changed

+109
-0
lines changed

data/mods/gen4/abilities.ts

+17
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,23 @@ export const Abilities: {[k: string]: ModdedAbilityData} = {
7272
}
7373
},
7474
},
75+
download: {
76+
inherit: true,
77+
onStart(pokemon) {
78+
let totaldef = 0;
79+
let totalspd = 0;
80+
for (const target of pokemon.foes()) {
81+
if (target.volatiles.substitute) continue;
82+
totaldef += target.getStat('def', false, true);
83+
totalspd += target.getStat('spd', false, true);
84+
}
85+
if (totaldef && totaldef >= totalspd) {
86+
this.boost({spa: 1});
87+
} else if (totalspd) {
88+
this.boost({atk: 1});
89+
}
90+
},
91+
},
7592
effectspore: {
7693
inherit: true,
7794
onDamagingHit(damage, target, source, move) {

test/sim/abilities/download.js

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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

Comments
 (0)