pokeplatinum/include/struct_defs/mail.h
Eduardo Quezada 18ecf16d74
Document Daycare (#436)
* Identified Daycare struct + incense baby table

* Daycare params

* Daycare_CreateEgg

* TryGiveVoltTackle

* Better names

* DetermineEggSpeciesAndParentSlots

* Format

* GetParentsCompatibility

* Party_GetFirstEgg

* GetEggCyclesToSubtract

* Egg cycles

* Nature inheritence

* DaycareMon

* Better name for FieldSystem_GetDay

* Cleaner struct defs

* Store into daycare

* Daycare levels and price

* Daycare mon count

* DaycareMail

* Mail struct def

* MON_DATA_MAIL and Take mon from daycare

* IVs and Moves

* Utility functions

* More utility functions

* Review changes

* Renamed files
2025-03-22 03:16:18 -07:00

20 lines
377 B
C

#ifndef POKEPLATINUM_STRUCT_MAIL_H
#define POKEPLATINUM_STRUCT_MAIL_H
#include "struct_defs/sentence.h"
#include "struct_defs/union_02028328.h"
typedef struct {
u32 unk_00;
u8 unk_04;
u8 unk_05;
u8 unk_06;
u8 unk_07;
u16 unk_08[8];
UnkUnion_02028328 unk_18[3];
u16 unk_1E;
Sentence unk_20[3];
} Mail;
#endif // POKEPLATINUM_STRUCT_MAIL_H