your current location:首页 > news>Blast furnace alloy and heating, and other magic reform content supplements (Tinkers' Complement) Minecraft Game

Blast furnace alloy and heating, and other magic reform content supplements (Tinkers' Complement) Minecraft Game

2024-12-10 17:46:55|Myriagame |source:minecraft skins

Content comes from MOT official documentation (TCOMPLEMENT -CRAFTTWEAKER DCUMENTATION (BLAMEJARD.com))

Blast furnace alloy

 Import Mods.tcomplement.highoven.highoven; // Guide package (This is necessary, if the formula of this package is in a zs, then you only use to write one)

Import mods.tcomplements.highoven.mixRecipeBuilder; // function

// The following is the official writing

var builder = highoven.newmixRcipe (*72, *144, 1350); // "Builder" is a variable name, which can be changed to change

Builder.addoxidizer (, 95);

Builder.addReducer (, 5);

Builder.addpurifier (, 50);

Builder.addpurifier (, 0);

Builder.register ();

// The following is a chain call writing

Highoven.newmixRecipe (*288, *288, 750) // Output fluid, input fluid, temperature

.Addoxidizer (, 80) // oxidant, probability (percentage)

.AddReducer (, 90) // reducing agent, probability

.Addpurifier (, 100) // Puritake, probability

.Register ();

Existing alloy formula modification

 Import Mods.tcomplement.highoven.highoven; // Guide package (this is necessary)

Import mods.tcomplement.Highoven.mixRecipemanager; // function

// Chain call writing (the segment is written in the last line)

Highoven.ManageMixRecipe (, ) // Output fluid, input fluids, input fluids

.Removeoxidizer () // Remove the oxidant (In fact, the Cavaliers Slim has no oxidant, so this line is not required)

.Addoxidizer (, 80) // Add oxidant, probability

.RemoveReducer () // Remove the reducing agent

.AddReducer (, 40) // Add a reducing agent, probability .Rmovepurifier

.Addpurifier (, 50) // Add purifiers, probability

.Addpurifier (, 100); // Add purifiers, probability

Fuel added and remove

 Import Mods.tcomplement.highoven.highoven;

Highoven.removefuel (); // Remove

Highoven.addfuel (, 3600, 5); // Add fuel, combustion time, ratio

Melting

 Import Mods.tcomplement.highoven.highoven;

Highoven.removemeltingoverride (); // Remove

Highoven.addmeltingoverride (*144, , 2567); // Mel time, melt items, temperature (not written)

// Note that the addition of the blast furnace melting and the melting of the artisan soul furnace is a single arrow

// It is the melting formula of the artisan soul, but the melting craftsmanship of the blast furnace cannot be used

Heat furnace heating

 Import Mods.tcomplement.highoven.highoven;

Highoven.removeheadheatrecipe (); // Remove

Highoven.addheatRcipe (*144, *1000, 1450); // Heat the rear fluid, heating front fluid, temperature, temperature

// In fact, it is almost the same as the refining, but there will be a formula that heated it into water vapor