mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
14 lines
628 B
C
14 lines
628 B
C
#ifndef POKEPLATINUM_ITEM_USE_POKEMON_H
|
|
#define POKEPLATINUM_ITEM_USE_POKEMON_H
|
|
|
|
#include "party.h"
|
|
#include "pokemon.h"
|
|
|
|
u8 Pokemon_CheckItemEffects(Pokemon *mon, u16 itemId, u16 moveSlot, enum HeapID heapID);
|
|
u8 Pokemon_ApplyItemEffects(Pokemon *mon, u16 itemId, u16 moveSlot, u16 location, enum HeapID heapID);
|
|
u8 Party_CheckItemEffectsOnMember(Party *party, u16 itemId, u8 partySlot, u8 moveSlot, enum HeapID heapID);
|
|
u8 Party_ApplyItemEffectsToMember(Party *party, u16 itemId, u8 partySlot, u8 moveSlot, u16 location, enum HeapID heapID);
|
|
void Party_HealAllMembers(Party *party);
|
|
|
|
#endif // POKEPLATINUM_ITEM_USE_POKEMON_H
|