Этот мод добавляет поддержку Crafttweaker к Harvestcraft. Доступные функции перечислены ниже.
Импорт: mods.harvestcrafttweaker.HarvestCraftTweaker;
Доступные методы:
clearAllPressing();
addPressing(IIngredient input, IItemStack leftOutput, IItemStack rightOutput);
removePressingByInput(IItemStack input);
clearAllGrinding();
addGrinding(IIngredient input, IItemStack leftOutput, IItemStack rightOutput);
removeGrindingByInput(IItemStack input);
addWaterFilter(IIngredient input, IItemStack leftOutput, IItemStack rightOutput);
removeWaterFilterByInput(IItemStack input);
// Наземные ловушки, обычно жёстко заданы, поэтому требуются coremods
addGroundTrap(IIngredient input, IItemStack[] outputs) ;
removeGroundTrapByInput(IIngredient input);
// Водные ловушки, также жёстко заданы, поэтому требуются coremods
addWaterTrap(IIngredient input, IItemStack[] outputs);
removeWaterTrapByInput(IIngredient input);
// Рынок
clearAllMarket();
addMarket(IItemStack toBuy,IItemStack input,int cost);
removeMarketByOutput(IItemStack output);
// Торговая биржа
addShipping(IItemStack toBuy,IItemStack currency,int cost);
removeShippingByOutput(IItemStack output);
