mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
1b028198ad
refer to pull request comments for summary
24 lines
No EOL
605 B
C#
24 lines
No EOL
605 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public sealed class Misc7b : SaveBlock
|
|
{
|
|
public Misc7b(SaveFile sav) : base(sav)
|
|
{
|
|
Offset = ((SAV7b)sav).GetBlockOffset(BelugaBlockIndex.Misc);
|
|
}
|
|
|
|
public uint Money
|
|
{
|
|
get => BitConverter.ToUInt32(Data, Offset + 4);
|
|
set => BitConverter.GetBytes(value).CopyTo(Data, Offset + 4);
|
|
}
|
|
|
|
public string Rival
|
|
{
|
|
get => SAV.GetString(Offset + 0x200, 0x1A);
|
|
set => SAV.SetString(value, SAV.OTLength).CopyTo(Data, Offset + 0x200);
|
|
}
|
|
}
|
|
} |