your current location:首页 > news>1.18.2 Endless greedy ultimate synthetic desk modification tutorial [CRT] CRAFTTWEAKER MINECRAFT Game

1.18.2 Endless greedy ultimate synthetic desk modification tutorial [CRT] CRAFTTWEAKER MINECRAFT Game

2024-12-10 17:50:33|Myriagame |source:minecraft skins

This tutorial is set by the author to use the CC By-NC-ND protocol.

This tutorial is only tested in Avaritia-1.18.2 4.0.1.6 and Crafttweaker 9.1.207. If it is invalid or reported, please check the version.

Notice :

Each formula of the formula ID cannot be the same;

The lethal letters cannot be mixed, pay attention to the case;

The punctuation is English punctuation, and the use of Chinese punctuation MT will report an error.

In the new version, we need to use JSON to add a synthetic table. The specific format is as follows:

  .addjsonRcipe ("formula ID", {{{

"Type": "Avaritia: Extreme_shaped",

"Result": {

"Item": "Item ID"

},

"Pattern": [[

"Abbbbbbbba",

"A A",

"A A",

"A A",

"A A",

"A A",

"A A",

"A A",

"Abbbbbbbba"

],,,

"Key": {

"A": {

"Item": "Item ID"

},

"B": {

"Item": "Item ID"

}

}

});

Among them, the old version is: "Type": "Avaritia: EXTREME_SHARED", cannot be deleted, otherwise an error will be reported.

Fill in the formula ID;

Item ID can be used

/ct hand 
instructions to obtain. For example, the input instructions can be obtained by the input instructions after holding the universal sword in the hand:

For block items, such as oak logs will get a lot of information. If you need to be used as a synthetic material, you only need to find the label after the item.

There is an output item in Result, that is, the item obtained by the synthesis,


 "result": {

"Item": "output item ID"

},

Fill in English symbols such as ABCD in the quotes in Pattern, which represents the style of the synthetic table:


 "Pattern": [

"",

"",

"",

"",

"",

"",

"",

"",

""

],

Remember that the synthesis table in the PARTERN is 9 × 9, do not write more, enter the space if you have time.

For example, synthetic natural barren ax is as shown in the figure below

 "Pattern": [

"N",,

"IIIIII",

"IIIIIII",

"I ii",

"N",,

"N",,

"N",,

"N",,

"N"

],

As for the content in the key, it corresponds to your letters in Pattern, and a letter corresponds to one item.


 "key": {

"A": {

"Item": "Item ID1"

},

"B": {

"Item": "Item ID2"

}

}

"Item": "" "Instead of sprinkler brackets, if other modules are required, you need to bring Modid.

For the old version, please see Endless Greedy the ultimate synthetic table order modification tutorial