Skip to content

Commit

Permalink
update NetherKnight default config
Browse files Browse the repository at this point in the history
  • Loading branch information
tristankechlo committed Nov 9, 2024
1 parent b8c73d1 commit 0e1f25b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0e1f25b

Please sign in to comment.