PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic5DR.cs
Kurt cb545781b0 Split off es5dr to separate file, require never shiny
Shiny check was mistakenly forgotten :)
2020-10-27 18:03:45 -07:00

29 lines
831 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Generation 5 Dream Radar gift encounters
/// </summary>
public sealed class EncounterStatic5DR : EncounterStatic5
{
public EncounterStatic5DR(int species, int form, int abilityIndex = 4)
{
Species = species;
Form = form;
Ability = abilityIndex;
Location = 30015;
Gift = true;
Ball = 25;
Level = 5; // to 40
Shiny = Shiny.Never;
}
protected override bool IsMatchLevel(PKM pkm, DexLevel evo)
{
// Level from 5->40 depends on the number of badges
var met = pkm.Met_Level;
if (met % 5 != 0)
return false;
return (uint) (met - 5) <= 35; // 5 <= x <= 40
}
}
}