mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
1af27516e6
Keeping the cryptic message for now :)
63 lines
2 KiB
C#
63 lines
2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 8 Static Encounter
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
|
public record EncounterStatic8 : EncounterStatic, IDynamaxLevel, IGigantamax, IRelearn, IOverworldCorrelation8
|
|
{
|
|
public sealed override int Generation => 8;
|
|
public bool ScriptedNoMarks { get; init; }
|
|
public bool CanGigantamax { get; set; }
|
|
public byte DynamaxLevel { get; set; }
|
|
public IReadOnlyList<int> Relearn { get; init; } = Array.Empty<int>();
|
|
|
|
public AreaWeather8 Weather {get; init; } = AreaWeather8.Normal;
|
|
|
|
public EncounterStatic8(GameVersion game) : base(game) { }
|
|
|
|
protected override bool IsMatchLevel(PKM pkm, DexLevel evo)
|
|
{
|
|
var met = pkm.Met_Level;
|
|
var lvl = Level;
|
|
if (met == lvl)
|
|
return true;
|
|
if (lvl < 60 && EncounterArea8.IsBoostedArea60(Location))
|
|
return met == 60;
|
|
return false;
|
|
}
|
|
|
|
public override bool IsMatchExact(PKM pkm, DexLevel evo)
|
|
{
|
|
if (pkm is IDynamaxLevel d && d.DynamaxLevel < DynamaxLevel)
|
|
return false;
|
|
return base.IsMatchExact(pkm, evo);
|
|
}
|
|
|
|
public bool HasOverworldCorrelation
|
|
{
|
|
get
|
|
{
|
|
if (Gift)
|
|
return false; // gifts can have any 128bit seed from overworld
|
|
if (ScriptedNoMarks)
|
|
return false; // scripted encounters don't act as saved spawned overworld encounters
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public bool IsOverworldCorrelationCorrect(PKM pk)
|
|
{
|
|
return Overworld8RNG.ValidateOverworldEncounter(pk, Shiny == Shiny.Random ? Shiny.FixedValue : Shiny, FlawlessIVCount);
|
|
}
|
|
}
|
|
|
|
public interface IOverworldCorrelation8
|
|
{
|
|
bool HasOverworldCorrelation { get; }
|
|
bool IsOverworldCorrelationCorrect(PKM pk);
|
|
}
|
|
}
|