mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
27dfffd5b2
https://projectpokemon.org/home/forums/topic/52127-lgpe-save-research/?tab=comments#comment-243751 Thanks theSlayer! (starter gender not modifiable via gui)
67 lines
No EOL
1.6 KiB
C#
67 lines
No EOL
1.6 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public sealed class MyStatus7b : SaveBlock
|
|
{
|
|
private readonly SaveFile SAV;
|
|
|
|
public MyStatus7b(SaveFile sav) : base(sav)
|
|
{
|
|
SAV = sav;
|
|
Offset = ((SAV7b)sav).GetBlockOffset(BelugaBlockIndex.MyStatus);
|
|
}
|
|
|
|
// Player Information
|
|
|
|
// idb uint8 offset: 0x58
|
|
|
|
public int TID
|
|
{
|
|
get => BitConverter.ToUInt16(Data, Offset + 0);
|
|
set => BitConverter.GetBytes((ushort)value).CopyTo(Data, Offset + 0);
|
|
}
|
|
|
|
public int SID
|
|
{
|
|
get => BitConverter.ToUInt16(Data, Offset + 2);
|
|
set => BitConverter.GetBytes((ushort)value).CopyTo(Data, Offset + 2);
|
|
}
|
|
|
|
public int Game
|
|
{
|
|
get => Data[Offset + 4];
|
|
set => Data[Offset + 4] = (byte)value;
|
|
}
|
|
|
|
public int Gender
|
|
{
|
|
get => Data[Offset + 5];
|
|
set => Data[Offset + 5] = OverworldGender = (byte)value;
|
|
}
|
|
|
|
public int Language
|
|
{
|
|
get => Data[Offset + 0x35];
|
|
set => Data[Offset + 0x35] = (byte)value;
|
|
}
|
|
|
|
public string OT
|
|
{
|
|
get => SAV.GetString(Offset + 0x38, 0x1A);
|
|
set => SAV.SetString(value, SAV.OTLength).CopyTo(Data, Offset + 0x38);
|
|
}
|
|
|
|
public byte StarterGender
|
|
{
|
|
get => Data[Offset + 0x0B9];
|
|
set => Data[Offset + 0x0B9] = value;
|
|
}
|
|
|
|
public byte OverworldGender // Model
|
|
{
|
|
get => Data[Offset + 0x108];
|
|
set => Data[Offset + 0x108] = value;
|
|
}
|
|
}
|
|
} |