2020-08-21 23:35:49 +00:00
|
|
|
namespace PKHeX.Core
|
|
|
|
{
|
2020-11-27 19:51:02 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Encounter Slot found in <see cref="GameVersion.ORAS"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <inheritdoc cref="EncounterSlot"/>
|
2020-12-24 04:40:59 +00:00
|
|
|
public sealed record EncounterSlot6AO : EncounterSlot
|
2020-08-21 23:35:49 +00:00
|
|
|
{
|
|
|
|
public override int Generation => 6;
|
2020-11-27 19:51:02 +00:00
|
|
|
public bool CanDexNav => Area.Type != SlotType.Rock_Smash;
|
|
|
|
|
2020-12-24 04:40:59 +00:00
|
|
|
public bool Pressure { get; init; }
|
|
|
|
public bool DexNav { get; init; }
|
|
|
|
public bool WhiteFlute { get; init; }
|
|
|
|
public bool BlackFlute { get; init; }
|
2020-08-21 23:35:49 +00:00
|
|
|
|
2020-08-30 18:08:21 +00:00
|
|
|
public EncounterSlot6AO(EncounterArea6AO area, int species, int form, int min, int max) : base(area)
|
2020-08-30 17:23:22 +00:00
|
|
|
{
|
|
|
|
Species = species;
|
|
|
|
Form = form;
|
|
|
|
LevelMin = min;
|
|
|
|
LevelMax = max;
|
|
|
|
}
|
|
|
|
|
2020-08-21 23:35:49 +00:00
|
|
|
protected override void SetFormatSpecificData(PKM pk)
|
|
|
|
{
|
|
|
|
var pk6 = (PK6)pk;
|
2020-08-30 17:23:22 +00:00
|
|
|
if (CanDexNav)
|
2020-08-21 23:35:49 +00:00
|
|
|
{
|
2020-09-04 02:00:46 +00:00
|
|
|
var baseSpec = EvoBase.GetBaseSpecies(pk);
|
|
|
|
var eggMoves = MoveEgg.GetEggMoves(pk, baseSpec.Species, baseSpec.Form, Version);
|
2020-08-21 23:35:49 +00:00
|
|
|
if (eggMoves.Length > 0)
|
|
|
|
pk6.RelearnMove1 = eggMoves[Util.Rand.Next(eggMoves.Length)];
|
|
|
|
}
|
|
|
|
pk6.SetRandomMemory6();
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|