Rock Digger
Have you ever wanted to create your own blocks for Minecraft and place them in the game world without having to learn complex programming? Your dream can come true with this wonderful modification!
The entire process is extremely simple: just add a JSON file to the rockdigger configuration folder, upload a texture, launch the game - and your unique block is ready to use in Minecraft.

The JSON file structure is intuitive:
{
id: 593,
stairid: 594,
slabid: 595,
nameid: "rhyolite",
name: "Rhyolite",
rarity: 100,
vein: 10,
height: 10,
range: 5,
altergen: true,
biomes: [
{
biometype: FOREST
}
]
}
In this example, rhyolite will generate exclusively in forest biomes with a relative rarity of 100. The maximum vein size is 5 blocks, and the generation height ranges from 32 to 92 units. The modification automatically creates stairs and slabs for each block.
The altergen parameter with a value of true enables the generation of stairs and slabs. If set to false or completely omitted, additional elements will not be generated.