From b3bba8aabb778b46aed618e37ab90af73b956f6d Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Mon, 6 Jul 2020 21:02:16 +0100 Subject: [PATCH] Made fireballs brighter, animals slightly more effective at combat --- common/src/comp/inventory/item/tool.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/src/comp/inventory/item/tool.rs b/common/src/comp/inventory/item/tool.rs index 5746370145..5ad3221484 100644 --- a/common/src/comp/inventory/item/tool.rs +++ b/common/src/comp/inventory/item/tool.rs @@ -350,7 +350,7 @@ impl Tool { }, projectile_body: Body::Object(object::Body::BoltFire), projectile_light: Some(LightEmitter { - col: (0.72, 0.11, 0.11).into(), + col: (1.0, 0.8, 0.11).into(), ..Default::default() }), @@ -375,7 +375,7 @@ impl Tool { }, projectile_body: Body::Object(object::Body::BoltFireBig), projectile_light: Some(LightEmitter { - col: (0.72, 0.11, 0.11).into(), + col: (1.0, 0.8, 0.11).into(), ..Default::default() }), @@ -448,9 +448,9 @@ impl Tool { energy_cost: 0, buildup_duration: Duration::from_millis(0), recover_duration: Duration::from_millis(1000), - base_healthchange: -2, - range: 3.5, - max_angle: 45.0, + base_healthchange: -3, + range: 5.0, + max_angle: 60.0, }], } }