mirror of
https://github.com/pret/pmd-red.git
synced 2026-09-14 12:05:51 -05:00
address kecleon review
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user