mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
18 lines
563 B
C
18 lines
563 B
C
#ifndef POKEPLATINUM_GOODS_H
|
|
#define POKEPLATINUM_GOODS_H
|
|
|
|
#include "generated/goods.h"
|
|
|
|
u8 Good_GetWidth(enum Good goodID);
|
|
u8 Good_GetDepth(enum Good goodID);
|
|
const u8 *Good_GetCollision(enum Good goodID);
|
|
u8 Good_GetSpherePriceType(enum Good goodID);
|
|
u8 Good_GetSpherePriceMinSize(enum Good goodID);
|
|
u8 Good_GetSpherePriceMaxSize(enum Good goodID);
|
|
int Good_GetMoneyPrice(enum Good goodID);
|
|
int Good_GetInteractMessageID(enum Good goodID);
|
|
BOOL Good_IsNatDexRequired(enum Good goodID);
|
|
BOOL Good_IsUngiftable(enum Good goodID);
|
|
|
|
#endif // POKEPLATINUM_GOODS_H
|