Skip to content

Commit fcee18d

Browse files
committed
Implement proper Koraidon/Miraidon move/ability modifiers
1 parent 421eef2 commit fcee18d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Diff for: data/abilities.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1617,7 +1617,7 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
16171617
onModifySpA(atk, attacker, defender, move) {
16181618
if (this.field.isTerrain('electricterrain') && attacker.isGrounded()) {
16191619
this.debug('Hadron Engine boost');
1620-
return this.chainModify([5325, 4096]);
1620+
return this.chainModify([5461, 4096]);
16211621
}
16221622
},
16231623
name: "Hadron Engine",
@@ -2778,7 +2778,7 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
27782778
onModifyAtk(atk, pokemon) {
27792779
if (pokemon.effectiveWeather() === 'sunnyday') {
27802780
this.debug('Orichalcum boost');
2781-
return this.chainModify([5325, 4096]);
2781+
return this.chainModify([5461, 4096]);
27822782
}
27832783
},
27842784
name: "Orichalcum Pulse",

Diff for: data/moves.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2622,7 +2622,7 @@ export const Moves: {[moveid: string]: MoveData} = {
26222622
if (target.runEffectiveness(move) > 0) {
26232623
// Placeholder
26242624
this.debug(`collision course super effective buff`);
2625-
return this.chainModify(1.5);
2625+
return this.chainModify([5461, 4096]);
26262626
}
26272627
},
26282628
secondary: null,
@@ -4648,7 +4648,7 @@ export const Moves: {[moveid: string]: MoveData} = {
46484648
if (target.runEffectiveness(move) > 0) {
46494649
// Placeholder
46504650
this.debug(`electro drift super effective buff`);
4651-
return this.chainModify(1.5);
4651+
return this.chainModify([5461, 4096]);
46524652
}
46534653
},
46544654
secondary: null,

Diff for: data/text/abilities.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ export const AbilitiesText: {[k: string]: AbilityText} = {
598598
},
599599
hadronengine: {
600600
name: "Hadron Engine",
601-
shortDesc: "On switch-in, summons Electric Terrain. Sp. Atk is boosted by 30% in Electric Terrain.",
601+
shortDesc: "On switch-in, summons Electric Terrain. Sp. Atk is boosted by 33.33% in Electric Terrain.",
602602

603603
start: " [POKEMON] turned the ground into Electric Terrain, energizing its futuristic engine!",
604604
activate: " [POKEMON] used the Electric Terrain to energize its futuristic engine!",
@@ -1089,7 +1089,7 @@ export const AbilitiesText: {[k: string]: AbilityText} = {
10891089
},
10901090
orichalcumpulse: {
10911091
name: "Orichalcum Pulse",
1092-
shortDesc: "On switch-in, summons Sunny Day. Attack is boosted by 30% in Sunny Day.",
1092+
shortDesc: "On switch-in, summons Sunny Day. Attack is boosted by 33.33% in Sunny Day.",
10931093

10941094
start: " [POKEMON] turned the sunlight harsh, sending its ancient pulse into a frenzy!",
10951095
activate: " [POKEMON] basked in the sunlight, sending its ancient pulse into a frenzy!",

Diff for: data/text/moves.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ export const MovesText: {[k: string]: MoveText} = {
934934
},
935935
collisioncourse: {
936936
name: "Collision Course",
937-
shortDesc: "Deals 1.3x damage if the move is super effective.",
937+
shortDesc: "Deals 1.3333x damage if the move is super effective.",
938938
},
939939
combattorque: {
940940
name: "Combat Torque",
@@ -1658,7 +1658,7 @@ export const MovesText: {[k: string]: MoveText} = {
16581658
},
16591659
electrodrift: {
16601660
name: "Electro Drift",
1661-
shortDesc: "Deals 1.3x damage if the move is super effective.",
1661+
shortDesc: "Deals 1.3333x damage if the move is super effective.",
16621662
},
16631663
electroweb: {
16641664
name: "Electroweb",

0 commit comments

Comments
 (0)