From 9e8c0ddc5edeeeb02c4283a492729d2bcaba7444 Mon Sep 17 00:00:00 2001 From: Tristan Kechlo <66692834+tristankechlo@users.noreply.github.com> Date: Sat, 9 Nov 2024 12:16:46 +0100 Subject: [PATCH] update NetherKnight default config --- Changelog.md | 2 +- .../livingthings/config/entity/NetherKnightConfig.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 59364b5..f7d01f8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,7 @@ - change default values of the NetherKnight - lowered `weaponDropChance` from 100% to 15% - - increased health from 60 to 100 + - increased health from 60 (30 hearts) to 180 (90 hearts) - lowered spawnweight from 18 to 15 (spawns a little less) - only take effect for new or reset configurations => existing configs would need to be adjusted manually - update and create item/entity tags diff --git a/common/src/main/java/com/tristankechlo/livingthings/config/entity/NetherKnightConfig.java b/common/src/main/java/com/tristankechlo/livingthings/config/entity/NetherKnightConfig.java index a6a842b..97f5482 100644 --- a/common/src/main/java/com/tristankechlo/livingthings/config/entity/NetherKnightConfig.java +++ b/common/src/main/java/com/tristankechlo/livingthings/config/entity/NetherKnightConfig.java @@ -16,7 +16,7 @@ public final class NetherKnightConfig extends EntityConfig { private static final NetherKnightConfig INSTANCE = new NetherKnightConfig(); public final BooleanValue canAttack = new BooleanValue("canAttack", true); - public final DoubleValue health = new DoubleValue("health", 100.0D, MIN_HEALTH, MAX_HEALTH); + public final DoubleValue health = new DoubleValue("health", 180.0D, MIN_HEALTH, MAX_HEALTH); public final DoubleValue movementSpeed = new DoubleValue("movementSpeed", 0.26D, MIN_SPEED, MAX_SPEED); public final DoubleValue attackDamage = new DoubleValue("attackDamage", 10.0D, MIN_DAMAGE, MAX_DAMAGE); public final DoubleValue weaponDropChance = new DoubleValue("weaponDropChance", 15, 0, 100);