PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic7.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now.

Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes.

Adds functionality for Batch Editor commands to `>`, `<` and <=/>=

TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants.

Main window has a new layout to account for DPI scaling (8 point grid)

Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects
Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724)
Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720)
Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714)
Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691)
Added: Properties for ribbon/mark count (closes #3659)
Fixed: Traded SV eggs are now checked correctly (closes #3692)
2023-01-21 20:02:33 -08:00

101 lines
3.7 KiB
C#

namespace PKHeX.Core;
/// <summary>
/// Generation 7 Static Encounter
/// </summary>
/// <inheritdoc cref="EncounterStatic"/>
public sealed record EncounterStatic7(GameVersion Version) : EncounterStatic(Version), IRelearn, IEncounterFormRandom
{
public override int Generation => 7;
public override EntityContext Context => EntityContext.Gen7;
public Moveset Relearn { get; init; }
public bool IsTotem => FormInfo.IsTotemForm(Species, Form);
public bool IsTotemNoTransfer => Legal.Totem_NoTransfer.Contains(Species);
public int GetTotemBaseForm() => FormInfo.GetTotemBaseForm(Species, Form);
public bool IsRandomUnspecificForm => Form >= FormDynamic;
private const int FormDynamic = FormVivillon;
internal const int FormVivillon = 30;
//protected const int FormRandom = 31;
protected override bool IsMatchLocation(PKM pk)
{
if (EggLocation == Locations.Daycare5 && !Relearn.HasMoves && pk.RelearnMove1 != 0) // Gift Eevee edge case
return false;
return base.IsMatchLocation(pk);
}
protected override bool IsMatchEggLocation(PKM pk)
{
if (!EggEncounter)
return base.IsMatchEggLocation(pk);
var eggloc = pk.Egg_Location;
if (!pk.IsEgg) // hatched
return eggloc == EggLocation || eggloc == Locations.LinkTrade6;
// Unhatched:
if (eggloc != EggLocation)
return false;
if (pk.Met_Location is not (0 or Locations.LinkTrade6))
return false;
return true;
}
protected override bool IsMatchForm(PKM pk, EvoCriteria evo)
{
if (IsRandomUnspecificForm)
return true;
if (IsTotem)
{
var expectForm = pk.Format == 7 ? Form : FormInfo.GetTotemBaseForm(Species, Form);
return expectForm == evo.Form;
}
return base.IsMatchForm(pk, evo);
}
protected override void ApplyDetails(ITrainerInfo tr, EncounterCriteria criteria, PKM pk)
{
base.ApplyDetails(tr, criteria, pk);
if (Species == (int)Core.Species.Magearna && pk is IRibbonSetEvent4 e4)
e4.RibbonWishing = true;
if (Form == FormVivillon && pk is PK7 pk7)
pk.Form = Vivillon3DS.GetPattern(pk7.Country, pk7.Region);
pk.SetRandomEC();
}
internal static EncounterStatic7 GetVC1(ushort species, byte metLevel)
{
bool mew = species == (int)Core.Species.Mew;
return new EncounterStatic7(GameVersion.RBY)
{
Species = species,
Gift = true, // Forces Poké Ball
Ability = TransporterLogic.IsHiddenDisallowedVC1(species) ? AbilityPermission.OnlyFirst : AbilityPermission.OnlyHidden, // Hidden by default, else first
Shiny = mew ? Shiny.Never : Shiny.Random,
FatefulEncounter = mew,
Location = Locations.Transfer1,
Level = metLevel,
FlawlessIVCount = mew ? (byte)5 : (byte)3,
};
}
internal static EncounterStatic7 GetVC2(ushort species, byte metLevel)
{
bool mew = species == (int)Core.Species.Mew;
bool fateful = mew || species == (int)Core.Species.Celebi;
return new EncounterStatic7(GameVersion.GSC)
{
Species = species,
Gift = true, // Forces Poké Ball
Ability = TransporterLogic.IsHiddenDisallowedVC2(species) ? AbilityPermission.OnlyFirst : AbilityPermission.OnlyHidden, // Hidden by default, else first
Shiny = mew ? Shiny.Never : Shiny.Random,
FatefulEncounter = fateful,
Location = Locations.Transfer2,
Level = metLevel,
FlawlessIVCount = fateful ? (byte)5 : (byte)3,
};
}
}