Skip to content

Commit

Permalink
Buffed Quicksilver mining levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Noaaan committed Jan 2, 2021
1 parent 0bf9eff commit ca1aac7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ yarn_mappings=1.16.4+build.7
loader_version=0.10.8

# Mod Properties
mod_version = 0.9.9-snapshot
mod_version = 0.9.9-snapshot-B
maven_group = nourl.mythicmetals
archives_base_name = mythicmetals

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class MythicMetalsBlocks {
public static final Block PLATINUM_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 2).requiresTool());
public static final Block PROMETHEUM_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 3).requiresTool());
public static final Block QUADRILLUM_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 1).requiresTool());
public static final Block QUICKSILVER_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 2).requiresTool());
public static final Block QUICKSILVER_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 3).requiresTool());
public static final Block RUNITE_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 2).requiresTool());
public static final Block SILVER_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 1).requiresTool());
public static final Block SLOWSILVER_BLOCK = new Block(FabricBlockSettings.of(Material.METAL).strength(5.0F, 6.0F).sounds(BlockSoundGroup.METAL).breakByTool(FabricToolTags.PICKAXES, 2).requiresTool());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public enum MythicMetalsToolMaterials implements ToolMaterial {
QUADRILLUM(2, 531, 7.0F, 2.0F, 10, () -> {
return Ingredient.ofItems(RegisterIngots.Quadrillum_Ingot);
}),
QUICKSILVER(3, 1652, 13.0F, 2.5F, 25, () -> {
QUICKSILVER(4, 1652, 13.0F, 2.5F, 25, () -> {
return Ingredient.ofItems(RegisterIngots.Quicksilver_Ingot);
}),
RUNITE(3, 1337, 6.9F, 3.3F, 13, () -> {
Expand Down

0 comments on commit ca1aac7

Please sign in to comment.