-
Notifications
You must be signed in to change notification settings - Fork 1
MineTweaker3 Interrgration
The various crafting methods that are added by contraptions are extendible using MineTweaker 3.
The following commands can be used:
Import:
import mod.contraptions.Smasher
Smasher.remove(<outputItem>); Smasher.removeRecipe(<outputItem>, <inputItem>); Smasher.addRecipe(<outputItem>, <inputItem>, number of times);
Smasher can only input one item, but can output more than one of the same item.
Import:
import mod.contraptions.Heat
Heat.remove(<outputItem>); Heat.removeRecipe(<outputItem>, <inputItem>); Heat.addRecipe(<outputItem>, <inputItem>, heat required); Heat.addPlacedRecipe(<outputBlock>, <inputBlock>, heat required);
Heat crafting can only input one item, but can output more than one of the same item. Placed Recipes will require the block to be placed next to a heat source, other recipes require the item to be dropped on top of a heat source.