Recipes
Link to recipes
**Note: All result[]
parameters are actually IAny[]
. The supported values of result[]
are IItemStack
, [WeightedItemStack](/Vanilla/Items/WeightedItemStack/)
and [IBlockstate](/Vanilla/Blocks/IBlockState/)
which is placed at the output.
Quern
Link to quern
Importing the Package
Link to importing-the-package
ZenScript Copyimport mods.rustichromia.Quern;
Adding Recipes
Link to adding-recipes
ZenScript Copymods.rustichromia.Quern.add(string id, IIngredient[] inputs, result[] outputs, double minPower, double maxPower, double time);
Removing Recipes
Link to removing-recipes
ZenScript Copymods.rustichromia.Quern.remove(string id);
mods.rustichromia.Quern.removeAll();
Gin
Link to gin
Importing the Package
Link to importing-the-package-1
ZenScript Copyimport mods.rustichromia.Gin;
Adding Recipes
Link to adding-recipes-1
Note: The internal buffer will only be ejected if the Gin is turned off (no power input).
ZenScript Copymods.rustichromia.Gin.add(string id, IIngredient[] inputs, result[] internal, result[] external, double minPower, double maxPower, double time);
Removing Recipes
Link to removing-recipes-1
ZenScript Copymods.rustichromia.Gin.remove(string id);
mods.rustichromia.Gin.removeAll();
Assembler
Link to assembler
Importing the Package
Link to importing-the-package-2
ZenScript Copyimport mods.rustichromia.Assembler;
Adding Recipes
Link to adding-recipes-2
Note: Tier 1 has 2 input slots. Tier 2 has 4 input slots. Tier 3 has 6 input slots.
ZenScript Copymods.rustichromia.Assembler.add(string id, int tier, IIngredient[] inputs, result[] outputs, double minPower, double maxPower, double time);
Removing Recipes
Link to removing-recipes-2
ZenScript Copymods.rustichromia.Assembler.remove(string id);
mods.rustichromia.Assembler.removeAll();