From de036ae9e2ff8c0b944acb07792f8f736f8a9d7b Mon Sep 17 00:00:00 2001 From: fart <24866009+tmagicturtle@users.noreply.github.com> Date: Mon, 6 Apr 2020 17:33:03 -0400 Subject: [PATCH] Additional fix for NatDex validation (#6529) This fix re-introduces Arceus plates. --- data/rulesets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/rulesets.js b/data/rulesets.js index 36f8835f13..4b24f2351f 100644 --- a/data/rulesets.js +++ b/data/rulesets.js @@ -85,7 +85,7 @@ let BattleFormats = { // Items other than Z-Crystals and Pokémon-specific items should be illegal if (!set.item) return; let item = this.dex.getItem(set.item); - if ((item.isNonstandard === 'Unobtainable' || item.isNonstandard === 'Past') && !item.zMove && !item.itemUser) { + if ((item.isNonstandard === 'Unobtainable' || item.isNonstandard === 'Past') && !item.zMove && !item.itemUser && !item.forcedForme) { return [`${set.name}'s item ${item.name} does not exist in Gen ${this.dex.gen}.`]; } },