mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -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
17 lines
421 B
C
17 lines
421 B
C
#ifndef POKEPLATINUM_STRUCT_OV40_0225645C_1_H
|
|
#define POKEPLATINUM_STRUCT_OV40_0225645C_1_H
|
|
|
|
#include "constants/daycare.h"
|
|
|
|
typedef struct {
|
|
u8 unk_00;
|
|
u8 unk_01;
|
|
u32 unk_04[NUM_DAYCARE_MONS];
|
|
u32 unk_0C[NUM_DAYCARE_MONS];
|
|
u32 genders[NUM_DAYCARE_MONS];
|
|
u16 species[NUM_DAYCARE_MONS];
|
|
u16 forms[NUM_DAYCARE_MONS];
|
|
} UnkStruct_ov40_0225645C_1;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_OV40_0225645C_1_H
|