mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
a03f5dcc9d
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.
14 lines
360 B
C#
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;
|
|
}
|
|
}
|
|
}
|