Using CraftTweaker and Calculator
This page is about using CraftTweaker with Calculator to tweak recipes from a variety of machines and calculators.
Contents
- 1 ZenScript Classes
- 1.1 mods.calculator.basic
- 1.2 mods.calculator.scientific
- 1.3 mods.calculator.atomic
- 1.4 mods.calculator.flawless
- 1.5 mods.calculator.conductorMast
- 1.6 mods.calculator.stoneSeparator
- 1.7 mods.calculator.algorithmSeparator
- 1.8 mods.calculator.extractionChamber
- 1.9 mods.calculator.restorationChamber
- 1.10 mods.calculator.reassemblyChamber
- 1.11 mods.calculator.precisionChamber
- 1.12 mods.calculator.processingChamber
ZenScript Classes
mods.calculator.basic
Functions | Parameters |
---|---|
addRecipe(input_a, input_b, output) | · input_a: (IIngredient) first input of the Basic Calculator recipe. · input_b: (IIngredient) second input of the Basic Calculator recipe. · output: (IItemStack) output of the Basic Calculator recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.scientific
Functions | Parameters |
---|---|
addRecipe(input_a, input_b, output) | · input_a: (IIngredient) first input of the Scientific Calculator recipe. · input_b: (IIngredient) second input of the Scientific Calculator recipe. · output: (IItemStack) output of the Scientific Calculator recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.atomic
Functions | Parameters |
---|---|
addRecipe(input_a, input_b, input_c, output) | · input_a: (IIngredient) first input of the Atomic Calculator recipe. · input_b: (IIngredient) second input of the Atomic Calculator recipe. · input_c: (IIngredient) third input of the Atomic Calculator recipe. · output: (IItemStack) output of the Atomic Calculator recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.flawless
Functions | Parameters |
---|---|
addRecipe(input_a, input_b, input_c, input_d output) | · input_a: (IIngredient) first input of the Flawless Calculator recipe. · input_b: (IIngredient) second input of the Flawless Calculator recipe. · input_c: (IIngredient) third input of the Flawless Calculator recipe. · input_d: (IIngredient) fourth input of the Flawless Calculator recipe. · output: (IItemStack) output of the Flawless Calculator recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.conductorMast
Functions | Parameters |
---|---|
addRecipe(input, energy, output) | · output: (IIngredient) input of the Conductor Mast recipe. · energy: (int) amount of Redstone Flux required (from lightning strikes). · output: (IItemStack) output of the Conductor Mast recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.stoneSeparator
Functions | Parameters |
---|---|
addRecipe(input, output_a, output_b) | · input: (IIngredient) input of the Stone Separator recipe. · output_a: (IItemStack) first output of the Stone Separator recipe. · output_b: (IItemStack) second output of the Stone Separator recipe. |
removeRecipe(output_a, output_b) | · output_a: (IItemStack) first output of recipe wanted to be removed. · output_b: (IItemStack) second output of the recipe wanted to be removed. |
mods.calculator.algorithmSeparator
Functions | Parameters |
---|---|
addRecipe(input, output_a, output_b) | · input: (IIngredient) input of the Algorithm Separator recipe. · output_a: (IItemStack) first output of the Algorithm Separator recipe. · output_b: (IItemStack) second output of the Algorithm Separator recipe. |
removeRecipe(output_a, output_b) | · output_a: (IItemStack) first output of recipe wanted to be removed. · output_b: (IItemStack) second output of the recipe wanted to be removed. |
mods.calculator.extractionChamber
Functions | Parameters |
---|---|
addRecipe(input, output_a, output_b) | · input: (IIngredient) input of the Extraction Chamber recipe. · output_a: (IItemStack) first output of the Extraction Chamber recipe. · output_b: (IItemStack) second output of the Extraction Chamber recipe. |
removeRecipe(output_a, output_b) | · output_a: (IItemStack) first output of recipe wanted to be removed. · output_b: (IItemStack) second output of the recipe wanted to be removed. |
mods.calculator.restorationChamber
Functions | Parameters |
---|---|
addRecipe(input, output) | · input: (IIngredient) input of the Restoration Chamber recipe. · output: (IItemStack) output of the Restoration Chamber recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.reassemblyChamber
Functions | Parameters |
---|---|
addRecipe(input, output) | · input: (IIngredient) input of the Reassembly Chamber recipe. · output: (IItemStack) output of the Reassembly Chamber recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
mods.calculator.precisionChamber
Functions | Parameters |
---|---|
addRecipe(input, output_a, output_b) | · input: (IIngredient) input of the Precision Chamber recipe. · output_a: (IItemStack) first output of the Precision Chamber recipe. · output_b: (IItemStack) second output of the Precision Chamber recipe. |
removeRecipe(output_a, output_b) | · output_a: (IItemStack) first output of recipe wanted to be removed. · output_b: (IItemStack) second output of the recipe wanted to be removed. |
mods.calculator.processingChamber
Functions | Parameters |
---|---|
addRecipe(input, output) | · input: (IIngredient) input of the Processing Chamber recipe. · output: (IItemStack) output of the Processing Chamber recipe. |
removeRecipe(output) | · output: (IItemStack) output of recipe wanted to be removed. |
|