address kecleon review

This commit is contained in:
Seth Barberee
2023-01-13 17:41:45 -08:00
parent 41437a7a2e
commit 996a1cbc34
5 changed files with 101 additions and 101 deletions

View File

@@ -105,20 +105,20 @@ void sub_8090F58(void*, u8 *, struct ItemSlot *, struct unkStruct_8090F58*);
void ShiftItemsDownFrom(s32 start);
void ClearItemSlotAt(u32 index);
void MoveToStorage(struct ItemSlot* slot);
s32 CountKecleonItemShopItems(void);
void InitKecleonItemShopItem(u8 index);
struct HeldItem *GetKecleonItemShopItem(u8 index);
void FillKecleonItemShopGaps(void);
void SortGreenKecleonShopInventory(void);
s32 CountKecleonShopItems(void);
void InitKecleonShopItem(u8 index);
struct HeldItem *GetKecleonShopItem(u8 index);
void FillKecleonShopGaps(void);
void SortKecleonShopInventory(void);
void ChooseKecleonShopInventory(u8 index);
bool8 AddGreenKecleonShopItem(u8 itemIndex);
u32 CountKecleonWareShopItems(void);
void InitKecleonWareShopItem(u8 index);
struct HeldItem* GetKecleonWareShopItem(u8 index);
void FillKecleonWareShopGaps(void);
void SortPurpleKecleonShopInventory(void);
void ChoosePurpleKecleonShopInventory(u8 index);
bool8 AddPurpleKecleonShopItem(u8 itemIndex);
bool8 AddKecleonShopItem(u8 itemIndex);
u32 CountKecleonWareItems(void);
void InitKecleonWareItem(u8 index);
struct HeldItem* GetKecleonWareItem(u8 index);
void FillKecleonWareGaps(void);
void SortKecleonWareInventory(void);
void ChooseKecleonWareInventory(u8 index);
bool8 AddKecleonWareItem(u8 itemIndex);
void FillInventoryGaps();
bool8 AddHeldItemToInventory(struct HeldItem* slot);
bool8 IsNotMoneyOrUsedTMItem(u8 id);

View File

@@ -8,8 +8,8 @@ struct TeamInventory
{
struct ItemSlot teamItems[INVENTORY_SIZE];
u16 teamStorage[NUMBER_OF_ITEM_IDS];
struct HeldItem kecleonItemShopItems[MAX_KECLEON_ITEM_SHOP_ITEMS];
struct HeldItem kecleonWareShopItems[MAX_KECLEON_WARE_SHOP_ITEMS];
struct HeldItem kecleonShopItems[MAX_KECLEON_ITEM_SHOP_ITEMS];
struct HeldItem kecleonWareItems[MAX_KECLEON_WARE_SHOP_ITEMS];
/* 0x260 */ s32 teamMoney;
/* 0x264 */ u32 teamSavings;
};