mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
ab0b8979e9
placeholder content until real data is dumped
25 lines
No EOL
774 B
C#
25 lines
No EOL
774 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// <see cref="PersonalInfo"/> class with values from the <see cref="GameVersion.SWSH"/> games.
|
|
/// </summary>
|
|
public class PersonalInfoSWSH : PersonalInfoSM
|
|
{
|
|
public new const int SIZE = PersonalInfoSM.SIZE;
|
|
|
|
// todo: this is a copy of lgpe class
|
|
public PersonalInfoSWSH(byte[] data)
|
|
{
|
|
if (data.Length != SIZE)
|
|
return;
|
|
Data = data;
|
|
|
|
TMHM = GetBits(Data, 0x28, 8); // only 60 TMs used
|
|
TypeTutors = GetBits(Data, 0x38, 1); // at most 8 flags used
|
|
}
|
|
|
|
public int GoSpecies { get => BitConverter.ToUInt16(Data, 0x48); set => BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x48); }
|
|
}
|
|
} |