2021-12-24 10:38:44 -05:00
|
|
|
use ::serde::Deserialize;
|
2021-12-23 12:31:03 -05:00
|
|
|
|
|
|
|
use super::item_structs::Renderable;
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct Mob {
|
|
|
|
pub name: String,
|
|
|
|
pub renderable: Option<Renderable>,
|
|
|
|
pub blocks_tile: bool,
|
|
|
|
pub stats: MobStats,
|
|
|
|
pub vision_range: i32,
|
2021-12-24 13:23:56 -05:00
|
|
|
pub ai: String,
|
2021-12-23 12:31:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct MobStats {
|
|
|
|
pub max_hp: i32,
|
|
|
|
pub hp: i32,
|
|
|
|
pub power: i32,
|
|
|
|
pub defense: i32,
|
|
|
|
}
|