2022-11-25 01:42:17 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
public interface IObedienceLevel : IObedienceLevelReadOnly
|
|
|
|
{
|
|
|
|
new byte Obedience_Level { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface IObedienceLevelReadOnly
|
|
|
|
{
|
|
|
|
byte Obedience_Level { get; } // no setter, use for Encounters
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class ObedienceExtensions
|
|
|
|
{
|
|
|
|
public static byte GetSuggestedObedienceLevel(this IObedienceLevelReadOnly _, PKM entity, int originalMet)
|
|
|
|
{
|
|
|
|
if (entity.Species is (int)Species.Koraidon or (int)Species.Miraidon && entity is PK9 { FormArgument: not 0 })
|
|
|
|
return 0; // Box Legend ride-able is default 0. Everything else is met level!
|
2023-07-09 21:10:40 +00:00
|
|
|
if (entity.Version is not ((int)GameVersion.SL or (int)GameVersion.VL))
|
2022-11-25 01:42:17 +00:00
|
|
|
return (byte)entity.CurrentLevel; // foreign, play it safe.
|
|
|
|
// Can just assume min-level
|
|
|
|
return (byte)originalMet;
|
|
|
|
}
|
|
|
|
}
|