pokeheartgold/include/constants/weather.h
2025-02-12 05:50:50 +00:00

23 lines
724 B
C

#ifndef POKEHEARTGOLD_CONSTANTS_WEATHER_H
#define POKEHEARTGOLD_CONSTANTS_WEATHER_H
// NOTE: this file contains partial constants for weather
// TODO: find all of them and implement
#define WEATHER_SUNNY 0
#define WEATHER_RAIN 1
#define WEATHER_HEAVY_RAIN 2
#define WEATHER_THUNDERSTORM 3
#define WEATHER_UNKNOWN_4 4 // WEATHER_STORM?
#define WEATHER_SNOW 5
#define WEATHER_BLIZZARD 6
#define WEATHER_SANDSTORM 7
#define WEATHER_DIAMOND_DUST 8
#define WEATHER_UNKNOWN_9 9 // WEATHER_MIST_1?
#define WEATHER_UNKNOWN_10 10 // WEATHER_MIST_2?
#define WEATHER_FLASH 11
#define WEATHER_FLASH_2 12
#define WEATHER_LOW_LIGHT 13
#endif // POKEHEARTGOLD_CONSTANTS_WEATHER_H