summaryrefslogtreecommitdiff
path: root/include/constants/mevent.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/constants/mevent.h')
-rw-r--r--include/constants/mevent.h40
1 files changed, 34 insertions, 6 deletions
diff --git a/include/constants/mevent.h b/include/constants/mevent.h
index 3478816fd..d659ffb14 100644
--- a/include/constants/mevent.h
+++ b/include/constants/mevent.h
@@ -1,18 +1,46 @@
#ifndef GUARD_CONSTANTS_MEVENT_H
#define GUARD_CONSTANTS_MEVENT_H
-// mevent2.c
-#define GET_NUM_STAMPS 0
-#define GET_MAX_STAMPS 1
+#define GET_NUM_STAMPS 0
+#define GET_MAX_STAMPS 1
#define GET_CARD_BATTLES_WON 2
+#define GET_CARD_BATTLE_LOST 3
+#define GET_CARD_NUM_TRADES 4
-#define GET_NUM_STAMPS_INTERNAL 3
-#define GET_MAX_STAMPS_INTERNAL 4
-#define GET_CARD_BATTLES_WON_INTERNAL 0
+#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
+
+#define CARD_TYPE_GIFT 0
+#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
+
+#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
#define REQUIRED_CARD_BATTLES 3
+#define MAX_CARD_STAMPS 7
+
+// 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
+
// Number of different types/colors of Wonder Card and News backgrounds
#define NUM_WONDER_BGS 8
+#define MAX_WONDER_CARD_STAT 999
+
+#define WONDER_CARD_FLAG_OFFSET 1000
+
#endif //GUARD_MEVENT_H