mirror of
https://github.com/zeldaret/ss
synced 2026-05-28 00:15:59 -04:00
20 lines
519 B
C
20 lines
519 B
C
#ifndef D_LYT_UTIL_ITEMS_H
|
|
#define D_LYT_UTIL_ITEMS_H
|
|
|
|
#include "common.h"
|
|
#include "toBeSorted/dowsing_target.h"
|
|
|
|
bool isPouchBocoburinLocked();
|
|
|
|
u8 getPouchItemForSlot(s32 slot, bool unk);
|
|
bool hasPouchSlot(s32 slot, bool unk);
|
|
s32 getPouchItemAmount(s32 slot, bool unk);
|
|
u8 getPouchItemNumberColor(s32 slot, bool unk);
|
|
f32 getShieldDurability(s32 slot, bool unk);
|
|
|
|
DowsingTarget::DowsingSlot dowsingSlotForIndex(s32 index);
|
|
s32 getLytIndexForDowsingIndex(s32 index);
|
|
u16 getDowsingItemIdForIndex(s32 index);
|
|
|
|
#endif
|