your current location:首页 > news>[1.12.2] How to modify the liquid interaction of the Holy Grail through CRT [AS] Astral Sorcery Minecraft Game

[1.12.2] How to modify the liquid interaction of the Holy Grail through CRT [AS] Astral Sorcery Minecraft Game

2024-12-10 17:47:03|Myriagame |source:minecraft skins

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

If a cup with different fluids is placed nearby, when the two fluids can react, the corresponding drops will be generated around the cup.For example, water and lava will generate rotten stones, water and star energy liquids to generate ice, lava and star energy liquids to generate sand or sea blue gemstone sandstone.(Specific reference to curb the Holy Grail entries)

Remove a formula for curbing the Holy Grail fluid interaction:

Example: Remove the formula of curbing the Holy Grail with water and magma to create obsidian recipes

 Mods.astralsorcery.liquidinteraction.RemoveInteraction (, , ); 

Analysis: Format is:

 Mods.astralsorcery.liquidinteraction.RemoveINTERACTION 

Among them, the two input-liquidStack is two types of fluids involved in fluid interaction. Output-ITEMSTACK is a formula for output items (optional) without writing output items.There are multiple formulas in the interaction, and only the first one will be deleted. If you want to delete all the formula, you need to remove the formula according to the output item.Deleted specific fluid interaction).

Add one to curb the sanctuary fluid interactive formula:

Example: Add a 10 % probability of 100MB of magma, 50 % probability of 100MB of water, 400 weights to generate the foundation of the foundation of the foundation of the foundation

 Mods.astralsorcery.liquidinteraction.Addinteraction (*100, 0.1, *100, 0.5, 400, ); 

In -game effect map:

Analysis: Format is:

 Mods.astralsorcery.liquidinteraction.Addinteraction (input-liquidStack-1, CHANCE-Consumption-, input-liquidStack-2, CHANCE-CONSUMPTION-, Weight, Output-Itemstack);

Among them, input-liquidStack 1 and Input-liquidStack-2 are the two fluids involved in fluid interaction, respectively. CHANCE-Consumption-1 and CHANCE-CONSUMPTION-2 respectively.Compared with the interaction of registered liquids registered for the given fluid, how much it is to select it, Output-Itemstack is a product produced by fluid interaction.