adjust monster speed
This commit is contained in:
parent
970904c411
commit
a7195b9c3d
|
@ -93,7 +93,7 @@ impl crate::monster::LowerDaemon {
|
|||
symbol: String::from("d"),
|
||||
color: Color::Black,
|
||||
experience_gain: 104,
|
||||
ticks_between_steps: 5,
|
||||
ticks_between_steps: 30,
|
||||
monster_stats,
|
||||
}
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ impl Rat {
|
|||
symbol: String::from("R"),
|
||||
color: Color::Black,
|
||||
experience_gain: 26,
|
||||
ticks_between_steps: 5,
|
||||
ticks_between_steps: 25,
|
||||
monster_stats,
|
||||
}
|
||||
}
|
||||
|
@ -214,7 +214,7 @@ impl Orc {
|
|||
symbol: String::from("O"),
|
||||
color: Color::DarkGray,
|
||||
experience_gain: 63,
|
||||
ticks_between_steps: 10,
|
||||
ticks_between_steps: 50,
|
||||
monster_stats,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue