CraftTweaker: Quern - An-Sar/PrimalCore GitHub Wiki
Quern Recipes require at the very least one input item
The input and output items are passed as arrays and should be encased within [], only four input and two output entries will be uses, overrsized arrays should just ignore the extra items.
Work Time is the number of quern rotations required to complete the recipe
mods.primal.Quern.addRecipe(
String recipe_name,
int work_time,
IIngredient[] item_inputs,
IItemStack[] item_outputs
);
Removing Recipes, currently this is done through the recipe name, it should be full form modid:recipe_name
mods.primal.Quern.removeAll()
mods.primal.Quern.removeRecipe(String recipe_name);
Existing Recipe Names can be printed to the chat/console through an in-game command
/primal recipes quern