mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
ccca8abdad
Now that we have accurate calcs, let's just generate them with the values.
28 lines
800 B
C#
28 lines
800 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 7 LGP/E Trade Encounter
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterTrade"/>
|
|
public sealed record EncounterTrade7b : EncounterTrade
|
|
{
|
|
public override int Generation => 7;
|
|
public override int Location => Locations.LinkTrade6NPC;
|
|
|
|
public EncounterTrade7b(GameVersion game) : base(game)
|
|
{
|
|
Shiny = Shiny.Random;
|
|
IsNicknamed = false;
|
|
}
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
{
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
pk.SetRandomEC();
|
|
var pb = (PB7)pk;
|
|
pb.ResetHeight();
|
|
pb.ResetWeight();
|
|
pb.ResetCP();
|
|
}
|
|
}
|
|
}
|