From 06f66649967a09cb76f5d4efd1e41b7eaf67ed5b Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 15 Nov 2025 19:36:22 -0500 Subject: zombie texture --- dungeon/src/entity.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dungeon/src/entity.rs') diff --git a/dungeon/src/entity.rs b/dungeon/src/entity.rs index 7c16418..ced7656 100644 --- a/dungeon/src/entity.rs +++ b/dungeon/src/entity.rs @@ -55,9 +55,9 @@ impl EntityKind { /// Returns the move speed value for this type of entity in tiles/s pub const fn move_speed(&self) -> f32 { match &self { - Self::Player => 5., - Self::Zombie(_) => 4., - _ => 0., + Self::Player => 3.5, + Self::Zombie(_) => 2.0, + _ => 0.0, } } } -- cgit v1.2.3-freya