2018-02-17 03:34:42 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-07-03 03:24:17 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="PersonalInfo"/> class with values from the X & Y games.
|
|
|
|
|
/// </summary>
|
2016-07-03 03:24:17 +00:00
|
|
|
|
public class PersonalInfoXY : PersonalInfoBW
|
|
|
|
|
{
|
|
|
|
|
protected PersonalInfoXY() { } // For ORAS
|
2016-07-18 05:39:18 +00:00
|
|
|
|
public new const int SIZE = 0x40;
|
2016-07-03 03:24:17 +00:00
|
|
|
|
public PersonalInfoXY(byte[] data)
|
|
|
|
|
{
|
2016-07-18 05:39:18 +00:00
|
|
|
|
if (data.Length != SIZE)
|
2016-07-03 03:24:17 +00:00
|
|
|
|
return;
|
|
|
|
|
Data = data;
|
|
|
|
|
|
2016-07-03 03:25:47 +00:00
|
|
|
|
// Unpack TMHM & Tutors
|
2018-02-17 03:34:42 +00:00
|
|
|
|
TMHM = GetBits(Data, 0x28, 0x10);
|
|
|
|
|
TypeTutors = GetBits(Data, 0x38, 0x4);
|
2016-07-03 03:24:17 +00:00
|
|
|
|
// 0x3C-0x40 unknown
|
|
|
|
|
}
|
|
|
|
|
public override byte[] Write()
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SetBits(TMHM).CopyTo(Data, 0x28);
|
|
|
|
|
SetBits(TypeTutors).CopyTo(Data, 0x38);
|
2016-07-03 03:24:17 +00:00
|
|
|
|
return Data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|