mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
66c00e4f8a
all data stored in the object is pre-computed from the EC xoroshiro (similar to roamers); all have a fixed seed.
59 lines
2.4 KiB
C#
59 lines
2.4 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 = unchecked((ushort)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 int OT_Friendship => Species == (int)Core.Species.Chatot ? 35 : 50;
|
|
private byte BaseContest => Species == (int)Core.Species.Chatot ? (byte)20 : (byte)0;
|
|
public uint PID { get; init; }
|
|
public uint EncryptionConstant { get; init; }
|
|
public int HeightScalar { get; set; }
|
|
public int WeightScalar { get; set; }
|
|
|
|
public override bool IsMatchExact(PKM pkm, DexLevel 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 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 = sav.Language;
|
|
pb8.HeightScalar = HeightScalar;
|
|
pb8.WeightScalar = WeightScalar;
|
|
pb8.SetRandomEC();
|
|
}
|
|
}
|
|
}
|