-
Notifications
You must be signed in to change notification settings - Fork 9
Solderer
Note: gold is hardcoded to be dustGold
and dustTinyGold
.
import mods.prodigytech.solderer
addRecipe(IItemStack pattern, IItemStack output, int gold, @Optional int time)
Adds a recipe that, when provided with pattern
as a pattern, takes gold
gold nuggets and 1 Circuit Plate as input and gives out
in time
ticks (at 125°C). If time
is omitted it defaults to the config's base value.
addRecipe(IItemStack pattern, IItemStack additive, IItemStack output, int gold, @Optional int time)
Adds a recipe that, when provided with pattern
as a pattern, takes gold
gold nuggets, additive
and 1 Circuit Plate as input and gives out
in time
ticks (at 125°C). If time
is omitted it defaults to the config's base value.
removeRecipe(IItemStack pattern, IItemStack additive)
Removes the recipe that takes pattern
as pattern and additive
as additive. Put null
as additive
to target a recipe with no additive.
removeAll()
Removes all recipes.