Create: Endless Reserves
This addon for the Create mod introduces a completely new approach to automatically mining valuable ores in your Minecraft world.
Key Features
The mod adds unique crystals for various metals—iron, copper, gold, and zinc—to your world. These special resources can be found by mining regular ores. The drop chance for crystals is 0.5% for basic ore deposits and 0.7% for deepslate formations.
The centerpiece of the system is a special storage block that can hold ore crystals. Note that these crystals are extremely durable and can only be mined using the special drill from the main Create mod. The mining speed directly depends on the tool's rotation frequency.
Additional Configuration
If needed, you can integrate zinc crystals into the standard mining system by replacing specific files in the Create mod's archive. The corresponding file structure looks like this:
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "create:zinc_ore"
},
{
"type": "minecraft:group",
"children": [
{
"type": "minecraft:item",
"name": "create:raw_zinc",
"weight": 995,
"functions": [
{
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops",
"function": "minecraft:apply_bonus"
},
{
"function": "minecraft:explosion_decay"
}
]
},
{
"type": "minecraft:item",
"name": "cer:zinc_crystal",
"weight": 5,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 1
}
},
{
"function": "minecraft:explosion_decay"
}
]
}
]
}
]
}
],
"rolls": 1.0
}
],
"random_sequence": "create:blocks/zinc_ore"
}
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "create:deepslate_zinc_ore"
},
{
"type": "minecraft:group",
"children": [
{
"type": "minecraft:item",
"name": "create:raw_zinc",
"weight": 993,
"functions": [
{
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops",
"function": "minecraft:apply_bonus"
},
{
"function": "minecraft:explosion_decay"
}
]
},
{
"type": "minecraft:item",
"name": "cer:zinc_crystal",
"weight": 7,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 1
}
},
{
"function": "minecraft:explosion_decay"
}
]
}
]
}
]
}
],
"rolls": 1.0
}
],
"random_sequence": "create:blocks/deepslate_zinc_ore"
}
Compatibility
This extension is ready to work with most versions of the main Create mod, including the 0.5.1+ and 6.0.0+ branches.
