mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-04 01:39:13 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
66 lines
2.5 KiB
C#
66 lines
2.5 KiB
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Generation 7 Trade Encounter
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterTrade"/>
|
|
public sealed record EncounterTrade8b : EncounterTrade, IContestStatsReadOnly, IScaledSizeReadOnly, IFixedOTFriendship
|
|
{
|
|
public override int Generation => 8;
|
|
public override EntityContext Context => EntityContext.Gen8b;
|
|
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; init; }
|
|
public byte WeightScalar { get; init; }
|
|
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 pk, EvoCriteria evo)
|
|
{
|
|
if (pk.EncryptionConstant != EncryptionConstant)
|
|
return false;
|
|
if (pk.PID != PID)
|
|
return false;
|
|
if (pk is IContestStatsReadOnly s && s.IsContestBelow(this))
|
|
return false;
|
|
if (pk is IScaledSize h && h.HeightScalar != HeightScalar)
|
|
return false;
|
|
if (pk is IScaledSize w && w.WeightScalar != WeightScalar)
|
|
return false;
|
|
return base.IsMatchExact(pk, evo);
|
|
}
|
|
|
|
protected override bool IsMatchEggLocation(PKM pk)
|
|
{
|
|
var expect = EggLocation;
|
|
if (pk is not PB8 && expect == Locations.Default8bNone)
|
|
expect = 0;
|
|
return pk.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;
|
|
}
|
|
}
|