PkmnLib_rs/src/static_data/species_data/mod.rs

23 lines
608 B
Rust
Raw Normal View History

#[doc(inline)]
2022-07-01 16:20:16 +00:00
pub use ability::*;
#[doc(inline)]
2022-07-01 16:20:16 +00:00
pub use form::*;
#[doc(inline)]
2022-07-01 16:20:16 +00:00
pub use gender::*;
#[doc(inline)]
2022-07-01 16:20:16 +00:00
pub use learnable_moves::*;
#[doc(inline)]
2022-07-01 16:20:16 +00:00
pub use species::*;
2022-07-01 16:20:16 +00:00
/// An ability is a passive effect in battle that is attached to a Pokemon.
mod ability;
2022-07-01 16:20:16 +00:00
/// A form is a variant of a specific species. A species always has at least one form, but can have
/// many more.
mod form;
2022-07-01 16:20:16 +00:00
/// Gender is a Pokemon characteristic.
mod gender;
2022-07-01 16:20:16 +00:00
/// This allows for storage of the moves a Pokemon can learn.
mod learnable_moves;
2022-07-01 16:20:16 +00:00
/// The data belonging to a Pokemon with certain characteristics.
mod species;