-
Notifications
You must be signed in to change notification settings - Fork 5
CraftTweaker Support
mods.betterwithaddons.Tatara.add(<output>,<input>);
mods.betterwithaddons.Tatara.remove(<input>);
mods.betterwithaddons.SoakingBox.add(<output>,<input>);
mods.betterwithaddons.SoakingBox.remove(<input>);
mods.betterwithaddons.DryingBox.add(<output>,<input>);
mods.betterwithaddons.DryingBox.remove(<input>);
Up outputs are output above the netted screen, down outputs below the netted screen. Output items can be null if you need to output specific items on the top or the bottom.
mods.betterwithaddons.WaterNet.add([<output_up1>,<output_down1>,<output_up2>,<output_down2>,...],<input>);
mods.betterwithaddons.WaterNet.remove(<input>);
Beware that the Fire Net needs fire or lava underneath the Netted Screen, so down items will be destroyed!
mods.betterwithaddons.FireNet.add([<output_up1>,<output_down1>,<output_up2>,<output_down2>,...],<input>);
mods.betterwithaddons.FireNet.remove(<input>);
Sand must be an integer between 0 and 8.
mods.betterwithaddons.SandNet.add([<output_up1>,<output_down1>,<output_up2>,<output_down2>,...],<input>,sand);
mods.betterwithaddons.SandNet.remove(<input>);
Popoff must be a boolean specifying whether the Spindle is destroyed when this recipe is produced.
mods.betterwithaddons.Spindle.add([<output1>,<output2>,...],<input>,popoff);
mods.betterwithaddons.Spindle.remove(<input>);
must be an itemstack representing a block. hardness must be a float. The formula for the speed multiplier when harvesting soft woods is hardness / blockHardness.
mods.betterwithaddons.SoftWoods.add(<block>,hardness);
mods.betterwithaddons.SoftWoods.remove(<block>);
Food must be an integer for how much food is contained in the item when eaten by an Alicio Tree.
mods.betterwithaddons.LureTree.add(<input>,food);
mods.betterwithaddons.LureTree.remove(<input>);