From df34f2b5c45ea599e8cf3a2fd224173442931cee Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 9 Oct 2021 17:12:54 -0700 Subject: [PATCH] Disallow downleveled watchtower self hosted shinies --- .../Legality/Encounters/EncounterStatic/EncounterStatic8NC.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8NC.cs b/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8NC.cs index 3fe01f8ea..ce76b7b6b 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8NC.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8NC.cs @@ -27,6 +27,8 @@ protected override bool IsMatchLevel(PKM pkm, DexLevel evo) return false; if (lvl is < 20 or > 55) return false; + if (pkm.Met_Location == Watchtower && pkm.IsShiny) + return false; // host cannot downlevel and be shiny return lvl % 5 == 0; } }