your current location:首页 > news>Use Crafttweaker to make a magic change of Tianhua (AETHERWORKS) Minecraft Game

Use Crafttweaker to make a magic change of Tianhua (AETHERWORKS) Minecraft Game

2024-12-10 17:51:31|Myriagame |source:minecraft skins

Tianhua's own work is that the CRT supports the magic reform, but the content of the magic reform is as follows

Tianhua Furnace Metal Modeling Table

Removal formula

 mods.aetherworks.metalformer.removerecipesByinput (input); // Remove the formula according to the input item to remove the formula

mods.aetherworks.metalformer.removerecipesByoutPut (output); // Remove the formula according to the output item to remove the formula

mods.aetherworks.metalFormer.removerecipe (input, output); // Remove the formula according to the input and output items to remove the formula

//example

mods.aetherworks.metalFormer.removerecipesbybyinput

Add formula

 mods.aetherworks.metalFormer.addrecipe (input, FLUID, OUTPUT, TEMPERATURE));

// The definition of four numerical values ​​is input items in turn, the fluid, output items, and the required start temperature required for the formula

//example

Mods.aetherworks.metalFormer.addrecipe (, *1000, , 721);

The example above the game in the game shows the show shown in the figure as shown in the figure

Tianhua Molition Revail

Removal formula

 mods.aetherworks.anvil.removerecipesByinput (input); // Remove the formula according to the input item to remove the formula

mods.aetherworks.anvil.removerecipesByoutPut (output); // Remove the formula according to the output item to remove the formula

mods.aetherworks.anvil.removerecipe (input, output); // Remove the formula according to the input and output items

//example

mods.aetherworks.anvil.removerecipesByoutput

Add formula

 mods.aetherworks.anvil.addrecipe (input, output, temporamemin, temperatureMax, Embesty, Diffical, HITSRequi Red, TemperatureFluction);

// The definition is input item, output items, minimum value of forging temperature, maximum value for forging temperature, and consumes the number of ashes energy, difficulty, number of tapping at each time

// Among them, TemperatorFluction is floating -point value, defaults to 0, omitted

// The difficulty corresponds to 0-Easy, 1-novice, 2-easy, 3-advanced, 4-advanced, 5-cunning, 6-difficulties, 7-masters, 8-exhaustion, gravity, 10-endless-endless

//example

mods.aetherworks.anvil.addrecipe (, , 2000, 3000, 81, 8, 37);