mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-08 10:25:33 -05:00
16 lines
799 B
C
16 lines
799 B
C
#ifndef GUARD_MOVE_ORB_ACTIONS_5_H
|
|
#define GUARD_MOVE_ORB_ACTIONS_5_H
|
|
|
|
#include "structs/dungeon_entity.h"
|
|
|
|
bool8 FillInOrbAction(Entity *pokemon,Entity *target, Move *move, s32 param_4);
|
|
bool8 ItemizeOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
bool8 HurlOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
bool8 MobileOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
bool8 StairsOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
bool8 LongtossOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
bool8 PierceOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
bool8 TrapperOrbAction(Entity *pokemon, Entity *target, Move *move, s32 param_4);
|
|
|
|
#endif /* ifndef MOVE_ORB_ACTIONS_5_H */
|