rusty_flagon_lib 1.0.0

A library for character generation for OSE Classic roleplaying game
Documentation
//! Implementations of the structs and traits.
/// Implements the builder's ability score generation.
pub mod builder_abilities;
/// Implements the builder's armor class calculation.
pub mod builder_ac;
/// Implements the builder's alignment generation.
pub mod builder_alignment;
/// Implements the builder's build process.
pub mod builder_build;
/// Implements the builder's class selection.
pub mod builder_class;
/// Implements the builder's equipment selection.
pub mod builder_equipment;
/// Implements the builder's hit point calculation.
pub mod builder_hit_points;
/// Implements the builder's modifier calculation.
pub mod builder_modifiers;
/// Implements the builder's name generation.
pub mod builder_name;
/// Implements the builder's new function.
pub mod builder_new;
/// Implements the builder's saving throw calculation.
pub mod builder_saving_throws;
/// Implements the builder's starting gold calculation.
pub mod builder_starting_gold;
/// Implements the builder's THAC0 calculation.
pub mod builder_thac0;
/// Implements the character's display format.
pub mod character_display;
/// Implements the roller's 3d6 roll.
pub mod roller_3d6;
/// Implements the roller's dx roll.
pub mod roller_dx;
/// Implements the roller's new function.
pub mod roller_new;
/// Implements the roller's ydx roll.
pub mod roller_ydx;