From 08ae31fb8b252ff8d384a77047b3a834c4b0203c Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Fri, 18 Jun 2021 22:04:58 +0300 Subject: [PATCH] tweak clay_golem HP --- common/src/comp/body.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index 72a2f4748f..df1500f996 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -511,7 +511,7 @@ impl Body { _ => 10000, }, Body::Golem(golem) => match golem.species { - golem::Species::ClayGolem => 7500, + golem::Species::ClayGolem => 4500, _ => 10000, }, Body::Theropod(theropod) => match theropod.species { @@ -676,7 +676,7 @@ impl Body { _ => 1.0, }, Body::Golem(g) => match g.species { - golem::Species::ClayGolem => 1.2, + golem::Species::ClayGolem => 2.0, _ => 1.0, }, _ => 1.0,