mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-22 10:23:09 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
62 lines
2.1 KiB
C#
62 lines
2.1 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.Evolves6;
|
|
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;
|
|
}
|
|
}
|