mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-16 23:43:11 +00:00
ab0b8979e9
placeholder content until real data is dumped
22 lines
No EOL
522 B
C#
22 lines
No EOL
522 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public sealed class Misc8 : SaveBlock
|
|
{
|
|
public Misc8(SAV8 sav, int offset) : base(sav) => Offset = offset;
|
|
|
|
public uint Money
|
|
{
|
|
get => BitConverter.ToUInt32(Data, Offset + 0x4);
|
|
set
|
|
{
|
|
if (value > 9999999)
|
|
value = 9999999;
|
|
SAV.SetData(BitConverter.GetBytes(value), Offset + 0x4);
|
|
}
|
|
}
|
|
|
|
public int Vivillon { get; set; } // todo
|
|
}
|
|
} |