Kiln
Link to kiln
The Kiln is a multiblock used for quickly processing building blocks, that can be acquired through smelting something in a furnace.
Blacklist
Link to blacklist
The Kiln recipes are based on the vanilla Furnaces recipes, sorting out everything besides building blocks. The blacklist is a way for you to further minimize what recipes are grabbed from the vanilla Furnace.
<recipetype:atum:kiln>.blacklist(id);
id
A namespaced ID for the input block/item that should be blacklisted.
Removes the recipe(s) with the specified item/block from the recipes the Kiln will pull from the vanilla Furnace
ZenScript Copy<recipetype:atum:kiln>.blacklist("minecraft:cobblestone");
Tarif Ekleme
Link to tarif-ekleme
<recipetype:atum:kiln>.addRecipe(input, output, experience, @Optional cookTime);
input
IItemStackoutput
IItemStackexperience
Float numbercookTime
Integer number (If left empty, it'll default to 75)
Adds a recipe with the specified input, output, experience & cook time
ZenScript Copy<recipetype:atum:kiln>.addRecipe(<item:atum:dirty_bone_block>, <item:atum:alabaster>, 0.2);
Bir Tarifi Kaldırma
Link to bir-tarifi-kaldırma
The removal methods only work for recipes added specifically for the Kiln by Atum (Or other mods) By default in Atum this will only be the Marl to White Ceramic Tile Block recipe. If you wish to remove something else, you're probably looking for the blacklist (Documentation above)
Çıkışa göre Tarif Kaldırma
Link to çıkışa-göre-tarif-kaldırma
<recipetype:atum:kiln>.removeRecipeByOutput(output);
output
IItemStack
Girilen IItemStack çıktısının olduğu bütün tarifleri kaldırır.
ZenScript Copy<recipetype:atum:kiln>.removeRecipeByOutput(<item:atum:marl>);
Remove Recipes by Output & Input
Link to remove-recipes-by-output--input
<recipetype:atum:kiln>.removeRecipeByOutputInput(output, input);
output
IItemStackinput
IItemStack
Removes the specific recipe, with the specified output & input
ZenScript Copy<recipetype:atum:kiln>.removeRecipeByOutputInput(<item:atum:cermic_white>, <item:atum:marl>);
Other removal methods
Link to other-removal-methods
See Recipe Managers for other ways to remove Spinning Wheel recipes