mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-09 04:11:55 -05:00
28 lines
502 B
C
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
|