pokeemerald-expansion/include/constants/pokeball.h
FosterProgramming e5b2492b8d
Some checks are pending
CI / build (push) Waiting to run
CI / docs_validate (push) Waiting to run
CI / allcontributors (push) Waiting to run
createmon uses enum Pokeball instead of Item (#9281)
Co-authored-by: Alex <93446519+AlexOn1ine@users.noreply.github.com>
2026-02-25 21:10:57 +01:00

38 lines
724 B
C

#ifndef GUARD_CONSTANTS_POKEBALL_H
#define GUARD_CONSTANTS_POKEBALL_H
enum PokeBall
{
BALL_STRANGE = 0,
BALL_POKE = 1,
BALL_GREAT = 2,
BALL_ULTRA = 3,
BALL_MASTER = 4,
BALL_PREMIER = 5,
BALL_HEAL = 6,
BALL_NET = 7,
BALL_NEST = 8,
BALL_DIVE = 9,
BALL_DUSK = 10,
BALL_TIMER = 11,
BALL_QUICK = 12,
BALL_REPEAT = 13,
BALL_LUXURY = 14,
BALL_LEVEL = 15,
BALL_LURE = 16,
BALL_MOON = 17,
BALL_FRIEND = 18,
BALL_LOVE = 19,
BALL_FAST = 20,
BALL_HEAVY = 21,
BALL_DREAM = 22,
BALL_SAFARI = 23,
BALL_SPORT = 24,
BALL_PARK = 25,
BALL_BEAST = 26,
BALL_CHERISH = 27,
POKEBALL_COUNT
};
#endif // GUARD_CONSTANTS_POKEBALL_H