mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-24 23:07:39 -05:00
18 lines
428 B
C
18 lines
428 B
C
#ifndef GUARD_CONSTANTS_TRAINER_CARD_H
|
|
#define GUARD_CONSTANTS_TRAINER_CARD_H
|
|
|
|
#define TRAINER_CARD_PROFILE_LENGTH 4
|
|
#define TRAINER_CARD_STICKER_TYPES 3
|
|
|
|
#define CARD_TYPE_FRLG 0
|
|
#define CARD_TYPE_RSE 1
|
|
|
|
#define MON_ICON_TINT_NORMAL 0
|
|
#define MON_ICON_TINT_BLACK 1
|
|
#define MON_ICON_TINT_PINK 2
|
|
#define MON_ICON_TINT_SEPIA 3
|
|
|
|
#define NUM_LINK_TRAINER_CARD_CLASSES 8
|
|
|
|
#endif // GUARD_CONSTANTS_TRAINER_CARD_H
|