PKHeX/PersonalInfo/PersonalInfoG4.cs
Kaphotics f5bacf236c Add&Split out PersonalTable
Will eventually have more complex operations associated with it, as the
PersonalInfo[] could not do that sort of logic.
2016-07-17 22:39:18 -07:00

25 lines
647 B
C#

using System.Linq;
namespace PKHeX
{
public class PersonalInfoG4 : PersonalInfoG3
{
public new const int SIZE = 0x2C;
public PersonalInfoG4(byte[] data)
{
if (data.Length != SIZE)
return;
Data = data;
// Unpack TMHM & Tutors
TMHM = getBits(Data.Skip(0x1C).Take(0x0D).ToArray());
TypeTutors = new bool[0]; // not stored in personal
}
public override byte[] Write()
{
setBits(TMHM).CopyTo(Data, 0x28);
// setBits(TypeTutors).CopyTo(Data, 0x38);
return Data;
}
}
}