summaryrefslogtreecommitdiff
path: root/include/status.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/status.h')
-rw-r--r--include/status.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/status.h b/include/status.h
new file mode 100644
index 0000000..21ff6fd
--- /dev/null
+++ b/include/status.h
@@ -0,0 +1,13 @@
+#ifndef GUARD_STATUS_H
+#define GUARD_STATUS_H
+
+#include "dungeon_entity.h"
+
+#define FLASH_FIRE_STATUS_NONE 0
+#define FLASH_FIRE_STATUS_MAXED 1
+#define FLASH_FIRE_STATUS_NOT_MAXED 2
+
+// 0x7723C
+u8 GetFlashFireStatus(struct DungeonEntity *pokemon);
+
+#endif