Infinity Nexus Miner
This mod implements a multi-stage automated resource mining system in the game based on a multi-block structure. Within this special mechanism, endless resources are continuously generated through implemented crafting recipes.

Main Features
The mod includes a single universal setup - a mining machine that can be progressively upgraded from the first to the ninth level. Each subsequent improvement requires craftable components, which are created using crystals obtained from previous developmental stages.
Mod Characteristics
This is a relatively simple and user-friendly addon focused on automated resource extraction, not requiring deep technical knowledge from the player.
Configuration Example via KubeJS
ServerEvents.recipes(event => {
const recipesMiner = [
{
input: 'allthecompressed:blazing_crystal_block_5x', // Input block
output: 'powah:blazing_crystal_block', // Output block
level: 8, // Machine level
energy: 100, // Energy ratio
fortune: false // Fortune effect
},
];
recipesMiner.forEach(rp => {
event.custom({
type: 'infinity_nexus_miner:mining',
energy: rp.energy,
level: rp.level,
fortune: rp.fortune,
ingredient: [
{ item: rp.input }
],
output:
{ item: rp.output }
});
});
});
Distribution
The mod supports installation on both client versions and server projects, ensuring its versatility across various gaming configurations.