2021-10-17 09:00:48 +02:00
|
|
|
#ifndef GUARD_CONSTANTS_MYSTERY_GIFT_H
|
|
|
|
#define GUARD_CONSTANTS_MYSTERY_GIFT_H
|
2019-11-05 21:08:07 +01:00
|
|
|
|
2021-10-15 18:56:14 +02:00
|
|
|
#define GET_NUM_STAMPS 0
|
|
|
|
#define GET_MAX_STAMPS 1
|
2019-11-05 21:08:07 +01:00
|
|
|
#define GET_CARD_BATTLES_WON 2
|
2021-10-21 22:54:16 +02:00
|
|
|
#define GET_CARD_BATTLES_LOST 3
|
2021-10-15 18:56:14 +02:00
|
|
|
#define GET_CARD_NUM_TRADES 4
|
2019-11-05 21:08:07 +01:00
|
|
|
|
2021-10-15 18:56:14 +02:00
|
|
|
#define CARD_STAT_BATTLES_WON 0
|
|
|
|
#define CARD_STAT_BATTLES_LOST 1
|
|
|
|
#define CARD_STAT_NUM_TRADES 2
|
|
|
|
#define CARD_STAT_NUM_STAMPS 3
|
|
|
|
#define CARD_STAT_MAX_STAMPS 4
|
|
|
|
|
2021-10-17 07:35:26 +02:00
|
|
|
// Values for the type field of Wonder Card
|
2021-10-17 07:15:16 +02:00
|
|
|
#define CARD_TYPE_GIFT 0 // Normal "Wonder Card"
|
2021-10-15 18:56:14 +02:00
|
|
|
#define CARD_TYPE_STAMP 1 // "Stamp Card"
|
|
|
|
#define CARD_TYPE_LINK_STAT 2 // Referred to as the "Battle Card", shows battle and trade stats
|
|
|
|
#define CARD_TYPE_COUNT 3
|
|
|
|
|
2021-10-17 07:35:26 +02:00
|
|
|
// Values for the sendType field of Wonder Card/News
|
2021-10-15 18:56:14 +02:00
|
|
|
#define SEND_TYPE_DISALLOWED 0
|
|
|
|
#define SEND_TYPE_ALLOWED 1
|
|
|
|
#define SEND_TYPE_ALLOWED_ALWAYS 2
|
|
|
|
|
|
|
|
// Return values for MysteryGift_CompareCardFlags, handled by gMysteryGiftServerScript_SendWonderCard
|
|
|
|
#define HAS_NO_CARD 0
|
|
|
|
#define HAS_SAME_CARD 1
|
|
|
|
#define HAS_DIFF_CARD 2
|
2019-11-05 21:08:07 +01:00
|
|
|
|
2021-10-17 07:35:26 +02:00
|
|
|
// The number of battles needed to be recorded on a Battle Card to win a prize
|
2019-11-05 21:08:07 +01:00
|
|
|
#define REQUIRED_CARD_BATTLES 3
|
|
|
|
|
2021-10-15 18:56:14 +02:00
|
|
|
// Stamps are 32 bits. The first 16 bits are the species
|
|
|
|
// and the second 16 bits are a number (presumably an ID of some kind)
|
|
|
|
#define STAMP_SPECIES 0
|
|
|
|
#define STAMP_ID 1
|
|
|
|
|
2021-10-14 18:12:16 +02:00
|
|
|
// Number of different types/colors of Wonder Card and News backgrounds
|
|
|
|
#define NUM_WONDER_BGS 8
|
|
|
|
|
2021-10-15 18:56:14 +02:00
|
|
|
#define MAX_WONDER_CARD_STAT 999
|
|
|
|
|
|
|
|
#define WONDER_CARD_FLAG_OFFSET 1000
|
|
|
|
|
2021-10-17 09:00:48 +02:00
|
|
|
#endif //GUARD_CONSTANTS_MYSTERY_GIFT_H
|