PKHeX/PKHeX.Core/PersonalInfo/PersonalInfoXY.cs
Kurt c8563a3737 Respacening
Style guidelines, handle a bunch of files
no functional change
2018-07-26 19:34:27 -07:00

30 lines
798 B
C#

namespace PKHeX.Core
{
/// <summary>
/// <see cref="PersonalInfo"/> class with values from the X &amp; Y games.
/// </summary>
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;
// Unpack TMHM & Tutors
TMHM = GetBits(Data, 0x28, 0x10);
TypeTutors = GetBits(Data, 0x38, 0x4);
// 0x3C-0x40 unknown
}
public override byte[] Write()
{
SetBits(TMHM).CopyTo(Data, 0x28);
SetBits(TypeTutors).CopyTo(Data, 0x38);
return Data;
}
}
}