AlexNijjar / Extractinator

Convert blocks into resources.
MIT License
6 stars 9 forks source link
## Extractinator [![Modrinth](https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/available/modrinth_vector.svg)](https://modrinth.com/mod/extractinator)
### 📖About 📖

This mod adds a new machine, the Extractinator, which converts your throwaway blocks, such as gravel and cobblestone, into valuable resources. It's based on Terraria's Silt Extractinator, incorporating silt and slush ore, along with some new features, such as full automation, support for additional blocks and extensive support for other mods.

Default Recipe

Recipe

Developers

To add this library to your project, do the following:

repositories {
  maven {
    // Location of the maven that hosts Alex's and Team Resourceful's files.
    name = "Team Resourceful Maven"
    url = "https://maven.resourcefulbees.com/repository/maven-public/"
  }
}

In an Architectury project, you would implement it like so:

Common

dependencies {
    modImplementation "tech.alexnijjar.extractinator:extractinator-common-$rootProject.minecraft_version:$rootProject.extractinator_version"
}

Fabric

dependencies {
    modImplementation "tech.alexnijjar.extractinator:extractinator-fabric-$rootProject.minecraft_version:$rootProject.extractinator_version"
}

Forge

dependencies {
    modImplementation "tech.alexnijjar.extractinator:extractinator-forge-$rootProject.minecraft_version:$rootProject.extractinator_version"
}