Difference between revisions of "ModTweaker:TConstruct Support 1.10.2"
From MineTweaker 3
m (4 revisions imported) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 13: | Line 13: | ||
//Casting | //Casting | ||
− | //OutputStack, InputFluid, <span style="color:red">CastStack</span>, <span style="color:red">ConsumeCast</span>, Time in Ticks | + | //OutputStack, InputFluid, <span style="color:red">CastStack</span>, <span style="color:red">ConsumeCast</span>, <span style="color:red">Time in Ticks</span> |
− | mods.tconstruct.Casting.addBasinRecipe(< | + | mods.tconstruct.Casting.addBasinRecipe(<minecraft:magma>, <liquid:lava> * 250, <minecraft:netherrack>); |
− | //OutputStack, InputFluid, <span style="color:red">CastStack</span>, <span style="color:red">ConsumeCast</span>, Time in Ticks | + | //OutputStack, InputFluid, <span style="color:red">CastStack</span>, <span style="color:red">ConsumeCast</span>, <span style="color:red">Time in Ticks</span> |
− | mods.tconstruct.Casting.addTableRecipe(< | + | mods.tconstruct.Casting.addTableRecipe(<minecraft:nether_star>, <liquid:manyullyn> * 50000, <minecraft:emerald>); |
− | //OutputStack | + | //OutputStack, <span style="color:red">InputFluid</span>, <span style="color:red">CastStack</span> |
− | mods.tconstruct.Casting.removeBasinRecipe(<minecraft: | + | mods.tconstruct.Casting.removeBasinRecipe(<minecraft:sand:1>, <liquid:blood>, <minecraft:sand>); |
− | mods.tconstruct.Casting.removeTableRecipe(<minecraft:iron_ingot>); | + | //OutputStack, <span style="color:red">InputFluid</span>, <span style="color:red">CastStack</span> |
+ | mods.tconstruct.Casting.removeTableRecipe(<minecraft:iron_ingot>, <liquid:iron>, <tconstruct:cast_custom>); | ||
//Drying Rack | //Drying Rack | ||
Line 25: | Line 26: | ||
mods.tconstruct.Drying.addRecipe(<minecraft:tallgrass:1>, <minecraft:deadbush>, 50); | mods.tconstruct.Drying.addRecipe(<minecraft:tallgrass:1>, <minecraft:deadbush>, 50); | ||
//OutputStack | //OutputStack | ||
− | mods.tconstruct.Drying.removeRecipe(< | + | mods.tconstruct.Drying.removeRecipe(<tconstruct:edible:10>); |
− | + | ||
//Modifiers | //Modifiers | ||
//ModifierString | //ModifierString | ||
− | mods.tconstruct.Modifiers.remove(" | + | mods.tconstruct.Modifiers.remove("luck"); |
− | + | ||
//Smeltery | //Smeltery | ||
− | |||
− | |||
− | |||
− | |||
//OutputFluid, InputFluidArray | //OutputFluid, InputFluidArray | ||
− | mods.tconstruct.Smeltery.addAlloy(<liquid: | + | mods.tconstruct.Smeltery.addAlloy(<liquid:gold> * 8, [<liquid:emerald> * 64, <liquid:iron> * 32]); |
//OutputFluid | //OutputFluid | ||
− | mods.tconstruct.Smeltery.removeAlloy(<liquid: | + | mods.tconstruct.Smeltery.removeAlloy(<liquid:obsidian>); |
+ | //OutputFluid, InputStack, TemperatureAmount, <span style="color:red">BlockRender</span> | ||
+ | mods.tconstruct.Smeltery.addMelting(<liquid:blood> * 200, <minecraft:porkchop>, 200, <tconstruct:slime:2>); | ||
+ | //InputStack | ||
+ | mods.tconstruct.Smeltery.removeMelting(<minecraft:rotten_flesh>); | ||
//InputFluid, TemperatureAmount, Time in Ticks | //InputFluid, TemperatureAmount, Time in Ticks | ||
− | mods.tconstruct.Smeltery.addFuel(<liquid:iron | + | mods.tconstruct.Smeltery.addFuel(<liquid:iron>); |
//InputFluid | //InputFluid | ||
mods.tconstruct.Smeltery.removeFuel(<liquid:lava>); | mods.tconstruct.Smeltery.removeFuel(<liquid:lava>); | ||
− | // | + | //Materials |
− | // | + | //Material.HeadModifier = Amount |
− | + | <material:stone>.durabilityHead = 5; | |
− | + | <material:stone>.miningSpeedHead = 5; | |
− | + | <material:stone>.attackHead = 5; | |
− | + | <material:stone>.harvestLevelHead = 5; | |
− | + | //Material.HandleModifier = Amount | |
− | + | <material:obsidian>.durabilityHandle = 5; | |
− | + | <material:obsidian>.modifierHandle = 5; | |
− | + | //Material.GeneralModifier = Amount | |
− | + | <material:obsidian>.durabilityExtra = 5; | |
− | // | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | // | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
== Commands Supported == | == Commands Supported == | ||
Line 104: | Line 63: | ||
/minetweaker materials - Outputs a list of material strings | /minetweaker materials - Outputs a list of material strings | ||
/minetweaker modifiers - Outputs a list of modifiers strings | /minetweaker modifiers - Outputs a list of modifiers strings | ||
− | {{ | + | {{ModTweakerNavigation_1.10.2}} |
Latest revision as of 14:36, 12 September 2023
Handlers Supported
The following handlers are supported:
- Casting
- Drying Rack
- Modifiers
- Smeltery
- Tool Stats
Each of these handlers can have recipes added or removed:
Parameters marked as red are optional and can be left out //Casting //OutputStack, InputFluid, CastStack, ConsumeCast, Time in Ticks mods.tconstruct.Casting.addBasinRecipe(<minecraft:magma>, <liquid:lava> * 250, <minecraft:netherrack>); //OutputStack, InputFluid, CastStack, ConsumeCast, Time in Ticks mods.tconstruct.Casting.addTableRecipe(<minecraft:nether_star>, <liquid:manyullyn> * 50000, <minecraft:emerald>); //OutputStack, InputFluid, CastStack mods.tconstruct.Casting.removeBasinRecipe(<minecraft:sand:1>, <liquid:blood>, <minecraft:sand>); //OutputStack, InputFluid, CastStack mods.tconstruct.Casting.removeTableRecipe(<minecraft:iron_ingot>, <liquid:iron>, <tconstruct:cast_custom>); //Drying Rack //InputStack, OutputStack, Time in Ticks mods.tconstruct.Drying.addRecipe(<minecraft:tallgrass:1>, <minecraft:deadbush>, 50); //OutputStack mods.tconstruct.Drying.removeRecipe(<tconstruct:edible:10>); //Modifiers //ModifierString mods.tconstruct.Modifiers.remove("luck"); //Smeltery //OutputFluid, InputFluidArray mods.tconstruct.Smeltery.addAlloy(<liquid:gold> * 8, [<liquid:emerald> * 64, <liquid:iron> * 32]); //OutputFluid mods.tconstruct.Smeltery.removeAlloy(<liquid:obsidian>); //OutputFluid, InputStack, TemperatureAmount, BlockRender mods.tconstruct.Smeltery.addMelting(<liquid:blood> * 200, <minecraft:porkchop>, 200, <tconstruct:slime:2>); //InputStack mods.tconstruct.Smeltery.removeMelting(<minecraft:rotten_flesh>); //InputFluid, TemperatureAmount, Time in Ticks mods.tconstruct.Smeltery.addFuel(<liquid:iron>); //InputFluid mods.tconstruct.Smeltery.removeFuel(<liquid:lava>); //Materials //Material.HeadModifier = Amount <material:stone>.durabilityHead = 5; <material:stone>.miningSpeedHead = 5; <material:stone>.attackHead = 5; <material:stone>.harvestLevelHead = 5; //Material.HandleModifier = Amount <material:obsidian>.durabilityHandle = 5; <material:obsidian>.modifierHandle = 5; //Material.GeneralModifier = Amount <material:obsidian>.durabilityExtra = 5;
Commands Supported
Prints are stored in the minetweaker log in the minecraft directory.
/minetweaker tconstruct [HANDLER] - Outputs a list of all TConstruct recipes /minetweaker materials - Outputs a list of material strings /minetweaker modifiers - Outputs a list of modifiers strings
ModTweaker Supported Mods |
---|
Actually Additions Support| Blood Magic Support| Botania Support| Chisel 2 Support| Embers Support| Extra Utilities Support| Forestry Support| Random Things Support| Refined Storage Support| Tinker's Construct Support |