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;
|
|
|
|
|
|
|
|
public sealed class MyItem6AO : MyItem
|
2019-06-09 02:56:11 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
private const int HeldItem = 0; // 0
|
|
|
|
private const int KeyItem = 0x640; // 1
|
|
|
|
private const int TMHM = 0x7C0; // 2
|
|
|
|
private const int Medicine = 0x970; // 3, +2 items shift because 2 HMs added
|
|
|
|
private const int Berry = 0xA70; // 4
|
2019-06-09 02:56:11 +00:00
|
|
|
|
2024-03-04 05:13:16 +00:00
|
|
|
public MyItem6AO(SAV6AO SAV, Memory<byte> raw) : base(SAV, raw) { }
|
|
|
|
public MyItem6AO(SAV6AODemo SAV, Memory<byte> raw) : base(SAV, raw) { }
|
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 = ItemStorage6AO.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
|
|
|
}
|