pokeplatinum/include/applications/pc_boxes/pc_compare_mon.h
2025-12-14 10:36:00 -05:00

28 lines
502 B
C

#ifndef POKEPLATINUM_STRUCT_PC_COMPARE_MON_H
#define POKEPLATINUM_STRUCT_PC_COMPARE_MON_H
#include "string_gf.h"
typedef struct {
void *mon;
u16 species;
u8 isEgg;
u8 form;
u16 level;
u16 maxHP;
u16 attack;
u16 defense;
u16 spAttack;
u16 spDefense;
u16 speed;
u16 cool;
u16 beauty;
u16 cute;
u16 smart;
u16 tough;
u16 moves[4];
String *monName;
String *nature;
} PCCompareMon;
#endif // POKEPLATINUM_STRUCT_PC_COMPARE_MON_H