Random Things - roidrole/Roids-Tweaker GitHub Wiki
Adds CraftTweaker support to Random Things
Essentially a rewrite of Random Things Tweaker
Imbuing
Import :
import mods.roidtweaker.randomthings.Imbuing;
| Method | Parameters | Description |
|---|---|---|
| addRecipe | output as IItemStack, input as IIngredient, ingredients as IIngredient[] | Adds a recipe. Supports conditions, but not transformers. Ingredients should be of length 3. Supports null IIngredients |
| removeRecipe | output as IIngredient | Removes any recipe whose output matches this ingredient |
| removeRecipe | index as int | Removes the recipe at this index. Note : unreliable if other mods add recipe during PostInit. Default recipe order : mossy cobble, fire, poison, xp, wither. Custom recipes are removed/appended in script order |
| clearRecipes | [No Parameters] | Gone. Reduced to atoms. |