[1.12.2] How to modify the formula through CRT to convert the formula [AS] Astral Sorcery Minecraft Game

This tutorial is set by the author's setting without permission.

Star conversion refers to the process of providing star energy using poly energy crystals and other methods, and the star can be provided to the square through a link to make it transform.

Remove the star can aggregate formula:

Example: Remove the iron ore through the star that can be converted into the star of Xinghui ore

 Mods.astralsorcery.lighttransmutation.Removetransmutation (, FALSE); 

Analysis: Format is:

 Mods.astralsorcery.lighttransmutation.RemovetransMutation (MATCHSTACK, TRUE/FALSE); 

The MatchStack is Itemstack (that is, the finished product corresponding to the star can be converted); the second parameter True/False is TRUE. If it is false, it will not check the item metadata.If there are multiple stars that can convert the same item, you need to add multiple RemoveTransmutation to delete multiple formulas.

Add star can convey formula:

Example: Add iron ore to the formula that can be converted into iron blocks through the star

 mods.astralsorcery.lighttransmutation.addtransmutation (, , 10); 

In -game effect map:

Analysis: Format is:

 Mods.astralsorcery.lighttransmutation.addtransmutation (InputBlock, OutputBlock, CHARGEUSED); 

Among them, inputBlock is a block for conversion, and OutputBlock is the finished block obtained after the conversion is completed. ChargeUSED is the need for the need to be completed until the conversion is completed.

Add a star that requires a specific constellation to convert the formula:

Example: Add gold ore to the formula that can be converted into gold blocks through the golden golden star

 mods.astralsorcery.lighttransmutation.addtransmutation (, , 10, "ASTRALSS orcery.contellation.mineralis "); 

In -game effect map:

Analysis: Format is:

mods.astralsorcery.LightTransmutation.addTransmutation(InputBlock, OutputBlock, chargeUsed, "所需星座的字符串名称");

The first three parameters can convert the formula with conventional adding stars. The fourth parameter is the string name of the constellation.