forked from pret/pokefirered
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef GUARD_CONSTANTS_WEATHER_H | ||
#define GUARD_CONSTANTS_WEATHER_H | ||
|
||
#define WEATHER_NONE 0 | ||
#define WEATHER_SUNNY_CLOUDS 1 // unused | ||
#define WEATHER_SUNNY 2 | ||
#define WEATHER_RAIN 3 // unused | ||
#define WEATHER_SNOW 4 // unused | ||
#define WEATHER_RAIN_THUNDERSTORM 5 // unused | ||
#define WEATHER_FOG_HORIZONTAL 6 | ||
#define WEATHER_VOLCANIC_ASH 7 // unused | ||
#define WEATHER_SANDSTORM 8 // unused | ||
#define WEATHER_FOG_DIAGONAL 9 // unused | ||
#define WEATHER_UNDERWATER 10 // unused | ||
#define WEATHER_CLOUDY 11 | ||
#define WEATHER_DROUGHT 12 // unused and broken in overworld | ||
#define WEATHER_DOWNPOUR 13 // unused | ||
#define WEATHER_UNDERWATER_BUBBLES 14 // unused | ||
|
||
#endif // GUARD_CONSTANTS_WEATHER_H |