mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-20 01:13:17 +00:00
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
|
using System.Linq;
|
|||
|
|
|||
|
namespace PKHeX
|
|||
|
{
|
|||
|
public class PersonalInfoB2W2 : PersonalInfoBW
|
|||
|
{
|
|||
|
public PersonalInfoB2W2(byte[] data)
|
|||
|
{
|
|||
|
if (data.Length != SIZE_B2W2)
|
|||
|
return;
|
|||
|
Data = data;
|
|||
|
|
|||
|
// Unpack TMHM & Tutors
|
|||
|
TMHM = getBits(Data.Skip(0x28).Take(0x10).ToArray());
|
|||
|
TypeTutors = getBits(Data.Skip(0x38).Take(0x4).ToArray());
|
|||
|
SpecialTutors = new[]
|
|||
|
{
|
|||
|
getBits(Data.Skip(0x3C).Take(0x04).ToArray()),
|
|||
|
getBits(Data.Skip(0x40).Take(0x04).ToArray()),
|
|||
|
getBits(Data.Skip(0x44).Take(0x04).ToArray()),
|
|||
|
getBits(Data.Skip(0x48).Take(0x04).ToArray()),
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
public override byte[] Write()
|
|||
|
{
|
|||
|
setBits(TMHM).CopyTo(Data, 0x28);
|
|||
|
setBits(TypeTutors).CopyTo(Data, 0x38);
|
|||
|
setBits(SpecialTutors[0]).CopyTo(Data, 0x3C);
|
|||
|
setBits(SpecialTutors[1]).CopyTo(Data, 0x40);
|
|||
|
setBits(SpecialTutors[2]).CopyTo(Data, 0x44);
|
|||
|
setBits(SpecialTutors[3]).CopyTo(Data, 0x48);
|
|||
|
return Data;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|