This commit is contained in:
Pyritie 2025-10-12 01:01:37 +01:00
commit 5835322410
17 changed files with 20 additions and 0 deletions

View file

@ -5,6 +5,7 @@
- Added meats for the surfer, cruncher, stackatick and primitive creatures mobs (#2001) @Redeix
- Added a recipe for turning glass dust into lamp glass @Pyritie
- Added more recipe unification for quartz, certus quartz, create's minerals, fixed wall chiseling recipes (#2005) @vidal-adrien
- Added recipes to purify impure dusts in TFC Barrels @dimethylene
### Bug fixes
- Fixed a crash with the sandworm on servers (#2006) @BlueBoat29

Binary file not shown.

Before

Width:  |  Height:  |  Size: 747 B

After

Width:  |  Height:  |  Size: 374 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 887 B

After

Width:  |  Height:  |  Size: 389 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 703 B

After

Width:  |  Height:  |  Size: 248 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 952 B

After

Width:  |  Height:  |  Size: 568 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 889 B

After

Width:  |  Height:  |  Size: 578 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 912 B

After

Width:  |  Height:  |  Size: 389 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 697 B

After

Width:  |  Height:  |  Size: 487 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 756 B

After

Width:  |  Height:  |  Size: 375 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 897 B

After

Width:  |  Height:  |  Size: 391 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 719 B

After

Width:  |  Height:  |  Size: 247 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 977 B

After

Width:  |  Height:  |  Size: 505 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 902 B

After

Width:  |  Height:  |  Size: 605 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 907 B

After

Width:  |  Height:  |  Size: 409 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 870 B

After

Width:  |  Height:  |  Size: 538 B

Before After
Before After

View file

@ -653,6 +653,12 @@ function registerGTCEUMetalRecipes(event) {
],
result: pureOreItem.toJson()
}).id(`tfg:ae_transform/${material.getName()}_purified_ore`)
event.recipes.tfc.barrel_instant()
.inputItem(crushedOreItem)
.inputFluid(Fluid.of("minecraft:water", 100))
.outputItem(pureOreItem)
.id(`tfg:instant_barrel/${material.getName()}_purified_ore`)
}
if (crushedOreItem !== null && impureDustItem !== null) {
@ -703,6 +709,12 @@ function registerGTCEUMetalRecipes(event) {
event.recipes.greate.splashing(dustItem, impureDustItem)
.id(`tfg:splashing/${material.getName()}_dust_from_impure`)
event.recipes.tfc.barrel_instant()
.inputItem(impureDustItem)
.inputFluid(Fluid.of("minecraft:water", 100))
.outputItem(dustItem)
.id(`tfg:instant_barrel/${material.getName()}_dust_from_impure`)
// Centrifuging
let byproductMaterial = material.getProperty(PropertyKey.ORE).getOreByProduct(0, material);
let byproductItem = ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1).toJson()
@ -743,6 +755,12 @@ function registerGTCEUMetalRecipes(event) {
event.recipes.greate.splashing(dustItem, pureDust)
.id(`tfg:splashing/${material.getName()}_dust_from_pure`)
event.recipes.tfc.barrel_instant()
.inputItem(pureDust)
.inputFluid(Fluid.of("minecraft:water", 100))
.outputItem(dustItem)
.id(`tfg:instant_barrel/${material.getName()}_dust_from_pure`)
// Centrifuging
let byproductMaterial = material.getProperty(PropertyKey.ORE).getOreByProduct(1, material);
let byproductItem = ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1).toJson()

View file

@ -1458,4 +1458,5 @@ function registerTFGMiscellaneousRecipes(event) {
.itemOutputs('tfg:wireless_card')
.duration(300)
.EUt(GTValues.VA[GTValues.EV])
}