Skip to content

Commit

Permalink
Minor Copper and Quadrillum balancing changes
Browse files Browse the repository at this point in the history
- Increase the damage of copper tools slightly (+0.5 attack damage)
- Increase the mining speed of Copper tools slightly (4.5 -> 5.0)
- Increase the mining speed of Quadrillum tools slightly (5.5 -> 6.0)

Signed-off-by: Noaaan <noaaan@hotmail.com>
  • Loading branch information
Noaaan committed Mar 26, 2024
1 parent 4da5def commit 20eb75a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public enum MythicToolMaterials implements ToolMaterial {
CARMOT(3, 1130, 11.5F, 3.0F, 42, () -> Ingredient.ofItems(MythicItems.CARMOT.getIngot())),
CARMOT_STAFF(3, 1230, 11.5F, 2.0F, 40, () -> Ingredient.ofItems(MythicItems.CARMOT.getIngot())),
CELESTIUM(5, 2470, 25.0F, 6.0F, 26, () -> Ingredient.ofItems(MythicItems.CELESTIUM.getIngot())),
COPPER(1, 187, 4.5F, 1.0F, 8, () -> Ingredient.ofItems(Items.COPPER_INGOT)),
COPPER(1, 187, 5.0F, 1.5F, 8, () -> Ingredient.ofItems(Items.COPPER_INGOT)),
DURASTEEL(3, 820, 7.1F, 3.5F, 12, () -> Ingredient.ofItems(MythicItems.DURASTEEL.getIngot())),
GILDED_MIDAS_GOLD(3, 999, 13.0F, 4.0F, 30, () -> Ingredient.ofItems(MythicBlocks.MIDAS_GOLD.getStorageBlock().asItem())),
HALLOWED(4, 1984, 12.0F, 5.0F, 20, () -> Ingredient.ofItems(MythicItems.HALLOWED.getIngot())),
Expand All @@ -32,7 +32,7 @@ public enum MythicToolMaterials implements ToolMaterial {
OSMIUM(3, 664, 7.0F, 2.5F, 13, () -> Ingredient.ofItems(MythicItems.OSMIUM.getIngot())),
PALLADIUM(4, 1234, 8.0F, 3.5F, 16, () -> Ingredient.ofItems(MythicItems.PALLADIUM.getIngot())),
PROMETHEUM(3, 1472, 6.0F, 4.0F, 15, () -> Ingredient.ofItems(MythicItems.PROMETHEUM.getIngot())),
QUADRILLUM(2, 321, 5.5F, 2.7F, 8, () -> Ingredient.ofItems(MythicItems.QUADRILLUM.getIngot())),
QUADRILLUM(2, 321, 6.0F, 2.7F, 8, () -> Ingredient.ofItems(MythicItems.QUADRILLUM.getIngot())),
RUNITE(3, 1337, 8.9F, 3.3F, 17, () -> Ingredient.ofItems(MythicItems.RUNITE.getIngot())),
ROYAL_MIDAS_GOLD(3, 2147, 21.0F, 5.0F, 35, () -> Ingredient.ofItems(MythicBlocks.MIDAS_GOLD.getStorageBlock().asItem())),
STAR_PLATINUM(4, 1300, 9.0F, 4.0F, 18, () -> Ingredient.ofItems(MythicItems.STAR_PLATINUM.getIngot())),
Expand Down

0 comments on commit 20eb75a

Please sign in to comment.