From b2fd51ddab87b535fca0eedbca5990440616f444 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 20 Nov 2021 09:02:24 -0800 Subject: [PATCH] Revise roamer locations: source from mvpoke Route 220 (00485) now valid now invalid: Route 224 (00411) Route 225 (00412) Route 227 (00414) Route 228 (00416) Route 229 (00420) matt assumed dppt locations were reused, but not entirely :) Closes #3296 --- .../Legality/Encounters/EncounterStatic/EncounterStatic8b.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8b.cs b/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8b.cs index e84f6ad69..bde599787 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8b.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8b.cs @@ -75,11 +75,12 @@ protected override void SetMetData(PKM pk, int level, DateTime today) pk.MetDate = today; } + // defined by mvpoke in encounter data private static readonly int[] Roaming_MetLocation_BDSP = { 197, 201, 354, 355, 356, 357, 358, 359, 361, 362, 364, 365, 367, 373, 375, 377, - 378, 379, 383, 385, 392, 394, 395, 397, 400, 403, 404, 407, 411, 412, 414, 416, - 420, + 378, 379, 383, 385, 392, 394, 395, 397, 400, 403, 404, 407, + 485, }; }