mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
1e13220e6e
egg,slot,static,link,trade need to be implemented later remove IEncounterable from PL6
66 lines
2.5 KiB
C#
66 lines
2.5 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
public class EncounterSlotPermissions
|
|
{
|
|
public int StaticIndex { get; set; } = -1;
|
|
public int MagnetPullIndex { get; set; } = -1;
|
|
public int StaticCount { get; set; }
|
|
public int MagnetPullCount { get; set; }
|
|
|
|
public bool AllowDexNav { get; set; }
|
|
public bool Pressure { get; set; }
|
|
public bool DexNav { get; set; }
|
|
public bool WhiteFlute { get; set; }
|
|
public bool BlackFlute { get; set; }
|
|
public bool IsNormalLead => !(WhiteFlute || BlackFlute || DexNav);
|
|
public bool IsDexNav => AllowDexNav && DexNav;
|
|
public EncounterSlotPermissions Clone() => (EncounterSlotPermissions)MemberwiseClone();
|
|
}
|
|
/// <summary>
|
|
/// Wild Encounter Slot data
|
|
/// </summary>
|
|
public class EncounterSlot : IEncounterable, IGeneration, ILocation
|
|
{
|
|
public int Species { get; set; }
|
|
public int Form { get; set; }
|
|
public int LevelMin { get; set; }
|
|
public int LevelMax { get; set; }
|
|
public SlotType Type { get; set; } = SlotType.Any;
|
|
public EncounterType TypeEncounter { get; set; } = EncounterType.None;
|
|
public int SlotNumber { get; set; }
|
|
public int Generation { get; set; } = -1;
|
|
internal EncounterSlotPermissions _perm;
|
|
public EncounterSlotPermissions Permissions => _perm ?? (_perm = new EncounterSlotPermissions());
|
|
|
|
internal EncounterArea Area { get; set; }
|
|
public int Location { get => Area.Location; set { } }
|
|
public bool EggEncounter => false;
|
|
public int EggLocation { get => 0; set { } }
|
|
|
|
public EncounterSlot Clone()
|
|
{
|
|
var slot = (EncounterSlot) MemberwiseClone();
|
|
if (_perm != null)
|
|
slot._perm = Permissions.Clone();
|
|
return slot;
|
|
}
|
|
|
|
public bool FixedLevel => LevelMin == LevelMax;
|
|
|
|
public bool IsMatchStatic(int index, int count) => index == Permissions.StaticIndex && count == Permissions.StaticCount;
|
|
public bool IsMatchMagnet(int index, int count) => index == Permissions.MagnetPullIndex && count == Permissions.MagnetPullCount;
|
|
|
|
public string Name
|
|
{
|
|
get
|
|
{
|
|
const string wild = "Wild Encounter";
|
|
if (Type == SlotType.Any)
|
|
return wild;
|
|
return $"{wild} {Type.ToString().Replace("_", " ")}";
|
|
}
|
|
}
|
|
|
|
public PKM ConvertToPKM(ITrainerInfo SAV) => throw new System.NotImplementedException();
|
|
}
|
|
}
|