Skip to content

Commit

Permalink
Allow Soul Dew to work for Mega Latias/Latios
Browse files Browse the repository at this point in the history
Relevant to Hackmons
  • Loading branch information
TheImmortal committed Jun 12, 2014
1 parent f6b21ff commit be5fe33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/items.js
Expand Up @@ -3865,13 +3865,13 @@ exports.BattleItems = {
},
onModifySpAPriority: 1,
onModifySpA: function (spa, pokemon) {
if (pokemon.baseTemplate.species === 'Latios' || pokemon.baseTemplate.species === 'Latias') {
if (pokemon.baseTemplate.num === 380 || pokemon.baseTemplate.num === 381) {
return this.chainModify(1.5);
}
},
onModifySpDPriority: 2,
onModifySpD: function (spd, pokemon) {
if (pokemon.baseTemplate.species === 'Latios' || pokemon.baseTemplate.species === 'Latias') {
if (pokemon.baseTemplate.num === 380 || pokemon.baseTemplate.num === 381) {
return this.chainModify(1.5);
}
},
Expand Down

2 comments on commit be5fe33

@Atbin
Copy link

@Atbin Atbin commented on be5fe33 Jun 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lel they will never see this coming

@kotarou3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TI's probably using it right now after turning it on

Please sign in to comment.