From a7b30b310b256dd3d654e13e13f6908fbe037718 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 5 Mar 2019 21:26:27 +0100 Subject: [PATCH] add recipe removal info to crafttweaker info --- CraftTweakerCompat.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CraftTweakerCompat.md b/CraftTweakerCompat.md index b9a68a02..3e8725c9 100644 --- a/CraftTweakerCompat.md +++ b/CraftTweakerCompat.md @@ -6,22 +6,33 @@ A few notes that apply for most of the recipe types: - `IItemStack` is an item - `aura` is the amount of Aura required and represents the total amount required for the completion of the recipe (for reference, 1,000,000 is the default amount of Aura present in the world and 2,000,000 is the amount that is required for the Environmental Eye's bar to fill up fully) - `time` is the time processes take in ticks +- For most removal recipes, `output` is the output of the recipe that should be removed. All recipes with the given outupt will be removed. + ## Natural Altar `mods.naturesaura.Altar.addRecipe(String name, IIngredient input, IItemStack output, IIngredient catalyst, int aura, int time)` - `catalyst` is the catalyst block that is placed on one of the four corner blocks, can be `null` +`mods.naturesaura.Altar.removeRecipe(IItemStack output)` + ## Altar of Birthing `mods.naturesaura.AnimalSpawner.addRecipe(String name, String entity, int aura, int time, IIngredient[] ingredients)` - `entity` is the registry name of the entity that you want to spawn +`mods.naturesaura.AnimalSpawner.removeRecipe(String name)` +- `entity` is the registry name of the entity whose spawning recipe should be removed + ## Offering to the Gods `mods.naturesaura.Offering.addRecipe(String name, IIngredient input, int inputAmount, IIngredient startItem, IItemStack output)` - `inputAmount` is the amount of items required for the input. Note that this means that the amount of the `input` variable is ignored - `startItem` is the item required to start the offering, should pretty much always be `naturesaura:calling_spirit` +`mods.naturesaura.Offering.removeRecipe(IItemStack output)` + ## Ritual of the Forest `mods.naturesaura.TreeRitual.addRecipe(String name, IIngredient saplingType, IItemStack result, int time, IIngredient[] items)` - `saplingType` is an item representation of the sapling that needs to be placed and grown into a tree -- `items` are the items that need to be placed on the wooden stands \ No newline at end of file +- `items` are the items that need to be placed on the wooden stands + +`mods.naturesaura.TreeRitual.removeRecipe(IItemStack output)` \ No newline at end of file