pokeheartgold/include/diamond_dust.h
2022-03-16 10:30:29 -04:00

31 lines
562 B
C

#ifndef POKEHEARTGOLD_DIAMOND_DUST_H
#define POKEHEARTGOLD_DIAMOND_DUST_H
#include "save.h"
#include "sav_system_info.h"
#include "script.h"
#define JANUARY 1
#define FEBRUARY 2
#define MARCH 3
#define APRIL 4
#define MAY 5
#define JUNE 6
#define JULY 7
#define AUGUST 8
#define SEPTEMBER 9
#define OCTOBER 10
#define NOVEMBER 11
#define DECEMBER 12
#define MAP_WEATHER_DIAMOND_DUST 8
typedef struct MonthDay {
u8 month;
u8 day;
} MonthDay;
u32 Fsys_GetWeather_HandleDiamondDust(FieldSystem* fsys, u32 mapId);
#endif //POKEHEARTGOLD_DIAMOND_DUST_H