pokeheartgold/include/constants/balls.h
2021-10-22 14:46:05 -04:00

36 lines
1.1 KiB
C

#ifndef POKEHEARTGOLD_CONSTANTS_BALLS_H
#define POKEHEARTGOLD_CONSTANTS_BALLS_H
// OG balls
#define BALL_NONE 0
#define BALL_MASTER 1
#define BALL_ULTRA 2
#define BALL_GREAT 3
#define BALL_POKE 4
#define BALL_SAFARI 5
// Hoenn balls
#define BALL_NET 6
#define BALL_DIVE 7
#define BALL_NEST 8
#define BALL_REPEAT 9
#define BALL_TIMER 10
#define BALL_LUXURY 11
#define BALL_PREMIER 12
// Sinnoh balls
#define BALL_DUSK 13
#define BALL_HEAL 14
#define BALL_QUICK 15
#define BALL_CHERISH 16
// Apricorn balls
#define BALL_FAST 17
#define BALL_LEVEL 18
#define BALL_LURE 19
#define BALL_HEAVY 20
#define BALL_LOVE 21
#define BALL_FRIEND 22
#define BALL_MOON 23
#define BALL_SPORT 24
#define BALL_PARK 25
#endif //POKEHEARTGOLD_CONSTANTS_BALLS_H