mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 15:59:13 +00:00
377ec02c9b
Remove GoPark as a "Type" since it is now baked into the encounter object type
22 lines
626 B
C#
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;
|
|
}
|
|
}
|
|
}
|