mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
c8563a3737
Style guidelines, handle a bunch of files no functional change
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// <see cref="PersonalInfo"/> class with values from the OR & AS games.
|
|
/// </summary>
|
|
public class PersonalInfoORAS : PersonalInfoXY
|
|
{
|
|
public new const int SIZE = 0x50;
|
|
|
|
public PersonalInfoORAS(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
|
|
SpecialTutors = new[]
|
|
{
|
|
GetBits(Data, 0x40, 0x04),
|
|
GetBits(Data, 0x44, 0x04),
|
|
GetBits(Data, 0x48, 0x04),
|
|
GetBits(Data, 0x4C, 0x04),
|
|
};
|
|
}
|
|
|
|
public override byte[] Write()
|
|
{
|
|
SetBits(TMHM).CopyTo(Data, 0x28);
|
|
SetBits(TypeTutors).CopyTo(Data, 0x38);
|
|
SetBits(SpecialTutors[0]).CopyTo(Data, 0x40);
|
|
SetBits(SpecialTutors[1]).CopyTo(Data, 0x44);
|
|
SetBits(SpecialTutors[2]).CopyTo(Data, 0x48);
|
|
SetBits(SpecialTutors[3]).CopyTo(Data, 0x4C);
|
|
return Data;
|
|
}
|
|
}
|
|
}
|