mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
ce5897ff94
Restrict some setters to protected only
29 lines
843 B
C#
29 lines
843 B
C#
namespace PKHeX.Core
|
|
{
|
|
public class EncounterSlot3 : EncounterSlot, IMagnetStatic, INumberedSlot
|
|
{
|
|
public override int Generation => 3;
|
|
|
|
public int StaticIndex { get; set; }
|
|
public int MagnetPullIndex { get; set; }
|
|
public int StaticCount { get; set; }
|
|
public int MagnetPullCount { get; set; }
|
|
|
|
public int SlotNumber { get; set; }
|
|
|
|
public EncounterSlot3(EncounterArea3 area, int species, int form, int min, int max, int slot, int mpi, int mpc, int sti, int stc) : base(area)
|
|
{
|
|
Species = species;
|
|
Form = form;
|
|
LevelMin = min;
|
|
LevelMax = max;
|
|
SlotNumber = slot;
|
|
|
|
MagnetPullIndex = mpi;
|
|
MagnetPullCount = mpc;
|
|
|
|
StaticIndex = sti;
|
|
StaticCount = stc;
|
|
}
|
|
}
|
|
}
|