Compatibility
Minecraft: Java Edition
1.20.1
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 4 weeks ago
Updated last month
Create: Endless Reserves
Create: Endless Reserves is an addon for Create that adds a new way to automatically mine resources!
📌 Features:
- Ore Crystals (iron, copper, gold and zinc) - a new type of resources.
- Reserver - a special storage block where you can insert ore crystals.
- Automatic Mining:
- Destructible only with the Drill from Create.
- Mining speed depends on the rotation speed of the drill.
- Receiving crystals:
- Chance of falling out 0.5% when mining ordinary ores.
- Chance of falling out 0.7% when mining deep shale ores.
🔧 Additional
If desired, you can replace the two files in the .jar
file Create at path (ZIP):
/data/create/loot_tables/blocks/zinc_ore.json
/data/create/loot_tables/blocks/deepslate_zinc_ore.json
The code at the bottom of the page
This will allow zinc crystals to be added to mined resources.
✅ Compatibility
- Works with most versions of Create, including 0.5.1+ and 6.0.0+.
Create an endless supply of resources with Create: Endless Reserves! 🚀
zinc_ore.json:
{
"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"
}
deepslate_zinc_ore.json:
{
"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"
}