Skip to content

Commit

Permalink
Mattock longsword balance changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Mar 30, 2016
1 parent 3f4ab79 commit ff716e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public LongSword() {

@Override
public float damagePotential() {
return 1.1f;
return 1.13f;
}

@Override
Expand Down Expand Up @@ -77,8 +77,8 @@ public void onPlayerStoppedUsing(ItemStack stack, World world, EntityPlayer play
@Override
public NBTTagCompound buildTag(List<Material> materials) {
ToolNBT data = buildDefaultTag(materials);
// 2 base damage, like vanilla swords
data.attack -= 1.5f;
// a bit less base damage, but it has better scaling
data.attack += 1f;
data.attack = Math.max(1f, data.attack);
return data.get();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public float miningSpeedModifier() {

@Override
public float damagePotential() {
return 0.95f;
return 0.90f;
}

@Override
Expand Down

0 comments on commit ff716e6

Please sign in to comment.