TSteelworks Support
Handlers Supported
The following handlers are supported:
- High Oven
- Mixing Agents
- Mixing Recipes Each of these handlers can have recipes added or removed:
//High Oven//InputStack, BurnTime, HeatRate //BurnTime is the amount of seconds the fuel will last, HeatRate is amount of °C per second, Charcoal has 140 BT ; 4 HRmods.tsteelworks.highoven.addFuel(<minecraft:fire_charge>, 800, 5);//InputStackmods.tsteelworks.highoven.removeFuel(<minecraft:coal:1>);//InputStack, isOre, OutputFluid, MeltingTemperature //If isOre is true, TE4 slag will output out of the High Oven Controller/Ductmods.tsteelworks.highoven.addMeltable(<TConstruct:ore.berries.one:8>, true, <liquid:iron.molten> * 432, 600);//InputStackmods.tsteelworks.highoven.removeMeltable(<minecraft:iron_ore>);
//Mixing Agent //OreDicts are needed//InputOredict, ConsumeChancemods.tsteelworks.mix.addOxidizer("treeLeaves", 60);//InputOredict, ConsumeChancemods.tsteelworks.mix.addReducer("gemQuartz", 35);//InputOredict, ConsumeChancemods.tsteelworks.mix.addPurifier("blockLimestone", 85);//Agentmods.tsteelworks.mix.removeAgent("dustRedstone");
//Mixing Recipes//InputFluid, Oxidizer, Purifier, Reducer, OutputFluidmods.tsteelworks.mix.addFluidMix(<liquid:iron.molten>, "treeLeaves", "gemQuartz", "blockLimestone", <liquid:steel.molten>);//InputFluid, Oxidizer, Purifier, Reducer, OutputStack //OutputStack will output out of the High Oven Controller/Ductmods.tsteelworks.mix.addSolidMix(<liquid:iron.molten>, "treeLeaves", "gemQuartz", "hambone", <minecraft:flint>);//InputFluid, Oxidizer, Purifier, Reducermods.tsteelworks.mix.removeMix(<liquid:iron.molten>, "dustGunpowder", "dustRedstone", "blockSand");