()
- .put(Mods.Names.CHISEL, true)
.put(Mods.Names.DRACONIC_EVOLUTION, true)
.put(Mods.Names.DRACONIC_ADDITIONS, true)
.put(Mods.Names.GREGTECH, true)
diff --git a/src/main/java/com/github/gtexpert/core/mixins/chisel/BlockCarvableMixin.java b/src/main/java/com/github/gtexpert/core/mixins/chisel/BlockCarvableMixin.java
deleted file mode 100644
index b6750291..00000000
--- a/src/main/java/com/github/gtexpert/core/mixins/chisel/BlockCarvableMixin.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.github.gtexpert.core.mixins.chisel;
-
-import net.minecraft.block.Block;
-import net.minecraft.block.material.Material;
-import net.minecraft.util.BlockRenderLayer;
-
-import org.spongepowered.asm.mixin.Mixin;
-import org.spongepowered.asm.mixin.injection.At;
-import org.spongepowered.asm.mixin.injection.Inject;
-import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
-
-import team.chisel.api.block.VariationData;
-import team.chisel.common.block.BlockCarvable;
-
-/**
- * Mixin to add harvest level information to Chisel's carvable blocks.
- *
- * Sets appropriate harvest tools (pickaxe, axe, shovel) based on block material type,
- * enabling proper tool requirements for breaking these blocks.
- */
-@Mixin(value = BlockCarvable.class, remap = false)
-public abstract class BlockCarvableMixin extends Block {
-
- protected BlockCarvableMixin(Material materialIn) {
- super(materialIn);
- }
-
- /**
- * Sets the harvest level for carvable blocks based on their material type.
- *
- * - Pickaxe: Rock, Iron, Anvil, Ice
- * - Axe: Wood
- * - Shovel: Ground, Sand, Clay
- *
- */
- @Inject(method = "(Lnet/minecraft/block/material/Material;Lnet/minecraft/util/BlockRenderLayer;II[Lteam/chisel/api/block/VariationData;)V",
- at = @At("RETURN"))
- private void gtexpert$setHarvestLevel(Material material, BlockRenderLayer layer, int index, int max,
- VariationData[] variations, CallbackInfo ci) {
- if (material == Material.ROCK || material == Material.IRON || material == Material.ANVIL ||
- material == Material.ICE || material == Material.PACKED_ICE) {
- this.setHarvestLevel("pickaxe", 0);
- } else if (material == Material.WOOD) {
- this.setHarvestLevel("axe", 0);
- } else if (material == Material.GROUND || material == Material.SAND || material == Material.CLAY) {
- this.setHarvestLevel("shovel", 0);
- }
- }
-}
diff --git a/src/main/resources/assets/gtexpert/lang/en_us.lang b/src/main/resources/assets/gtexpert/lang/en_us.lang
index e5db74f6..3924aac5 100644
--- a/src/main/resources/assets/gtexpert/lang/en_us.lang
+++ b/src/main/resources/assets/gtexpert/lang/en_us.lang
@@ -38,14 +38,6 @@ gtexpert.machine.void_fluid_pump.tooltip.3=§dAuthor:§f @MrKono
gtexpert.machine.void_fluid_pump.tooltip.overclock=§aQuadratic Overclock:§7 Higher tiers are more efficient (e.g., +1 tier = 4x, +2 = 9x, +3 = 16x)
# singleblock
-# Auto Chisel
-gtexpert.machine.auto_chisel.lv.name=Basic Auto Chisel
-gtexpert.machine.auto_chisel.lv.tooltip=Your ideal, we will sculpt it./nMaterial in the left, chiseling to the right. See JEI's Chiseling page for details./n§dAuthor:§f @tier940
-gtexpert.machine.auto_chisel.mv.name=Advanced Auto Chisel
-gtexpert.machine.auto_chisel.mv.tooltip=Your ideal, we will sculpt it/nMaterial in the left, chiseling to the right. See JEI's Chiseling page for details./n§dAuthor:§f @tier940
-gtexpert.machine.auto_chisel.hv.name=Advanced Auto Chisel II
-gtexpert.machine.auto_chisel.hv.tooltip=Your ideal, we will sculpt it/nMaterial in the left, chiseling to the right. See JEI's Chiseling page for details./n§dAuthor:§f @tier940
-
# Vial Extractor
gtexpert.machine.vial_extractor.lv.name=Basic Vial Extractor
gtexpert.machine.vial_extractor.lv.tooltip=Soul of a Lost Undead?/n§dAuthor:§f @tier940
@@ -229,7 +221,6 @@ recipemap.sawmill.name=Saw Mill
recipemap.vial_extractor.name=Vial Extractor
recipemap.slice_n_splice.name=Slice'N'Splice
recipemap.soul_binder.name=Soul Binder
-recipemap.auto_chisel.name=Auto Chisel
recipemap.void_ore_miner.name=Void Ore Miner
recipemap.draconium_fusion.name=Draconic Fusion Crafter
recipemap.awakened_draconium_fusion.name=Draconic Fusion Crafter
@@ -266,7 +257,6 @@ gtexpert.multiblock.void_fluid_pump.multiplier=Production Multiplier: %s
gtexpert.config.gtexpert=GTExpert-Core
gtexpert.config.integration.ae=Applied Energistics 2
gtexpert.config.integration.aeadditions=AE Additions
-gtexpert.config.integration.chisel=Chisel
gtexpert.config.integration.deda=Draconic Evolution & Draconic Additions
gtexpert.config.integration.eio=Ender IO
gtexpert.config.integration.extracpus=Extra CPUs
diff --git a/src/main/resources/assets/gtexpert/lang/ja_jp.lang b/src/main/resources/assets/gtexpert/lang/ja_jp.lang
index bfcd9b39..f70b6813 100644
--- a/src/main/resources/assets/gtexpert/lang/ja_jp.lang
+++ b/src/main/resources/assets/gtexpert/lang/ja_jp.lang
@@ -38,14 +38,6 @@ gtexpert.machine.void_fluid_pump.tooltip.3=§d作者:§f @MrKono
gtexpert.machine.void_fluid_pump.tooltip.overclock=§a二次オーバークロック:§7 高ティアほど効率向上 (例: +1ティア = 4倍, +2 = 9倍, +3 = 16倍)
# singleblock
-# Auto Chisel
-gtexpert.machine.auto_chisel.lv.name=基本型自動彫刻機
-gtexpert.machine.auto_chisel.lv.tooltip=あなたの理想、彫刻します/n左が素材、右が彫刻型。詳しくはJEIのChiselingページをご覧ください。/n§d作者:§f @tier940
-gtexpert.machine.auto_chisel.mv.name=発展型自動彫刻機
-gtexpert.machine.auto_chisel.mv.tooltip=あなたの理想、彫刻します/n左が素材、右が彫刻型。詳しくはJEIのChiselingページをご覧ください。/n§d作者:§f @tier940
-gtexpert.machine.auto_chisel.hv.name=発展型自動彫刻機 II
-gtexpert.machine.auto_chisel.hv.tooltip=あなたの理想、彫刻します/n左が素材、右が彫刻型。詳しくはJEIのChiselingページをご覧ください。/n§d作者:§f @tier940
-
# Vial Extractor
gtexpert.machine.vial_extractor.lv.name=基本型魂抽出器
gtexpert.machine.vial_extractor.lv.tooltip=故も知らぬ不死のソウル?/n§d作者:§f @tier940
@@ -228,7 +220,6 @@ recipemap.sawmill.name=製材機
recipemap.vial_extractor.name=魂抽出器
recipemap.slice_n_splice.name=頭顱調整機
recipemap.soul_binder.name=魂拘束器
-recipemap.auto_chisel.name=自動彫刻機
recipemap.void_ore_miner.name=亜空間型鉱石採掘機
recipemap.draconium_fusion.name=ドラコニック融合機
recipemap.awakened_draconium_fusion.name=ドラコニック融合機
diff --git a/src/main/resources/mixins.gtexpert.chisel.json b/src/main/resources/mixins.gtexpert.chisel.json
deleted file mode 100644
index 80ea5410..00000000
--- a/src/main/resources/mixins.gtexpert.chisel.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "package": "com.github.gtexpert.core.mixins.chisel",
- "refmap": "mixins.gtexpert.refmap.json",
- "target": "@env(DEFAULT)",
- "minVersion": "0.8",
- "compatibilityLevel": "JAVA_8",
- "mixins": [
- "BlockCarvableMixin"
- ]
-}
\ No newline at end of file