2018-01-29 16:46:56 +01:00
|
|
|
#ifndef GUARD_CONSTANTS_WEATHER_H
|
|
|
|
#define GUARD_CONSTANTS_WEATHER_H
|
|
|
|
|
2019-12-02 01:19:47 +01:00
|
|
|
#define WEATHER_NONE 0
|
|
|
|
#define WEATHER_SUNNY_CLOUDS 1
|
|
|
|
#define WEATHER_SUNNY 2
|
|
|
|
#define WEATHER_RAIN 3
|
2019-12-06 19:25:45 +01:00
|
|
|
#define WEATHER_SNOW 4 // Unused
|
2019-12-02 01:19:47 +01:00
|
|
|
#define WEATHER_RAIN_THUNDERSTORM 5
|
|
|
|
#define WEATHER_FOG_HORIZONTAL 6
|
|
|
|
#define WEATHER_VOLCANIC_ASH 7
|
|
|
|
#define WEATHER_SANDSTORM 8
|
2019-12-06 19:25:45 +01:00
|
|
|
#define WEATHER_FOG_DIAGONAL 9 // Unused
|
|
|
|
#define WEATHER_UNDERWATER 10 // Unused
|
|
|
|
#define WEATHER_SHADE 11 // Original name was closer to WEATHER_CLOUDY/OVERCAST
|
2019-12-02 01:19:47 +01:00
|
|
|
#define WEATHER_DROUGHT 12
|
|
|
|
#define WEATHER_DOWNPOUR 13
|
|
|
|
#define WEATHER_UNDERWATER_BUBBLES 14
|
2019-12-06 20:16:07 +01:00
|
|
|
#define WEATHER_ABNORMAL 15 // The alternating weather during Groudon/Kyogre conflict
|
2019-12-02 01:19:47 +01:00
|
|
|
#define WEATHER_ROUTE119_CYCLE 20
|
|
|
|
#define WEATHER_ROUTE123_CYCLE 21
|
2018-01-29 16:46:56 +01:00
|
|
|
|
|
|
|
// These are used in maps' coord_weather_event entries.
|
|
|
|
// They are not a one-to-one mapping with the engine's
|
|
|
|
// internal weather constants above.
|
2019-12-02 01:19:47 +01:00
|
|
|
#define COORD_EVENT_WEATHER_SUNNY_CLOUDS 1
|
|
|
|
#define COORD_EVENT_WEATHER_SUNNY 2
|
|
|
|
#define COORD_EVENT_WEATHER_RAIN 3
|
|
|
|
#define COORD_EVENT_WEATHER_SNOW 4
|
|
|
|
#define COORD_EVENT_WEATHER_RAIN_THUNDERSTORM 5
|
|
|
|
#define COORD_EVENT_WEATHER_FOG_HORIZONTAL 6
|
|
|
|
#define COORD_EVENT_WEATHER_FOG_DIAGONAL 7
|
|
|
|
#define COORD_EVENT_WEATHER_VOLCANIC_ASH 8
|
|
|
|
#define COORD_EVENT_WEATHER_SANDSTORM 9
|
2019-12-06 08:27:58 +01:00
|
|
|
#define COORD_EVENT_WEATHER_SHADE 10
|
2019-12-02 01:19:47 +01:00
|
|
|
#define COORD_EVENT_WEATHER_DROUGHT 11
|
|
|
|
#define COORD_EVENT_WEATHER_ROUTE119_CYCLE 20
|
|
|
|
#define COORD_EVENT_WEATHER_ROUTE123_CYCLE 21
|
2018-01-29 16:46:56 +01:00
|
|
|
|
2019-12-02 01:19:47 +01:00
|
|
|
// These are the "abnormal weather events" that are used
|
2019-02-27 09:42:04 +01:00
|
|
|
// to find Kyogre and Groudon.
|
2019-12-02 01:19:47 +01:00
|
|
|
#define ABNORMAL_WEATHER_COUNT_PER_LEGENDARY 8
|
|
|
|
#define ABNORMAL_WEATHER_GROUDON_LOCATIONS_START 1
|
|
|
|
#define ABNORMAL_WEATHER_KYOGRE_LOCATIONS_START 1 + ABNORMAL_WEATHER_COUNT_PER_LEGENDARY
|
2019-02-27 09:42:04 +01:00
|
|
|
|
2019-12-02 01:19:47 +01:00
|
|
|
#define ABNORMAL_WEATHER_NONE 0
|
2019-02-27 09:42:04 +01:00
|
|
|
// Groudon locations
|
2019-12-02 01:19:47 +01:00
|
|
|
#define ABNORMAL_WEATHER_ROUTE_114_NORTH 1
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_114_SOUTH 2
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_115_WEST 3
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_115_EAST 4
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_116_NORTH 5
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_116_SOUTH 6
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_118_EAST 7
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_118_WEST 8
|
2019-02-27 09:42:04 +01:00
|
|
|
// Kyogre locations
|
2019-12-02 01:19:47 +01:00
|
|
|
#define ABNORMAL_WEATHER_ROUTE_105_NORTH 9
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_105_SOUTH 10
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_125_WEST 11
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_125_EAST 12
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_127_NORTH 13
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_127_SOUTH 14
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_129_WEST 15
|
|
|
|
#define ABNORMAL_WEATHER_ROUTE_129_EAST 16
|
2019-02-27 09:42:04 +01:00
|
|
|
|
2018-01-29 16:46:56 +01:00
|
|
|
#endif // GUARD_CONSTANTS_WEATHER_H
|