Skip to content

Solderer

Lykrast edited this page Aug 28, 2018 · 1 revision

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.

Clone this wiki locally