mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
51 lines
2.1 KiB
C#
51 lines
2.1 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 int HeightScalar { get; set; }
|
|
public int WeightScalar { get; set; }
|
|
|
|
public override bool IsMatchExact(PKM pkm, DexLevel evo)
|
|
{
|
|
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;
|
|
|
|
// 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();
|
|
}
|
|
}
|
|
}
|