PKHeX/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot7GO.cs
Kurt 377ec02c9b Minor clean
Remove GoPark as a "Type" since it is now baked into the encounter object type
2020-11-14 12:55:30 -08:00

22 lines
626 B
C#

namespace PKHeX.Core
{
public sealed class EncounterSlot7GO : EncounterSlot, IPogoSlot
{
public override int Generation => 7;
public PogoType Type { get; }
public Shiny Shiny { get; }
public override string LongName => $"{Name} ({Type})";
public EncounterSlot7GO(EncounterArea7g area, int species, int form, Shiny shiny, PogoType type) : base(area)
{
Species = species;
Form = form;
LevelMin = type.GetMinLevel();
LevelMax = EncountersGO.MAX_LEVEL;
Shiny = shiny;
Type = type;
}
}
}