Change default TID/SID for gen7+

This commit is contained in:
Kurt 2020-08-30 17:54:58 -07:00
parent 9ce09c8b1b
commit b5677758be

View File

@ -565,8 +565,16 @@ public static SaveFile GetBlankSAV(GameVersion game, string trainerName)
SAV.OT = trainerName;
// Secondary Properties may not be used but can be filled in as template.
SAV.TID = 12345;
SAV.SID = 54321;
if (SAV.Generation >= 7)
{
SAV.TrainerID7 = 123456;
SAV.TrainerSID7 = 1234;
}
else
{
SAV.TID = 12345;
SAV.SID = 54321;
}
SAV.Language = (int)LanguageID.English; // English
// Only set geolocation data for 3DS titles