PKHeX/PKHeX.Core/Legality/Encounters/EncounterTrade/EncounterTrade7b.cs
Kurt a03f5dcc9d Make EncounterTrade met location use inheritance
hovering would grab ILocation, which didn't use the flexible met location fetch.

Just repoint stuff and have it as a virtual call, since most of these are fixed values, there's no point increasing the size of the classes besides those for gen4.
2021-05-18 17:14:17 -07:00

14 lines
360 B
C#

namespace PKHeX.Core
{
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;
}
}
}