battler-data 0.2.0

Data objects for battler.
Documentation
mod color;
mod event;
mod evolution;
mod gender;
mod learnset;
mod leveling_rate;
mod nature;
mod shiny_chance;
mod species_data;
mod species_flag;
mod stat;
mod r#type;

pub use color::Color;
pub use event::EventData;
pub use evolution::{
    EvolutionData,
    EvolutionMethod,
};
pub use gender::Gender;
pub use learnset::{
    LearnSet,
    MoveSource,
};
pub use leveling_rate::LevelingRate;
pub use nature::Nature;
pub use shiny_chance::ShinyChance;
pub use species_data::SpeciesData;
pub use species_flag::SpeciesFlag;
pub use stat::{
    PartialStatTable,
    Stat,
    StatMap,
    StatTable,
    StatTableEntries,
};
pub use r#type::{
    Type,
    TypeChart,
    TypeEffectiveness,
    TypeTable,
};