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;
|
|
|
|
|
|
|
|
public sealed class MyItem5BW : MyItem
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
// offsets/pouch sizes are the same for both BW and B2W2, but Key Item permissions are different
|
|
|
|
private const int HeldItem = 0x000; // 0
|
|
|
|
private const int KeyItem = 0x4D8; // 1
|
|
|
|
private const int TMHM = 0x624; // 2
|
|
|
|
private const int Medicine = 0x7D8; // 3
|
|
|
|
private const int Berry = 0x898; // 4
|
2019-06-09 02:56:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public MyItem5BW(SaveFile SAV, int offset) : base(SAV) => Offset = offset;
|
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 = ItemStorage5BW.Instance;
|
2023-01-22 04:02:33 +00:00
|
|
|
InventoryPouch4[] pouch =
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2023-04-16 19:58:07 +00:00
|
|
|
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),
|
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
|
|
|
}
|