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 MyItem7SM : MyItem
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
private const int HeldItem = 0; // 430 (Case 0)
|
|
|
|
private const int KeyItem = HeldItem + (4 * 430); // 184 (Case 4)
|
|
|
|
private const int TMHM = KeyItem + (4 * 184); // 108 (Case 2)
|
|
|
|
private const int Medicine = TMHM + (4 * 108); // 64 (Case 1)
|
|
|
|
private const int Berry = Medicine + (4 * 64); // 72 (Case 3)
|
|
|
|
private const int ZCrystals = Berry + (4 * 72); // 30 (Case 5)
|
2019-06-09 02:56:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public MyItem7SM(SAV7SM 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 = ItemStorage7SM.Instance;
|
2023-01-22 04:02:33 +00:00
|
|
|
InventoryPouch7[] pouch =
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2023-04-16 19:58:07 +00:00
|
|
|
new(InventoryType.Medicine, info, 999, Offset + Medicine),
|
|
|
|
new(InventoryType.Items, info, 999, Offset + HeldItem),
|
|
|
|
new(InventoryType.TMHMs, info, 1, Offset + TMHM),
|
|
|
|
new(InventoryType.Berries, info, 999, Offset + Berry),
|
|
|
|
new(InventoryType.KeyItems, info, 1, Offset + KeyItem),
|
|
|
|
new(InventoryType.ZCrystals, info, 1, Offset + ZCrystals),
|
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
|
|
|
}
|