mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 20:17:38 +01:00
34 lines
708 B
C
34 lines
708 B
C
#ifndef GUARD_POKEBLOCK_H
|
|
#define GUARD_POKEBLOCK_H
|
|
|
|
enum
|
|
{
|
|
PBLOCK_CLR_BLACK,
|
|
PBLOCK_CLR_RED,
|
|
PBLOCK_CLR_BLUE,
|
|
PBLOCK_CLR_PINK,
|
|
PBLOCK_CLR_GREEN,
|
|
PBLOCK_CLR_YELLOW
|
|
};
|
|
|
|
enum
|
|
{
|
|
PBLOCK_COLOR,
|
|
PBLOCK_SPICY,
|
|
PBLOCK_DRY,
|
|
PBLOCK_SWEET,
|
|
PBLOCK_BITTER,
|
|
PBLOCK_SOUR,
|
|
PBLOCK_FEEL,
|
|
};
|
|
|
|
void ClearPokeblocks(void);
|
|
s8 GetFirstFreePokeblockSlot(void);
|
|
bool32 AddPokeblock(struct Pokeblock *pokeblock);
|
|
u8 GetHighestPokeblocksFlavorLevel(const struct Pokeblock *pokeblock);
|
|
u8 GetPokeblocksFeel(const struct Pokeblock *pokeblock);
|
|
u8 GetPokeblocksFlavor(const struct Pokeblock *pokeblock);
|
|
s16 PokeblockGetGain(u8, const struct Pokeblock *);
|
|
|
|
#endif // GUARD_POKEBLOCK_H
|