本篇教程由作者设定未经允许禁止转载。

本文是为了给不想看CrT官方文档一堆英文,或是打不开GitHub的人准备的

还有我自己,打开网页真麻烦。读取中文肯定比读取英文快。说白了就是懒的翻译,而且还是连贯的。


运算分离器

导包

import mods.calculator.algorithmSeparator;

添加合成表

algorithmSeparator.addRecipe(IIngredient input, IIngredient output1, IIngredient output2);

删除合成表

algorithmSeparator.removeRecipe(IIngredient output1, IIngredient output2);


原子计算器

导包

import mods.calculator.atomic;

添加合成表

atomic.addRecipe(IIngredient input1, IIngredient input2, IIngredient input3, IIngredient output);

删除合成表

atomic.removeRecipe(IIngredient output);


计算器

导包

import mods.calculator.basic;

添加合成表

basic.addRecipe(IIngredient input1, IIngredient input2, IIngredient output);

删除合成表

basic.removeRecipe(IIngredient output);


提取室

导包

import mods.calculator.extractionChamber;

添加合成表

extractionChamber.addRecipe(IIngredient input, IIngredient output1, IIngredient output2);

删除合成表

extractionChamber.removeRecipe(IIngredient output, IIngredient output2);


制造室

导包

import mods.calculator.fabricationChamber;

添加合成表

fabricationChamber.addRecipe(IIngredient input, IIngredient output);

删除合成表

fabricationChamber.removeRecipe(IIngredient input);


完美计算器

导包

import mods.calculator.flawless;

添加合成表

flawless.addRecipe(IIngredient input1, IIngredient input2, IIngredient input3, IIngredient input4, IIngredient output);

删除合成表

flawless.removeRecipe(IIngredient output);


精准提取室

导包

import mods.calculator.precisionChamber;

添加合成表

precisionChamber.addRecipe(IIngredient input, IIngredient output1, IIngredient output2);

删除合成表

precisionChamber.removeRecipe(IIngredient output1, IIngredient output2);


运算室

导包

import mods.calculator.processingChamber;

添加合成表

processingChamber.addRecipe(IIngredient input, IIngredient output);

删除合成表

processingChamber.removeRecipe(IIngredient output);


重组室

导包

import mods.calculator.reassemblyChamber;

添加合成表

reassemblyChamber.addRecipe(IIngredient input, IIngredient output);

删除合成表

reassemblyChamber.removeRecipe(IIngredient output);


科学计算器

导包

import mods.calculator.scientific;

添加合成表

scientific.addRecipe(IIngredient input1, IIngredient input2, IIngredient output);

删除合成表

scientific.removeRecipe(IIngredient output);


修复室

导包

import mods.calculator.restorationChamber;

添加合成表

restorationChamber.addRecipe(IIngredient input, IIngredient output);

删除合成表

restorationChamber.removeRecipe(IIngredient output);


基础分离机

导包

import mods.calculator.stoneSeparator;

添加合成表

stoneSeparator.addRecipe(IIngredient input, IIngredient output1, IIngredient output2);

删除合成表

stoneSeparator.removeRecipe(IIngredient output, IIngredient output2);


萤石能量提取机

导包

import mods.calculator.glowstone;

添加合成表

glowstone.addRecipe(IIngredient input, int value);

删除合成表

glowstone.removeRecipe(IIngredient input);


生命处理器

导包

import mods.calculator.health;

添加合成表

health.addRecipe(IIngredient input, int value);

删除合成表

health.removeRecipe(IIngredient input);


特斯拉电塔

导包

import mods.calculator.conductorMast;

添加合成表

conductorMast.addRecipe(IIngredient input, int powercost, IIngredient output);

删除合成表

conductorMast.removeRecipe(IIngredient output);


有机能量提取机

导包

import mods.calculator.starch;

添加合成表

starch.addRecipe(IIngredient input, int value);

删除合成表

starch.removeRecipe(IIngredient input);


红石能量提取机

导包

import mods.calculator.redstone;

添加合成表

redstone.addRecipe(IIngredient input, int value);

删除合成表

redstone.removeRecipe(IIngredient input);


警惕原子增幅仪仙人!

请停止你的计算器仙人操作!!