rusty_uma_extractor 0.1.0

A set of useful utility modules for applications developed to be used with the game Umamusume: Pretty Derby.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![crate_name = "rusty_uma_extractor"]

//! # Rusty Uma Extractor
//! 
//! This crate is an attempt to combine the popular software tools (such as `UmaExtractor` and `umamusu-utils`) for the game "Umamusume: Pretty Derby" into
//! an easy to use and intuitive package as a base for other development projects around building tools and software around aspects of the game.

pub use self::vet_extractor::trained_character;
pub use self::vet_extractor::roster_extractor;
pub use self::data_extractor::database;
pub use self::data_extractor::data_structures;


/// Module for exporting veteran roster data.
pub mod vet_extractor;

/// Set of tools for pulling various data and assets from the game's `master.mdb` files
pub mod data_extractor;