This commit is contained in:
Pyritie
2026-02-21 13:31:40 +00:00
parent 41dbd84add
commit c86ea8fd5e
3 changed files with 12 additions and 10 deletions

View File

@@ -18,6 +18,7 @@
- Fixed Uranium Triplatinum not requiring Radon in the Alloy Blast Smelter @TomPlop
- Added a workaround for oil spouts sometimes giving a fluid that couldn't be used in non-GregTech machines @Pyritie
- Fixed an issue with server overrides sometimes not applying to server pack exports (#3088) @Mqrius
- Fixed more startup issues when the system language is set to Turkish (#3099) @Pyritie
### Translation updates
- Chinese (simplified) @jmecn
- German @Enderderschander

View File

@@ -341,7 +341,7 @@ const registerGTCEuMaterialModification = (event) => {
// Unhiding elements
GTMaterials.Zirconium.setProperty(PropertyKey.DUST, new $DUST_PROPERTY());
GTMaterials.Zirconium.setProperty(PropertyKey.INGOT, new $INGOT_PROPERTY());
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, 'mid', GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20));
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, $BLAST_PROPERTY.GasTier.MID, GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20));
GTMaterials.Zirconium.addFlags(GENERATE_FINE_WIRE, GENERATE_PLATE, GENERATE_DENSE, NO_ORE_SMELTING);
// Tools

View File

@@ -2,6 +2,7 @@
"use strict";
const registerTFGCrops = (event) => {
const $FarmlandBlockEntity = Java.loadClass("net.dries007.tfc.common.blockentities.FarmlandBlockEntity")
// Earth Crops
@@ -9,7 +10,7 @@ const registerTFGCrops = (event) => {
.translationKey('block.tfg.sunflower')
.mapColor('plant')
.soundType('crop')
.nutrient('nitrogen')
.nutrient($FarmlandBlockEntity.NutrientType.NITROGEN)
.stages(4)
.doubleStages(2)
.hardness(0.4)
@@ -44,7 +45,7 @@ const registerTFGCrops = (event) => {
.mapColor('plant')
.translationKey('block.tfg.rapeseed')
.soundType('crop')
.nutrient('phosphorous')
.nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS)
.stages(3)
.doubleStages(3)
.hardness(0.4)
@@ -72,7 +73,7 @@ const registerTFGCrops = (event) => {
.mapColor('plant')
.translationKey('block.tfg.flax')
.soundType('crop')
.nutrient('nitrogen')
.nutrient($FarmlandBlockEntity.NutrientType.NITROGEN)
.stages(5)
.doubleStages(3)
.hardness(0.4)
@@ -108,7 +109,7 @@ const registerTFGCrops = (event) => {
event.create('betterend:amber_root', 'tfc:crop')
.mapColor('color_orange')
.soundType('crop')
.nutrient('phosphorous')
.nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS)
.stages(3)
.hardness(0.4)
.tagBlock('minecraft:mineable/hoe')
@@ -140,7 +141,7 @@ const registerTFGCrops = (event) => {
event.create('betterend:blossom_berry', 'tfc:crop')
.mapColor('color_pink')
.soundType('crop')
.nutrient('potassium')
.nutrient($FarmlandBlockEntity.NutrientType.POTASSIUM)
.stages(3)
.hardness(0.4)
.tagBlock('minecraft:mineable/hoe')
@@ -184,7 +185,7 @@ const registerTFGCrops = (event) => {
event.create('betterend:cave_pumpkin_plant', 'tfc:spreading_crop')
.mapColor('plant')
.soundType('crop')
.nutrient('nitrogen')
.nutrient($FarmlandBlockEntity.NutrientType.NITROGEN)
.stages(3)
.hardness(0.4)
.tagBlock('minecraft:mineable/hoe')
@@ -217,7 +218,7 @@ const registerTFGCrops = (event) => {
.mapColor('color_purple')
.translationKey('block.betterend.chorus_mushroom')
.soundType('nether_wart')
.nutrient('phosphorous')
.nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS)
.stages(3)
.hardness(0.4)
.tagBlock('minecraft:mineable/hoe')
@@ -255,7 +256,7 @@ const registerTFGCrops = (event) => {
.mapColor('color_blue')
.soundType('crop')
.box(2, 0, 2, 14, 3, 14)
.nutrient('potassium')
.nutrient($FarmlandBlockEntity.NutrientType.POTASSIUM)
.stages(3)
.hardness(0.4)
.tagBlock('minecraft:mineable/hoe')
@@ -290,7 +291,7 @@ const registerTFGCrops = (event) => {
.mapColor('color_orange')
.soundType('nether_wart')
.box(2, 0, 2, 14, 5, 14)
.nutrient('phosphorous')
.nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS)
.stages(3)
.hardness(0.4)
.tagBlock('minecraft:mineable/hoe')