mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
32 lines
1 KiB
C#
32 lines
1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class MyItem6XY : MyItem
|
|
{
|
|
private const int HeldItem = 0; // 0
|
|
private const int KeyItem = 0x640; // 1
|
|
private const int TMHM = 0x7C0; // 2
|
|
private const int Medicine = 0x968; // 3
|
|
private const int Berry = 0xA68; // 4
|
|
|
|
public MyItem6XY(SaveFile SAV, int offset) : base(SAV) => Offset = offset;
|
|
|
|
public override IReadOnlyList<InventoryPouch> Inventory
|
|
{
|
|
get
|
|
{
|
|
var info = ItemStorage6XY.Instance;
|
|
InventoryPouch4[] pouch =
|
|
[
|
|
new(InventoryType.Items, info, 999, Offset + HeldItem),
|
|
new(InventoryType.KeyItems, info, 1, Offset + KeyItem),
|
|
new(InventoryType.TMHMs, info, 1, Offset + TMHM),
|
|
new(InventoryType.Medicine, info, 999, Offset + Medicine),
|
|
new(InventoryType.Berries, info, 999, Offset + Berry),
|
|
];
|
|
return pouch.LoadAll(Data);
|
|
}
|
|
set => value.SaveAll(Data);
|
|
}
|
|
}
|