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.
21 lines
642 B
C#
21 lines
642 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 7 Static Encounter (<see cref="GameVersion.GG"/>
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
|
public sealed record EncounterStatic7b(GameVersion Version) : EncounterStatic(Version)
|
|
{
|
|
public override int Generation => 7;
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|