Skip to content

Commit

Permalink
Tool balancing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Noaaan committed Mar 2, 2025
1 parent 292d6db commit 4e585df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions PATCHNOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ Most of these are made by thyreo. Thanks again for awesome new textures!
- Forging Osmium from Raw Ores and Ingots now only require a tier 1 Forge
- Forging Platinum from Raw Ores and Ingots now only require a tier 1 Forge
- Forging Prometheum from Raw Ores and Ingots now only require a tier 1 Forge
- Increased the base damage of Osmium Tools: 2.5 -> 3.0
- Increased the base damage of Steel Tools: 2.5 -> 3.0
- Increased the base damage of Tidesinger Tools: 3.0 -> 4.0
- Increased the mining speed of Tidesinger Tools: 8.5 -> 9.0
- Increased the enchantability of Tidesinger Tools: 16 -> 18

### Mythril Drill Recipe Rework

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ public enum MythicToolMaterials implements ToolMaterial {
MYTHRIL(4, 1564, 14.3F, 3.0F, 22, () -> Ingredient.ofItems(MythicItems.MYTHRIL.getIngot())),
MYTHRIL_DRILL(4, 1764, 27.4F, 3.0F, 20, () -> Ingredient.ofItems(MythicItems.MYTHRIL.getIngot())),
ORICHALCUM(4, 2048, 6.0F, 4.0F, 16, () -> Ingredient.ofItems(MythicItems.ORICHALCUM.getIngot())),
OSMIUM(3, 664, 7.0F, 2.5F, 13, () -> Ingredient.ofItems(MythicItems.OSMIUM.getIngot())),
OSMIUM(3, 664, 7.0F, 3.0F, 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, 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())),
STEEL(3, 700, 6.5F, 2.5F, 11, () -> Ingredient.ofItems(MythicItems.STEEL.getIngot())),
STEEL(3, 700, 6.5F, 3.0F, 11, () -> Ingredient.ofItems(MythicItems.STEEL.getIngot())),
STORMYX(3, 1305, 8.5F, 3.5F, 20, () -> Ingredient.ofItems(MythicItems.STORMYX.getIngot())),
TIDESINGER(3, 1233, 8.5F, 3.0F, 16, () -> Ingredient.ofItems(MythicItems.AQUARIUM.getIngot()));
TIDESINGER(3, 1233, 9.0F, 4.0F, 18, () -> Ingredient.ofItems(MythicItems.AQUARIUM.getIngot()));

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

0 comments on commit 4e585df

Please sign in to comment.