summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/constants/weather.h2
-rw-r--r--include/dungeon_entity.h3
-rw-r--r--include/status_checker.h10
3 files changed, 14 insertions, 1 deletions
diff --git a/include/constants/weather.h b/include/constants/weather.h
index e7225b9..2a8cf42 100644
--- a/include/constants/weather.h
+++ b/include/constants/weather.h
@@ -4,7 +4,7 @@
#define WEATHER_CLEAR 0
#define WEATHER_SUNNY 1
#define WEATHER_SANDSTORM 2
-#define WEATHER_CLOUDY` 3
+#define WEATHER_CLOUDY 3
#define WEATHER_RAIN 4
#define WEATHER_HAIL 5
#define WEATHER_FOG 6
diff --git a/include/dungeon_entity.h b/include/dungeon_entity.h
index 9e9f1f7..2567f79 100644
--- a/include/dungeon_entity.h
+++ b/include/dungeon_entity.h
@@ -6,6 +6,9 @@
#include "item.h"
#include "position.h"
+#define MAX_STAT_STAGE 20
+#define MAX_MOVEMENT_SPEED 4
+#define MAX_STOCKPILE_COUNT 3
#define NUM_SPEED_TURN_COUNTERS 5
struct DungeonActionContainer
diff --git a/include/status_checker.h b/include/status_checker.h
new file mode 100644
index 0000000..1b65030
--- /dev/null
+++ b/include/status_checker.h
@@ -0,0 +1,10 @@
+#ifndef GUARD_STATUS_CHECKER_H
+#define GUARD_STATUS_CHECKER_H
+
+#include "constants/move.h"
+#include "dungeon_entity.h"
+
+// 0x5C498
+bool8 CanUseOnSelfWithStatusChecker(struct DungeonEntity *pokemon, struct PokemonMove *move);
+
+#endif