mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
4e1276a954
saves about ~1MB RAM savings (>=179,142 objects)
63 lines
2.4 KiB
C#
63 lines
2.4 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Encounter Slot found in <see cref="GameVersion.ORAS"/>.
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterSlot"/>
|
|
public sealed record EncounterSlot6AO : EncounterSlot
|
|
{
|
|
public override int Generation => 6;
|
|
public bool CanDexNav => Area.Type != SlotType.Rock_Smash;
|
|
public bool IsHorde => Area.Type == SlotType.Horde;
|
|
|
|
public bool Pressure { get; init; }
|
|
public bool DexNav { get; init; }
|
|
public bool WhiteFlute { get; init; }
|
|
public bool BlackFlute { get; init; }
|
|
|
|
public EncounterSlot6AO(EncounterArea6AO area, ushort species, byte form, byte min, byte max) : base(area, species, form, min, max)
|
|
{
|
|
}
|
|
|
|
protected override void SetFormatSpecificData(PKM pk)
|
|
{
|
|
var pk6 = (PK6)pk;
|
|
if (CanDexNav)
|
|
{
|
|
var eggMoves = GetDexNavMoves();
|
|
if (eggMoves.Length > 0)
|
|
pk6.RelearnMove1 = eggMoves[Util.Rand.Next(eggMoves.Length)];
|
|
}
|
|
pk6.SetRandomMemory6();
|
|
pk6.SetRandomEC();
|
|
}
|
|
|
|
public override string GetConditionString(out bool valid)
|
|
{
|
|
valid = true;
|
|
if (WhiteFlute) // Decreased Level Encounters
|
|
return Pressure ? LegalityCheckStrings.LEncConditionWhiteLead : LegalityCheckStrings.LEncConditionWhite;
|
|
if (BlackFlute) // Increased Level Encounters
|
|
return Pressure ? LegalityCheckStrings.LEncConditionBlackLead : LegalityCheckStrings.LEncConditionBlack;
|
|
if (DexNav)
|
|
return LegalityCheckStrings.LEncConditionDexNav;
|
|
|
|
return Pressure ? LegalityCheckStrings.LEncConditionLead : LegalityCheckStrings.LEncCondition;
|
|
}
|
|
|
|
protected override HiddenAbilityPermission IsHiddenAbilitySlot() => CanDexNav || IsHorde ? HiddenAbilityPermission.Possible : HiddenAbilityPermission.Never;
|
|
|
|
private int[] GetDexNavMoves()
|
|
{
|
|
var et = EvolutionTree.GetEvolutionTree(6);
|
|
var sf = et.GetBaseSpeciesForm(Species, Form);
|
|
return MoveEgg.GetEggMoves(6, sf & 0x7FF, sf >> 11, Version);
|
|
}
|
|
|
|
public bool CanBeDexNavMove(int move)
|
|
{
|
|
var baseEgg = GetDexNavMoves();
|
|
return System.Array.IndexOf(baseEgg, move) >= 0;
|
|
}
|
|
}
|
|
}
|