mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-19 00:42:37 -05:00
* 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
20 lines
377 B
C
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
|