mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
f5bacf236c
Will eventually have more complex operations associated with it, as the PersonalInfo[] could not do that sort of logic.
27 lines
735 B
C#
27 lines
735 B
C#
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;
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
}
|