mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
19 lines
520 B
C#
19 lines
520 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Encounter Slot found in <see cref="GameVersion.Gen5"/>.
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterSlot"/>
|
|
public sealed record EncounterSlot5 : EncounterSlot
|
|
{
|
|
public override int Generation => 5;
|
|
|
|
public EncounterSlot5(EncounterArea5 area, int species, int form, int min, int max) : base(area)
|
|
{
|
|
Species = species;
|
|
Form = form;
|
|
LevelMin = min;
|
|
LevelMax = max;
|
|
}
|
|
}
|
|
}
|