mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
cb545781b0
Shiny check was mistakenly forgotten :)
29 lines
831 B
C#
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
|
|
}
|
|
}
|
|
}
|