quests, remove new netherite tools

This commit is contained in:
Pyritie 2026-02-16 17:52:30 +00:00
parent 5589332726
commit 057ce3103c
3 changed files with 10 additions and 5 deletions

View file

@ -2,11 +2,12 @@
## Unreleased
### Changes
- GregTech updated to 7.5.2, see [its changelog](https://github.com/GregTechCEu/GregTech-Modern/releases/tag/v7.5.0-1.20.1) for more details
- Blaze burners no longer work outside of Earth @Mqrius @thederpysockdude123
- High Tier saws can Silk Harvest Ice (#3019) @Nebby1999
- Colored small vessels now have new textures backported from 1.21 TFC
- The alloy smelter kaolin clay to powder recipe now uses a mold instead of a circuit (since steam machines don't have circuits) @Pyritie
- Added more of Create's decorative stone blocks to the Domum whitelist
- Blaze burners no longer work outside of Earth @Mqrius @thederpysockdude123
- Drinkable alcohols can now be drank even when your hydration is full @Ujhik
- The Strength effect is now exclusive to wines, but all wines also now have an additional effect! @Pyritie
- Made deployers cheaper @Pyritie

View file

@ -1330,12 +1330,12 @@
id: "12C0BC3514FCEF96"
subtitle: "{quests.ore_proc.gem_slurry.subtitle}"
tasks: [{
id: "57587D74BD9DA754"
id: "730EA57B64DE54C0"
item: {
Count: 1
id: "ftbfiltersystem:smart_filter"
tag: {
"ftbfiltersystem:filter": "or(item(gtceu:crushed_ruby_ore)item(gtceu:crushed_sapphire_ore)item(gtceu:crushed_green_sapphire_ore))"
"ftbfiltersystem:filter": "or(item(gtceu:crushed_ruby_ore)item(gtceu:crushed_sapphire_ore)item(gtceu:crushed_green_sapphire_ore)item(gtceu:purified_ruby_ore)item(gtceu:purified_sapphire_ore)item(gtceu:purified_green_sapphire_ore))"
}
}
title: "{quests.ore_proc.gem_slurry.task}"

View file

@ -79,7 +79,11 @@ const registerGTCEuMaterialModification = (event) => {
GTToolType.DRILL_IV,
GTToolType.SCREWDRIVER,
GTToolType.SCREWDRIVER_LV,
GTToolType.SCREWDRIVER_HV,
GTToolType.SCREWDRIVER_IV,
GTToolType.CHAINSAW_LV,
GTToolType.CHAINSAW_HV,
GTToolType.CHAINSAW_IV,
GTToolType.WRENCH,
GTToolType.WRENCH_LV,
GTToolType.WRENCH_HV,
@ -355,10 +359,10 @@ const registerGTCEuMaterialModification = (event) => {
GTMaterials.BlackSteel.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(6.5, 4.5, 1228, 3, metalTooling).build());
// Cast iron tools don't make sense but gregtech shits itself if they're missing,
// so I'm just giving them terrible terrible stats
GTMaterials.Iron.getProperties().removeProperty(PropertyKey.TOOL)
GTMaterials.Iron.getProperties().removeProperty(PropertyKey.TOOL);
GTMaterials.Iron.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(2.5, 1.0, 20, 2, [GTToolType.PICKAXE]).build());
// Hide netherite too
GTMaterials.Netherite.getProperty(PropertyKey.TOOL).removeTypes(metalTooling);
GTMaterials.Netherite.getProperties().removeProperty(PropertyKey.TOOL);
for (let material of GTCEuAPI.materialManager.getRegisteredMaterials()) {
let toolProperty = material.getProperty(PropertyKey.TOOL);