summaryrefslogtreecommitdiff
path: root/src/constants.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants.rs')
-rw-r--r--src/constants.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/constants.rs b/src/constants.rs
index 94be135..344c55b 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -178,5 +178,12 @@ pub const MOVE_SCORE: i32 = 5;
pub const INVALID_COMMAND_SCORE_PENALTY: i32 = 4;
pub const STARTING_BOMBS: u8 = 3;
+pub const STARTING_SNOWBALLS: u8 = 3;
-pub const COLLISSION_DAMAGE: i32 = 20;
+pub const COLLISION_DAMAGE: i32 = 20;
+
+pub const LAVA_DAMAGE: i32 = 3;
+
+pub const LAVA_ROUND_START: u16 = 100;
+pub const LAVA_ROUND_END: u16 = 350;
+pub const MAX_ROUNDS: u16 = 400;