mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-24 03:13:18 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
87 lines
3.9 KiB
C#
87 lines
3.9 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// <see cref="PersonalInfo"/> class with values from Generation 3 games.
|
|
/// </summary>
|
|
public class PersonalInfoG3 : PersonalInfo
|
|
{
|
|
protected PersonalInfoG3() { }
|
|
public const int SIZE = 0x1C;
|
|
public PersonalInfoG3(byte[] data)
|
|
{
|
|
if (data.Length != SIZE)
|
|
return;
|
|
|
|
Data = data;
|
|
}
|
|
public override byte[] Write()
|
|
{
|
|
return Data;
|
|
}
|
|
|
|
public override int HP { get => Data[0x00]; set => Data[0x00] = (byte)value; }
|
|
public override int ATK { get => Data[0x01]; set => Data[0x01] = (byte)value; }
|
|
public override int DEF { get => Data[0x02]; set => Data[0x02] = (byte)value; }
|
|
public override int SPE { get => Data[0x03]; set => Data[0x03] = (byte)value; }
|
|
public override int SPA { get => Data[0x04]; set => Data[0x04] = (byte)value; }
|
|
public override int SPD { get => Data[0x05]; set => Data[0x05] = (byte)value; }
|
|
public override int[] Types
|
|
{
|
|
get => new int[] { Data[0x06], Data[0x07] };
|
|
set
|
|
{
|
|
if (value?.Length != 2) return;
|
|
Data[0x06] = (byte)value[0];
|
|
Data[0x07] = (byte)value[1];
|
|
}
|
|
}
|
|
public override int CatchRate { get => Data[0x08]; set => Data[0x08] = (byte)value; }
|
|
public override int BaseEXP { get => Data[0x09]; set => Data[0x09] = (byte)value; }
|
|
private int EVYield { get => BitConverter.ToUInt16(Data, 0x0A); set => BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x0A); }
|
|
public override int EV_HP { get => EVYield >> 0 & 0x3; set => EVYield = (EVYield & ~(0x3 << 0)) | (value & 0x3) << 0; }
|
|
public override int EV_ATK { get => EVYield >> 2 & 0x3; set => EVYield = (EVYield & ~(0x3 << 2)) | (value & 0x3) << 2; }
|
|
public override int EV_DEF { get => EVYield >> 4 & 0x3; set => EVYield = (EVYield & ~(0x3 << 4)) | (value & 0x3) << 4; }
|
|
public override int EV_SPE { get => EVYield >> 6 & 0x3; set => EVYield = (EVYield & ~(0x3 << 6)) | (value & 0x3) << 6; }
|
|
public override int EV_SPA { get => EVYield >> 8 & 0x3; set => EVYield = (EVYield & ~(0x3 << 8)) | (value & 0x3) << 8; }
|
|
public override int EV_SPD { get => EVYield >> 10 & 0x3; set => EVYield = (EVYield & ~(0x3 << 10)) | (value & 0x3) << 10; }
|
|
|
|
public override int[] Items
|
|
{
|
|
get => new int[] { BitConverter.ToInt16(Data, 0xC), BitConverter.ToInt16(Data, 0xE) };
|
|
set
|
|
{
|
|
if (value?.Length != 2) return;
|
|
BitConverter.GetBytes((short)value[0]).CopyTo(Data, 0xC);
|
|
BitConverter.GetBytes((short)value[1]).CopyTo(Data, 0xE);
|
|
}
|
|
}
|
|
public override int Gender { get => Data[0x10]; set => Data[0x10] = (byte)value; }
|
|
public override int HatchCycles { get => Data[0x11]; set => Data[0x11] = (byte)value; }
|
|
public override int BaseFriendship { get => Data[0x12]; set => Data[0x12] = (byte)value; }
|
|
public override int EXPGrowth { get => Data[0x13]; set => Data[0x13] = (byte)value; }
|
|
public override int[] EggGroups
|
|
{
|
|
get => new int[] { Data[0x14], Data[0x15] };
|
|
set
|
|
{
|
|
if (value?.Length != 2) return;
|
|
Data[0x14] = (byte)value[0];
|
|
Data[0x15] = (byte)value[1];
|
|
}
|
|
}
|
|
public override int[] Abilities
|
|
{
|
|
get => new int[] { Data[0x16], Data[0x17] };
|
|
set
|
|
{
|
|
if (value?.Length != 2) return;
|
|
Data[0x16] = (byte)value[0];
|
|
Data[0x17] = (byte)value[1];
|
|
}
|
|
}
|
|
public override int EscapeRate { get => Data[0x18]; set => Data[0x18] = (byte)value; }
|
|
public override int Color { get => Data[0x19]; set => Data[0x19] = (byte)value; }
|
|
}
|
|
}
|