diff --git a/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs b/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs index a4acab550..2441b073e 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs @@ -91,10 +91,12 @@ namespace PKHeX.Core /// Field Research, requires Lv. 15 and IV=1 Field15 = 20, - /// Field Research, requires Lv. 15 and IV=10 (Mythical) + /// Field Research, requires Lv. 15 and IV=10 (Mythicals) FieldM, - /// Field Research, requires Lv. 15 and IV=10 (Mythical, Poké Ball only) + /// Field Research, requires Lv. 15 and IV=10 (Mythicals, Poké Ball only) FieldP, + /// Field Research, requires Lv. 20 and IV=10 (GBL Mythicals) + Field20, /// Purified, requires Lv. 8 and IV=1 (Premier Ball) Shadow = 30, @@ -110,6 +112,7 @@ namespace PKHeX.Core PogoType.Raid20 => 20, PogoType.Field15 => 15, PogoType.FieldM => 15, + PogoType.Field20 => 20, PogoType.Shadow => 8, PogoType.ShadowPGU => 8, _ => 1, @@ -121,6 +124,7 @@ namespace PKHeX.Core PogoType.Raid20 => 10, PogoType.FieldM => 10, PogoType.FieldP => 10, + PogoType.Field20 => 10, _ => 1, };