Skip to content

Commit

Permalink
Tidesinger buff
Browse files Browse the repository at this point in the history
Signed-off-by: Noaaan <noaaan@hotmail.com>
  • Loading branch information
Noaaan committed Dec 4, 2023
1 parent 5745939 commit 3ace4a5
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 @@ -83,7 +83,7 @@ public enum MythicArmorMaterials implements ArmorMaterial {
STORMYX("stormyx", 30, new int[]{3, 6, 8, 3}, 20, RegisterSounds.EQUIP_STORMYX, 2.0F, 0.0F, () -> {
return Ingredient.ofItems(MythicItems.STORMYX.getIngot());
}),
TIDESINGER("tidesinger", 32, new int[]{3, 6, 7, 3}, 12, SoundEvents.ITEM_ARMOR_EQUIP_IRON, 1.0F, 0.0F, () -> {
TIDESINGER("tidesinger", 32, new int[]{3, 6, 8, 3}, 16, SoundEvents.ITEM_ARMOR_EQUIP_IRON, 2.0F, 0.0F, () -> {
return Ingredient.ofItems(MythicItems.AQUARIUM.getIngot());
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public enum MythicToolMaterials implements ToolMaterial {
STAR_PLATINUM(4, 1300, 9.0F, 4.0F, 18, () -> Ingredient.ofItems(MythicItems.STAR_PLATINUM.getIngot())),
STEEL(3, 700, 6.5F, 2.5F, 11, () -> Ingredient.ofItems(MythicItems.STEEL.getIngot())),
STORMYX(3, 1305, 8.5F, 3.5F, 20, () -> Ingredient.ofItems(MythicItems.STORMYX.getIngot())),
TIDESINGER(3, 1233, 7.5F, 3.0F, 16, () -> Ingredient.ofItems(MythicItems.AQUARIUM.getIngot()));
TIDESINGER(3, 1233, 8.5F, 3.0F, 16, () -> Ingredient.ofItems(MythicItems.AQUARIUM.getIngot()));

private final int miningLevel;
private final int itemDurability;
Expand Down

0 comments on commit 3ace4a5

Please sign in to comment.