We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DexMoves
DataMove
1 parent a86d043 commit 06da2beCopy full SHA for 06da2be
sim/dex-moves.ts
@@ -655,6 +655,18 @@ export class DexMoves {
655
if (move.gen > this.dex.gen) {
656
(move as any).isNonstandard = 'Future';
657
}
658
+ if (this.dex.parentMod) {
659
+ // If move is exactly identical to parentMod's move, reuse parentMod's copy
660
+ const parentMod = this.dex.mod(this.dex.parentMod);
661
+ if (moveData === parentMod.data.Moves[id]) {
662
+ const parentMove = parentMod.moves.getByID(id);
663
+ if (move.isNonstandard === parentMove.isNonstandard &&
664
+ move.desc === parentMove.desc &&
665
+ move.shortDesc === parentMove.shortDesc) {
666
+ move = parentMove;
667
+ }
668
669
670
} else {
671
move = new DataMove({
672
name: id, exists: false,
0 commit comments