You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
524 B
Rust

use kartsimrust::{
character::create_character,
class::Class,
equipment::{Armor, WeaponType},
random_character::{random_stat_adjust, random_stat_choice},
};
fn main() {
let c = create_character(
"Callypigian".into(),
Class::Swashbuckler,
Class::Survivalist,
random_stat_choice(),
random_stat_adjust(),
Armor::Medium,
WeaponType::RangedWeapon.create_weapon(WeaponType::RangedWeapon.to_string()),
);
println!("{}", c)
}