mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
c8563a3737
Style guidelines, handle a bunch of files no functional change
28 lines
711 B
C#
28 lines
711 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Object has Trainer ownership
|
|
/// </summary>
|
|
public interface ITrainerID
|
|
{
|
|
int TID { get; set; }
|
|
int SID { get; set; }
|
|
}
|
|
|
|
public static partial class Extensions
|
|
{
|
|
public static int GetTrainerIDFormat(this ITrainerID tr)
|
|
{
|
|
if (tr is PKM p)
|
|
{
|
|
var format = p.GenNumber;
|
|
if ((format < 3 && p.Format >= 7) || format <= 0) // VC or bad gen
|
|
return 4; // use TID/SID 16bit style
|
|
return format;
|
|
}
|
|
if (tr is SaveFile s)
|
|
return s.Generation;
|
|
return -1;
|
|
}
|
|
}
|
|
}
|