2024-03-04 05:13:16 +00:00
|
|
|
using System;
|
2023-01-22 04:02:33 +00:00
|
|
|
using System.Collections.Generic;
|
2020-12-05 14:09:33 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
2024-05-01 05:49:43 +00:00
|
|
|
public sealed class MyItem6XY(SAV6XY SAV, Memory<byte> raw) : MyItem(SAV, raw)
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2024-02-23 19:20:24 +00:00
|
|
|
private const int HeldItem = 0; // 0
|
|
|
|
private const int KeyItem = 0x640; // 1
|
|
|
|
private const int TMHM = 0x7C0; // 2
|
2022-06-18 18:04:24 +00:00
|
|
|
private const int Medicine = 0x968; // 3
|
2024-02-23 19:20:24 +00:00
|
|
|
private const int Berry = 0xA68; // 4
|
2019-06-09 02:56:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public override IReadOnlyList<InventoryPouch> Inventory
|
|
|
|
{
|
|
|
|
get
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2023-04-16 19:58:07 +00:00
|
|
|
var info = ItemStorage6XY.Instance;
|
2023-01-22 04:02:33 +00:00
|
|
|
InventoryPouch4[] pouch =
|
2023-12-04 04:13:20 +00:00
|
|
|
[
|
2024-03-04 05:13:16 +00:00
|
|
|
new(InventoryType.Items, info, 999, HeldItem),
|
|
|
|
new(InventoryType.KeyItems, info, 1, KeyItem),
|
|
|
|
new(InventoryType.TMHMs, info, 1, TMHM),
|
|
|
|
new(InventoryType.Medicine, info, 999, Medicine),
|
|
|
|
new(InventoryType.Berries, info, 999, Berry),
|
2023-12-04 04:13:20 +00:00
|
|
|
];
|
2022-06-18 18:04:24 +00:00
|
|
|
return pouch.LoadAll(Data);
|
2019-06-09 02:56:11 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
set => value.SaveAll(Data);
|
2019-06-09 02:56:11 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
}
|