Crate rpgstat[][src]

Expand description

RPG Stat library

Documentation Crates.io

Stats

The Stats are broken down into categories Basic, Normal, and Advanced

This allows you to run:

use crate rpgstat::stats::Basic as Stats
// more stuff
fn my_fun () {
    let b = Stats::default();
    // whatever
}

Classes

The Classes are broken down into categories Basic, Normal, and Advanced

This allows you to run:

use crate rpgstat::class::Basic as Class
// more stuff
fn my_fun () {
    let b = Class::default();
    // whatever
}

Creatures

This contains all manner of creatures. We have Animal creatures, Hero creatures, and more will come!

Modules

Character Class

Creature Types

Stats