40 lines
777 B
Rust
40 lines
777 B
Rust
use std::collections::HashMap;
|
|
|
|
use ::serde::Deserialize;
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
pub struct Item {
|
|
pub name: String,
|
|
pub renderable: Option<Renderable>,
|
|
pub consumable: Option<Consumable>,
|
|
pub weapon: Option<Weapon>,
|
|
pub wearable: Option<Wearable>,
|
|
}
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
pub struct Renderable {
|
|
pub glyph: String,
|
|
pub fg: String,
|
|
pub bg: String,
|
|
pub order: i32,
|
|
}
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
pub struct Consumable {
|
|
pub effects: HashMap<String, String>,
|
|
}
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
pub struct Weapon {
|
|
pub range: String,
|
|
pub attribute: String,
|
|
pub base_damage: String,
|
|
pub hit_bonus: i32,
|
|
}
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
pub struct Wearable {
|
|
pub armor_class: f32,
|
|
pub slot: String,
|
|
}
|