adjust monster speed

This commit is contained in:
Joachim Lusiardi 2024-01-19 10:39:15 +01:00
parent 970904c411
commit a7195b9c3d
1 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ impl crate::monster::LowerDaemon {
symbol: String::from("d"), symbol: String::from("d"),
color: Color::Black, color: Color::Black,
experience_gain: 104, experience_gain: 104,
ticks_between_steps: 5, ticks_between_steps: 30,
monster_stats, monster_stats,
} }
} }
@ -156,7 +156,7 @@ impl Rat {
symbol: String::from("R"), symbol: String::from("R"),
color: Color::Black, color: Color::Black,
experience_gain: 26, experience_gain: 26,
ticks_between_steps: 5, ticks_between_steps: 25,
monster_stats, monster_stats,
} }
} }
@ -214,7 +214,7 @@ impl Orc {
symbol: String::from("O"), symbol: String::from("O"),
color: Color::DarkGray, color: Color::DarkGray,
experience_gain: 63, experience_gain: 63,
ticks_between_steps: 10, ticks_between_steps: 50,
monster_stats, monster_stats,
} }
} }