summaryrefslogtreecommitdiff
path: root/src/constants.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants.rs')
-rw-r--r--src/constants.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/constants.rs b/src/constants.rs
index d796e57..1c2b8a1 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -156,6 +156,7 @@ impl MapRow {
}
}
+pub const BOMB_RANGE: i8 = 5;
pub const BOMB_DAMAGED_SPACES: usize = 13;
pub const BOMB_DAMAGES: [(Vec2d<i8>, i32); BOMB_DAMAGED_SPACES] = [
(Vec2d::new(0, -2), 7),
@@ -173,6 +174,7 @@ pub const BOMB_DAMAGES: [(Vec2d<i8>, i32); BOMB_DAMAGED_SPACES] = [
(Vec2d::new(0, 0), 20),
];
+pub const SNOWBALL_RANGE: i8 = 5;
pub const SNOWBALL_FREEZES_SPACES: usize = 9;
pub const SNOWBALL_FREEZES: [Vec2d<i8>; SNOWBALL_FREEZES_SPACES] = [
Vec2d::new(-1, -1),