From ea229b4c7087d24cb9830f11f9e15f34bab8a911 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Mon, 9 May 2016 21:09:38 -0700 Subject: [PATCH] Fix level 2 blissey with Cleffa egg move Other other splitbreed with 3 species in chain are Roselia (evo by Item) and Marill (evo @ 18); this hard check is hacky but works. --- Legality/Core.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Legality/Core.cs b/Legality/Core.cs index 99dbc33e6..974d91a32 100644 --- a/Legality/Core.cs +++ b/Legality/Core.cs @@ -383,6 +383,8 @@ private static int getBaseSpecies(PK6 pk6, int skipOption = 0) { if (pk6.Species == 292) return 290; + if (pk6.Species == 242 && pk6.CurrentLevel < 3) // Never Cleffa + return 113; DexLevel[] evos = Evolves[pk6.Species].Evos; switch (skipOption) {