mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
67 lines
2.4 KiB
C
67 lines
2.4 KiB
C
#ifndef GUARD_CONSTANTS_WEATHER_H
|
|
#define GUARD_CONSTANTS_WEATHER_H
|
|
|
|
#define WEATHER_NONE 0
|
|
#define WEATHER_CLOUDS 1
|
|
#define WEATHER_SUNNY 2
|
|
#define WEATHER_RAIN_LIGHT 3
|
|
#define WEATHER_SNOW 4
|
|
#define WEATHER_RAIN_MED 5
|
|
#define WEATHER_FOG_1 6
|
|
#define WEATHER_ASH 7
|
|
#define WEATHER_SANDSTORM 8
|
|
#define WEATHER_FOG_2 9
|
|
#define WEATHER_FOG_3 10
|
|
#define WEATHER_SHADE 11
|
|
#define WEATHER_DROUGHT 12
|
|
#define WEATHER_RAIN_HEAVY 13
|
|
#define WEATHER_BUBBLES 14
|
|
#define WEATHER_ALTERNATING 15
|
|
#define WEATHER_ROUTE119_CYCLE 20
|
|
#define WEATHER_ROUTE123_CYCLE 21
|
|
|
|
// 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.
|
|
#define COORD_EVENT_WEATHER_CLOUDS 1
|
|
#define COORD_EVENT_WEATHER_SUNNY 2
|
|
#define COORD_EVENT_WEATHER_RAIN_LIGHT 3
|
|
#define COORD_EVENT_WEATHER_SNOW 4
|
|
#define COORD_EVENT_WEATHER_RAIN_MED 5
|
|
#define COORD_EVENT_WEATHER_FOG_1 6
|
|
#define COORD_EVENT_WEATHER_FOG_2 7
|
|
#define COORD_EVENT_WEATHER_ASH 8
|
|
#define COORD_EVENT_WEATHER_SANDSTORM 9
|
|
#define COORD_EVENT_WEATHER_SHADE 10
|
|
#define COORD_EVENT_WEATHER_DROUGHT 11
|
|
#define COORD_EVENT_WEATHER_ROUTE119_CYCLE 20
|
|
#define COORD_EVENT_WEATHER_ROUTE123_CYCLE 21
|
|
|
|
// These are the "unusual weather events" that are used
|
|
// to find Kyogre and Groudon.
|
|
#define UNUSUAL_WEATHER_COUNT_PER_LEGENDARY 8
|
|
#define UNUSUAL_WEATHER_GROUDON_LOCATIONS_START 1
|
|
#define UNUSUAL_WEATHER_KYOGRE_LOCATIONS_START 1 + UNUSUAL_WEATHER_COUNT_PER_LEGENDARY
|
|
|
|
#define UNUSUAL_WEATHER_NONE 0
|
|
// Groudon locations
|
|
#define UNUSUAL_WEATHER_ROUTE_114_NORTH 1
|
|
#define UNUSUAL_WEATHER_ROUTE_114_SOUTH 2
|
|
#define UNUSUAL_WEATHER_ROUTE_115_WEST 3
|
|
#define UNUSUAL_WEATHER_ROUTE_115_EAST 4
|
|
#define UNUSUAL_WEATHER_ROUTE_116_NORTH 5
|
|
#define UNUSUAL_WEATHER_ROUTE_116_SOUTH 6
|
|
#define UNUSUAL_WEATHER_ROUTE_118_EAST 7
|
|
#define UNUSUAL_WEATHER_ROUTE_118_WEST 8
|
|
// Kyogre locations
|
|
#define UNUSUAL_WEATHER_ROUTE_105_NORTH 9
|
|
#define UNUSUAL_WEATHER_ROUTE_105_SOUTH 10
|
|
#define UNUSUAL_WEATHER_ROUTE_125_WEST 11
|
|
#define UNUSUAL_WEATHER_ROUTE_125_EAST 12
|
|
#define UNUSUAL_WEATHER_ROUTE_127_NORTH 13
|
|
#define UNUSUAL_WEATHER_ROUTE_127_SOUTH 14
|
|
#define UNUSUAL_WEATHER_ROUTE_129_WEST 15
|
|
#define UNUSUAL_WEATHER_ROUTE_129_EAST 16
|
|
|
|
#endif // GUARD_CONSTANTS_WEATHER_H
|