PKHeX/PersonalInfo/PersonalInfoXY.cs

28 lines
735 B
C#
Raw Normal View History

2016-07-03 03:25:47 +00:00
using System.Linq;
namespace PKHeX
{
public class PersonalInfoXY : PersonalInfoBW
{
protected PersonalInfoXY() { } // For ORAS
public new const int SIZE = 0x40;
public PersonalInfoXY(byte[] data)
{
if (data.Length != SIZE)
return;
Data = data;
2016-07-03 03:25:47 +00:00
// Unpack TMHM & Tutors
TMHM = getBits(Data.Skip(0x28).Take(0x10).ToArray());
TypeTutors = getBits(Data.Skip(0x38).Take(0x4).ToArray());
// 0x3C-0x40 unknown
}
public override byte[] Write()
{
setBits(TMHM).CopyTo(Data, 0x28);
setBits(TypeTutors).CopyTo(Data, 0x38);
return Data;
}
}
}