your current location:首页 > news>The original core of the Crafttweaker, the official Wiki document completely translates the original core (Primalcore) M

The original core of the Crafttweaker, the official Wiki document completely translates the original core (Primalcore) M

2024-12-09 18:31:42|Myriagame |source:minecraft skins

drying rack

Drying time: For the number of blocks required to dry at one time, the actual time will be affected by Drying_rack_tick_rate in the configuration file.

Add a recipe that will rot:

Mods.primal.Dryingrack.addrottingRecipe (string formula name, int drying time, int to rot, ingredient input item, output items when ionmstack is not rotted);

Add non -rotten recipe:

mods.primal.dryingrack.addnonrottingRecipe (string formula name, int drying time, ingredient input item, Iitemstack output item);

Remove all general registration formula:

mods.primal.dryingrack.removeall ();

Remove the specified registration formula:

mods.primal.dryingrack.removerecipe (name formula name);

In the game, you can use /Primal Recipes Drying to view all the general registered formulas of drying racks!

The flames

Burning time: The number of blocks required for a firing will be affected by the hibachi_tick_rate item in the configuration file.

Add formula:

mods.primal.Hibachi.addrecipe (string formula name, int burning time, ingredient input item, IITEMSTACK output item);

Remove all general registration formula:

mods.primal.Hibachi .removeall ();

Remove the specified registration formula:

mods.primal.Hibachi.removerecipe (name formula name);

In the game, you can use /Primal Recipes Hibachi to view the general registered formula of all the brazi!

stone mill

Arrays input and output: Because it is an array, you must use [] to be wrapped. You can only enter an array of up to four items, output an array of up to two items, and excess items will be ignored.

Add formula:

mods.primal.quern.addrecipe (string formula name, int grinding time, ingredient [] input item array, ictuemstack [] output items array);

Remove all general registration formula:

mods.primal.quern.removeal ();

Remove the specified registration formula:

mods.primal.quern.removerecipe (String formula name);

In the game, you can use /Primal Recipes Quern to view the general registered formula of all stone mills!

smelting furnace

The default fuel is also part of the input. The logic here is that the specific fuel (ie, carbon/carbon) of different types of ore, which melts different types of ore is an important ingredient, which also reflects the flexibility of the formula.

Arrays input and output: Because it is an array, you must use [] to be wrapped. You can only enter an array of up to four items, output an array of up to two items, and excess items will be ignored.

Burning time: The number of blocks required for a firing will be affected by the actual time of the configuration file.

Add formula:

mods.primal.smelter.addRecipe (string formula name, int burning time, ingredient [] input items array, ionmstack [] output items array); official example: official example:

mods.primal.smelter.addrecipe ("unique_recipes_name", 20, [], []);;);; ]);;);

Remove all general registration formula:

mods.primal.smelter.removeal ();

Remove the specified registration formula:

mods.primal.smelter.removerecipe (String formula name);

In the game, you can use /Primal Recipes Smelter to view the general registered formula of all smelting furnaces!

坩埚

入 At least one type of input fluid is required, which can be used as part of the formula to consume these fluids, or convert these fluids into a new output fluid.In addition, 着 has an input slot that can accommodate up to four items and two output slots.

Arrays input and output: Because it is an array, you must use [] to be wrapped. You can only enter an array of up to four items, output an array of up to two items, and excess items will be ignored.

Cooking time: For the number of blocks required for one cooking, the actual time will be affected by the cauldron_tick_rate item in the configuration file.

Add formula:

mods.primal.caultron.addrecipe (string formula name, int cooking time, iliquestack input fluid, iliquidstack output fluid, ionRedient [] input item group, Iitemstack [] output item group);

Remove all general registration formula:

mods.primal.caultron.removeal ();

Remove the specified registration formula:

mods.primal.caultron.removerecipe (name name name);

In the game, you can use /Primal Recipes cauldron to view all the general registered recipes of 坩埚!

Box hardness: The minimum requirements in the world's blocks, for example, the hardness of the stone is 1.5.

Probability: It is the possibility of a given formula to successfully process the input items.

Probability of failure: It is the possibility of a given formula that consumes input items.

You can provide multiple output items.

Add formula:

mods.primal.flake.addrecipe (string formula name, float block hardness, float chance of success, float failure probability, ingredient input item, ionmstack ... output items); output items);

Remove all general registration formula:

mods.primal.flake.removeal ();

Remove the specified registration formula:

mods.primal.flake.removerecipe (name formula name);

You can use /Primal Recipes Flaming to view all the general registered formulas!

Tool World Synthetic

Tool name: can be AXE, Blade, Gallagher, Hoe, Shovel, that is, ax, processing knife, hammer, hoe, shovel.

Except for input blocks, other formulas are considered optional, but suppose you will provide at least output blocks or output items, otherwise the formula will not help.

Output block: It is an effective block state. This state will replace the input block or it is considered to effectively remove the that effectively removes the target block.Output direction: It can be "normal", "faciling", "log", and "normal" by default, and "facing" is a player, such as working blade manufacturing ladder cubes, and the current "log" is not fully implemented.

The minimum output: is an array that requires two integers, indicating the range of the number of items that may be output. If it is a single value, a guaranteed output will be indicated.

You can provide multiple output items.

Add formula:

mods.primal. Tool name .addRecipe (string formula name, IBLOCKSTATE input box, @Optional iBlockstate output box, @optional Iitemstack output items, @Optional Int [] output IONAL String output direction);

Remove all general registration formula:

mods.primal. Tool name .removeall ();

Remove the specified registration formula:

mods.primal. Tool name .removeRecipe (String formula name);

In the game, you can use the following instructions to view the general registered formula synthesized by all tools in the world!

/Primal Recipes Axe

/Primal Recipes Blade

/Primal Recipes Gallagher

/Primal Recipes Hoe

/Primal Recipes Shovel