Struct rgen3_save::Pokemon [] [src]

pub struct Pokemon {
    pub personality: u32,
    pub ot_id: u32,
    pub nickname: PokemonNick,
    pub ot_name: TrainerName,
    pub data: PokemonData,
    pub level: u8,
    pub current_hp: u16,
    pub total_hp: u16,
    pub attack: u16,
    pub defense: u16,
    pub speed: u16,
    pub sp_attack: u16,
    pub sp_defense: u16,
    // some fields omitted
}

A Pokemon.

Fields

Trait Implementations

impl Debug for Pokemon
[src]

Formats the value using the given formatter.

impl Default for Pokemon
[src]

Returns the "default value" for a type. Read more