PKHeX/PKHeX.Core/PersonalInfo/PersonalInfoSWSH.cs
Kurt ab0b8979e9
Add swsh content placeholders (#2392)
placeholder content until real data is dumped
2019-09-23 16:56:47 -07:00

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); }
}
}