2020-08-31 02:24:24 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2020-11-27 19:51:02 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 5 Static Encounter
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
2020-08-21 23:35:49 +00:00
|
|
|
|
public class EncounterStatic5 : EncounterStatic
|
|
|
|
|
{
|
2020-09-07 20:51:13 +00:00
|
|
|
|
public sealed override int Generation => 5;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
public bool Roaming { get; set; }
|
|
|
|
|
|
|
|
|
|
public sealed override bool IsMatchDeferred(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.FatefulEncounter != Fateful)
|
|
|
|
|
return true;
|
|
|
|
|
if (Ability == 4 && pkm.AbilityNumber != 4) // BW/2 Jellicent collision with wild surf slot, resolved by duplicating the encounter with any abil
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-08-31 02:24:24 +00:00
|
|
|
|
|
|
|
|
|
protected sealed override bool IsMatchLocation(PKM pk)
|
|
|
|
|
{
|
|
|
|
|
if (!Roaming)
|
|
|
|
|
return base.IsMatchLocation(pk);
|
|
|
|
|
return Roaming_MetLocation_BW.Contains(pk.Met_Location);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static readonly int[] Roaming_MetLocation_BW =
|
|
|
|
|
{
|
|
|
|
|
25,26,27,28, // Route 12, 13, 14, 15 Night latter half
|
|
|
|
|
15,16,31, // Route 2, 3, 18 Morning
|
|
|
|
|
17,18,29, // Route 4, 5, 16 Daytime
|
|
|
|
|
19,20,21, // Route 6, 7, 8 Evening
|
|
|
|
|
22,23,24, // Route 9, 10, 11 Night former half
|
|
|
|
|
};
|
|
|
|
|
}
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|