pokeemerald/include/pokeball.h

45 lines
1.1 KiB
C
Raw Normal View History

2017-10-22 18:43:15 +02:00
#ifndef GUARD_POKEBALL_H
#define GUARD_POKEBALL_H
2017-12-02 20:38:26 +01:00
enum
{
BALL_POKE,
BALL_GREAT,
BALL_SAFARI,
BALL_ULTRA,
BALL_MASTER,
BALL_NET,
BALL_DIVE,
BALL_NEST,
BALL_REPEAT,
BALL_TIMER,
BALL_LUXURY,
BALL_PREMIER,
POKEBALL_COUNT
};
2017-12-02 19:39:07 +01:00
enum {
BALL_AFFINE_ANIM_0,
BALL_ROTATE_RIGHT,
BALL_ROTATE_LEFT,
BALL_AFFINE_ANIM_3,
BALL_AFFINE_ANIM_4
};
2021-11-01 06:42:02 +01:00
extern const struct CompressedSpriteSheet gBallSpriteSheets[];
extern const struct CompressedSpritePalette gBallSpritePalettes[];
2018-08-15 06:56:11 +02:00
extern const struct SpriteTemplate gBallSpriteTemplates[];
2017-12-02 19:39:07 +01:00
#define POKEBALL_PLAYER_SENDOUT 0xFF
#define POKEBALL_OPPONENT_SENDOUT 0xFE
u8 DoPokeballSendOutAnimation(s16 pan, u8 kindOfThrow);
2018-09-01 18:36:08 +02:00
void CreatePokeballSpriteToReleaseMon(u8 monSpriteId, u8 battler, u8 x, u8 y, u8 oamPriority, u8 subpriortiy, u8 g, u32 h, u16 species);
2019-10-09 11:56:44 +02:00
u8 CreateTradePokeballSprite(u8 a, u8 b, u8 x, u8 y, u8 oamPriority, u8 subPriority, u8 g, u32 h);
2021-01-23 02:03:21 +01:00
void StartHealthboxSlideIn(u8 battler);
2018-09-01 18:36:08 +02:00
void DoHitAnimHealthboxEffect(u8 battler);
2017-12-02 21:27:00 +01:00
void LoadBallGfx(u8 ballId);
void FreeBallGfx(u8 ballId);
2017-10-22 18:43:15 +02:00
#endif // GUARD_POKEBALL_H