Skip to content

Commit

Permalink
Tooltips: Support Ogerpon mask boost
Browse files Browse the repository at this point in the history
  • Loading branch information
Karthik99999 committed Sep 15, 2023
1 parent 39bb1c5 commit 364f8c7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/battle-tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2100,6 +2100,12 @@ class BattleTooltips {
value.itemModify(1.2);
return value;
}
if ((speciesName.startsWith('Ogerpon-Wellspring') && itemName === 'Wellspring Mask') ||
(speciesName.startsWith('Ogerpon-Hearthflame') && itemName === 'Hearthflame Mask') ||
(speciesName.startsWith('Ogerpon-Cornerstone') && itemName === 'Cornerstone Mask')) {
value.itemModify(1.2);
return value;
}

// Gems
if (BattleTooltips.noGemMoves.includes(moveName)) return value;
Expand Down

0 comments on commit 364f8c7

Please sign in to comment.