summaryrefslogtreecommitdiff
path: root/src/constants.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-08-06 10:59:30 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-08-06 10:59:30 +0200
commit4d8846395fe12e6d92014da10f1e017267af0c57 (patch)
tree01a054d9286b58e102974a0794bbc0dc1c8e1ac2 /src/constants.rs
parentd23833847724620a8032bedb342d03b3b9184059 (diff)
Extra todos for snowball moves
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;