Add base_damage to entity template

This commit is contained in:
Daniel Lynn 2021-07-11 11:11:30 -05:00
parent 784ea918f4
commit e1d2bafd2e

View File

@ -14,6 +14,7 @@ pub struct Template {
pub glyph: char,
pub provides: Option<Vec<(String, i32)>>,
pub hp: Option<i32>,
pub base_damage: Option<i32>,
}
#[derive(Clone, Deserialize, Debug, PartialEq)]