Minecraft 1.12.2 Synthetic Form Format
recipes.addshapet (
[[xxx, xxx, xxx],
[xxx, xxx, xxx],
[xxx, xxx, xxx]]));
Add 1.16.5 in the synthetic table:
Craftingtable.addshapet
[[xxx, xxx, xxx],
[Xxx, xxx, xxx],
[xxx, xxx, xxx]]));
Its item ID and xxx can be found in the game
Take an item in your hand (everything) and then enter the/ct hand to get a few string of ID
1.12.2 We use xxx: xxx to be used as ID
1.16.5 We use item: xxx: xxx
Disorderly synthesis 1.16.5: Craftingtable.addshapeless (replace it)
Remove Synthetic Table 1.16.5
craftingtable.removerecipe (
The entire MOD synthetic table is deleted
craftingtable.removebymodid (ID of MOD)
In terms of furnace (1.16.5)
Add furnace formula
Furnace.addRecipe ("The name of this formula (everything)",
Delete the furnace formula
furnace.removerecipe (
All the furnace formula of this MOD
furnace.removebymodid (modid)
Smoked furnace replaces furnace with Smoker, and the blast furnace can be replaced with Blastfurnace
A fuel editing
item.burntime = value;
If set to 0, it is deleted
Stone cutter
StoneCutter.addRecipe
Remove the formula
stonecutter.removerecipe (
The blank part of the synthetic table is not NULL, but
Do not forget the file suffix in the end to .zs (full version)
Must be added! (Full version)
Must be added <> (full version)