Skip to content

Commit

Permalink
Armor increase
Browse files Browse the repository at this point in the history
-Silver Skeleton: 11 > 14
-Turtle: 5 > 10
  • Loading branch information
IcarussOne committed Jan 5, 2024
1 parent c059b8c commit bca629d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected void initEntityAI() {
protected void applyEntityAttributes() {
super.applyEntityAttributes();
getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(25.0D);
getEntityAttribute(SharedMonsterAttributes.ARMOR).setBaseValue(11.0D);
getEntityAttribute(SharedMonsterAttributes.ARMOR).setBaseValue(14.0D);
this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.25D);
this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(7.0D);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected void initEntityAI() {
protected void applyEntityAttributes() {
super.applyEntityAttributes();
this.getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(10.0D);
this.getEntityAttribute(SharedMonsterAttributes.ARMOR).setBaseValue(5.0D);
this.getEntityAttribute(SharedMonsterAttributes.ARMOR).setBaseValue(10.0D);
this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.15D);
}

Expand Down

0 comments on commit bca629d

Please sign in to comment.