The configuration of the four -leaf clover (CLOOVER) Minecraft Game

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

This is the default configuration of 1.18.2 Clover.

(File name: CLOVER-COMMON.TOML)

#General Settings

[General]

#The Probility of Laying Creeper

#Range: 0.0 ~ 1.0

Probabilitycreeper = 0.01

#The Probility of Laying Clover

#Range: 0.0 ~ 1.0

ProbabilityClover = 0.05

#The items in black list

BlackList = ["Minecraft: Bedrolk", "Minecraft: Structure_block", "Minecraft: JIGSAW", "MineCraft: Light", "Minecraft: Command_block", "Minecraft: Reperting_command_block "," Minecraft: Chain_Command_block "," Minecraft: Command_block_minecart ", "Minecraft: Barrier", "Minecraft: Structure_void", "Clover: Clover"]]

#The items in white list

whitelist = []

Analyze

Lightning reptiles generate probability

#The Probility of Laying Creeper

#Range: 0.0 ~ 1.0

Probabilitycreeper = 0.01


When using tetrawy, the probability of generating lightning reptiles.

The default is 0.01 (1%).

If you want to adjust, for example, if you want the probability of 2%, then modify the value of the Probabilitycreeper to 0.02.

(Probability%= probability /100.0)

Plide probability of four -leaf grass

#The Probility of Laying Clover

#Range: 0.0 ~ 1.0

ProbabilityClover = 0.05


After digging the grass, how much probability will drop the four leaf grass.

The default is 0.05 (5%).

If you want to adjust, for example, if you want to make the probability at 12%, then modify the value of the ProbabilityClover to 0.12.

(Probability%= probability /100.0)

blacklist

#The items in black list

BlackList = ["Minecraft: Bedrolk", "Minecraft: Structure_block", "Minecraft: JIGSAW", "MineCraft: Light", "Minecraft: Command_block", "Minecraft: Reperting_command_block "," Minecraft: Chain_Command_block "," Minecraft: Command_block_minecart ", "Minecraft: Barrier", "Minecraft: Structure_void", "Clover: Clover"]]


You can never drop items with four -leaf clover.That is the blacklist.

If you want to include diamonds, you need to add it::

"Minecraft: Diamond_block"

Don't forget, adjacent items need to use comma "and" separate.

Whitelist

#The items in white listwhitelist = []

I didn't write anything in the original configuration.


You can only drop the things inside with four -leaf grass.Please note that there is no restriction for air.

If you want to include the emerald stall, you need to add it in it:

"Minecraft: EMERARARD_BLOCK"

Don't forget, adjacent items need to use comma "and" separate.