mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-20 01:13:17 +00:00
5bcccc6d92
* Revises legality checks to account for traveling between the three game islands (PLA/BDSP/SWSH) * Adds conversion mechanisms between the three formats, as well as flexible conversion options to backfill missing data (thanks GameFreak/ILCA for opting for lossy conversion instead of updating the games). * Adds API abstractions for HOME data storage format (EKH/PKH format 1, aka EH1/PH1). * Revises some APIs for better usage: - `PKM` now exposes a `Context` to indicate the isolation context for legality purposes. - Some method signatures have changed to accept `Context` or `GameVersion` instead of a vague `int` for Generation. - Evolution History is now tracked in the Legality parse for specific contexts, rather than only per generation.
66 lines
2.6 KiB
C#
66 lines
2.6 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 7 Trade Encounter
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterTrade"/>
|
|
public sealed record EncounterTrade8b : EncounterTrade, IContestStats, IScaledSize, IFixedOTFriendship
|
|
{
|
|
public override int Generation => 8;
|
|
public override int Location => Locations.LinkTrade6NPC;
|
|
|
|
public EncounterTrade8b(GameVersion game) : base(game) => EggLocation = Locations.Default8bNone;
|
|
public byte CNT_Cool => BaseContest;
|
|
public byte CNT_Beauty => BaseContest;
|
|
public byte CNT_Cute => BaseContest;
|
|
public byte CNT_Smart => BaseContest;
|
|
public byte CNT_Tough => BaseContest;
|
|
public byte CNT_Sheen => 0;
|
|
public byte HeightScalar { get; set; }
|
|
public byte WeightScalar { get; set; }
|
|
public byte OT_Friendship => Species == (int)Core.Species.Chatot ? (byte)35 : (byte)50;
|
|
private byte BaseContest => Species == (int)Core.Species.Chatot ? (byte)20 : (byte)0;
|
|
public uint PID { get; init; }
|
|
public uint EncryptionConstant { get; init; }
|
|
|
|
public override bool IsMatchExact(PKM pkm, EvoCriteria evo)
|
|
{
|
|
if (pkm.EncryptionConstant != EncryptionConstant)
|
|
return false;
|
|
if (pkm.PID != PID)
|
|
return false;
|
|
if (pkm is IContestStats s && s.IsContestBelow(this))
|
|
return false;
|
|
if (pkm is IScaledSize h && h.HeightScalar != HeightScalar)
|
|
return false;
|
|
if (pkm is IScaledSize w && w.WeightScalar != WeightScalar)
|
|
return false;
|
|
return base.IsMatchExact(pkm, evo);
|
|
}
|
|
|
|
protected override bool IsMatchEggLocation(PKM pkm)
|
|
{
|
|
var expect = EggLocation;
|
|
if (pkm is not PB8 && expect == Locations.Default8bNone)
|
|
expect = 0;
|
|
return pkm.Egg_Location == expect;
|
|
}
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
{
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
var pb8 = (PB8)pk;
|
|
pb8.EncryptionConstant = EncryptionConstant;
|
|
pb8.PID = PID;
|
|
|
|
// Has German Language ID for all except German origin, which is Japanese
|
|
if (Species == (int)Core.Species.Magikarp)
|
|
pb8.Language = (int)(pb8.Language == (int)LanguageID.German ? LanguageID.Japanese : LanguageID.German);
|
|
|
|
this.CopyContestStatsTo(pb8);
|
|
pb8.HT_Language = (byte)sav.Language;
|
|
pb8.HeightScalar = HeightScalar;
|
|
pb8.WeightScalar = WeightScalar;
|
|
}
|
|
}
|
|
}
|