diff --git a/common/src/main/java/trinsdar/gt4r/data/GT4RData.java b/common/src/main/java/trinsdar/gt4r/data/GT4RData.java index 54758ca5..e5b76c0d 100644 --- a/common/src/main/java/trinsdar/gt4r/data/GT4RData.java +++ b/common/src/main/java/trinsdar/gt4r/data/GT4RData.java @@ -136,7 +136,8 @@ private static Block.Properties prepareProperties() { public static ItemBasic MachineParts = new ItemBasic<>(GT4RRef.ID, "machine_parts"); public static ItemBasic StorageDataOrb = new ItemStorageOrb(GT4RRef.ID, "storage_data_orb").tip("A High Capacity Data Storage"); - public static ItemElectricTool DRILL = new ItemElectricTool("drill", GTCoreTools.DRILL, 6.0f, 6.5f, 2, 1); + public static ItemElectricTool DRILL = new ItemElectricTool("drill", GTCoreTools.DRILL, 6.0f, 5.5f, 2, 1); + public static ItemElectricTool DIAMOND_DRILL = new ItemElectricTool("diamond_drill", GTCoreTools.DRILL, 8.0f, 6.0f, 3, 1); public static ItemBasic ZPM = new ItemBattery(GT4RRef.ID, "zpm", Tier.ZPM, 100000000000L, false); //public static ItemBasic BatteryEnergyOrbCluster = new ItemBasic<>(Ref.ID, "battery_energy_orb_cluster"); diff --git a/common/src/main/java/trinsdar/gt4r/items/ItemElectricTool.java b/common/src/main/java/trinsdar/gt4r/items/ItemElectricTool.java index 408f660e..ce4d49bb 100644 --- a/common/src/main/java/trinsdar/gt4r/items/ItemElectricTool.java +++ b/common/src/main/java/trinsdar/gt4r/items/ItemElectricTool.java @@ -302,7 +302,7 @@ public int getItemColor(ItemStack stack, @Nullable Block block, int i) { @Override public Texture[] getTextures() { List textures = new ObjectArrayList<>(); - int layers = getAntimatterToolType().getOverlayLayers(); + int layers = getId().contains("diamond") ? 2 : getAntimatterToolType().getOverlayLayers(); textures.add(new Texture(getTextureDomain(), "item/tool/".concat(getAntimatterToolType().getId()))); if (layers == 1) textures.add(new Texture(getTextureDomain(), "item/tool/overlay/".concat(getAntimatterToolType().getId()))); diff --git a/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/diamond_drill.png b/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/drill_1.png similarity index 100% rename from common/src/main/resources/assets/gt4r/textures/item/tool/overlay/diamond_drill.png rename to common/src/main/resources/assets/gt4r/textures/item/tool/overlay/drill_1.png diff --git a/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/drill_2.png b/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/drill_2.png new file mode 100644 index 00000000..a2205838 Binary files /dev/null and b/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/drill_2.png differ diff --git a/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/electric_wrench_alt.png b/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/electric_wrench_alt.png new file mode 100644 index 00000000..a0f3ad9d Binary files /dev/null and b/common/src/main/resources/assets/gt4r/textures/item/tool/overlay/electric_wrench_alt.png differ