Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
Yet Another Cobblestone Generator

Yet Another Cobblestone Generator

Flexible customizable generators

12.2k
26
Technology
Utility

Compatibility

Minecraft: Java Edition

1.21.x
1.20.x
1.19.2–1.19.4
1.18.2

Platforms

Fabric

Supported environments

Client and server

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Links

Report issues View source Join Discord server
Donate on PayPal

Creators

syorito-hatsuki
syorito-hatsuki Owner
Denfop
Denfop Helper
hasti19
hasti19 Illustrator

Details

Licensed MIT
Published 2 years ago
Updated 3 weeks ago
DescriptionGalleryChangelogVersions

Contributors Forks Stargazers Issues MIT License LinkedIn Discord Modrinth


Logo

Yet Another Cobblestone Generator

Flexible customizable generators
Support · Report Bug · Request Feature

Table of Contents
  1. About The Project
    • Built With
  2. Usage
    • Gameplay
    • Crafts
    • Integrations
      • REI
      • EMI
      • Jade
    • Config
  3. Roadmap
  4. Contributing
  5. License

About The Project

In-Game ScreenShot

A cobblestone generator, a classic of any SkyBlock. However, I'm bored with classic generators that generate only 1 kind of block. That's why I made my own mod, with a wide range of customization options.

(back to top)

Built With

  • Fabric
  • Fabric-Language-Kotlin
  • ModMenu Badges Lib
  • fStats

(back to top)

Usage

Gameplay

  • Right-click to get info about what is already generated
  • Shift + Right-click to collect all from the generator
  • Shift + Right-click to put upgrade item into generator

(back to top)

Crafts

Cobblestone Generator Craft Ore Generator Craft Stone Generator Craft
Speed Upgrade Craft Count Upgrade Craft Coefficient Upgrade Craft
Energy Free Upgrade Craft
Events Generators
Halloween
Pumpkin
Nether Pumpkin

(back to top)

Integrations

REI

REI Integration ScreenShot

EMI

EMI Integration ScreenShot

Jade

Jade Integration ScreenShot

(back to top)

Config

Generators default config (Before 2024.10.1)
[
    {
        "type": "cobble",
        "energyUsage": 0,
        "items": [
            {
                "itemId": "minecraft:cobblestone",
                "coefficient": 100,
                "count": 1
            },
            {
                "itemId": "minecraft:cobbled_deepslate",
                "coefficient": 30,
                "count": 1
            },
            {
                "itemId": "minecraft:mossy_cobblestone",
                "coefficient": 10,
                "count": 1
            }
        ]
    },
    {
        "type": "ore",
        "energyUsage": 0,
        "items": [
            {
                "itemId": "minecraft:coal_ore",
                "coefficient": 100,
                "count": 1
            },
            {
                "itemId": "minecraft:copper_ore",
                "coefficient": 70,
                "count": 1
            },
            {
                "itemId": "minecraft:iron_ore",
                "coefficient": 50,
                "count": 1
            },
            {
                "itemId": "minecraft:gold_ore",
                "coefficient": 30,
                "count": 1
            },
            {
                "itemId": "minecraft:redstone_ore",
                "coefficient": 20,
                "count": 1
            },
            {
                "itemId": "minecraft:lapis_ore",
                "coefficient": 20,
                "count": 1
            },
            {
                "itemId": "minecraft:diamond_ore",
                "coefficient": 15,
                "count": 1
            },
            {
                "itemId": "minecraft:emerald_ore",
                "coefficient": 10,
                "count": 1
            },
            {
                "itemId": "minecraft:nether_quartz_ore",
                "coefficient": 5,
                "count": 1
            }
        ]
    },
    {
        "type": "stone",
        "energyUsage": 0,
        "items": [
            {
                "itemId": "minecraft:stone",
                "coefficient": 100,
                "count": 1
            },
            {
                "itemId": "minecraft:diorite",
                "coefficient": 50,
                "count": 1
            },
            {
                "itemId": "minecraft:granite",
                "coefficient": 50,
                "count": 1
            },
            {
                "itemId": "minecraft:andesite",
                "coefficient": 50,
                "count": 1
            },
            {
                "itemId": "minecraft:calcite",
                "coefficient": 20,
                "count": 1
            },
            {
                "itemId": "minecraft:dripstone_block",
                "coefficient": 20,
                "count": 1
            },
            {
                "itemId": "minecraft:deepslate",
                "coefficient": 5,
                "count": 1
            }
        ]
    }
]
Generators default config (Before 2024.5.2)
{
  "generators": {
    "cobble": [
      {
        "itemId": "minecraft:cobblestone",
        "coefficient": 100,
        "count": 1
      },
      {
        "itemId": "minecraft:cobbled_deepslate",
        "coefficient": 30,
        "count": 1
      },
      {
        "itemId": "minecraft:mossy_cobblestone",
        "coefficient": 10,
        "count": 1
      }
    ],
    "ore": [
      {
        "itemId": "minecraft:coal_ore",
        "coefficient": 100,
        "count": 1
      },
      {
        "itemId": "minecraft:copper_ore",
        "coefficient": 70,
        "count": 1
      },
      {
        "itemId": "minecraft:iron_ore",
        "coefficient": 50,
        "count": 1
      },
      {
        "itemId": "minecraft:gold_ore",
        "coefficient": 30,
        "count": 1
      },
      {
        "itemId": "minecraft:redstone_ore",
        "coefficient": 20,
        "count": 1
      },
      {
        "itemId": "minecraft:lapis_ore",
        "coefficient": 20,
        "count": 1
      },
      {
        "itemId": "minecraft:diamond_ore",
        "coefficient": 15,
        "count": 1
      },
      {
        "itemId": "minecraft:emerald_ore",
        "coefficient": 10,
        "count": 1
      },
      {
        "itemId": "minecraft:nether_quartz_ore",
        "coefficient": 5,
        "count": 1
      }
    ],
    "stone": [
      {
        "itemId": "minecraft:stone",
        "coefficient": 100,
        "count": 1
      },
      {
        "itemId": "minecraft:diorite",
        "coefficient": 50,
        "count": 1
      },
      {
        "itemId": "minecraft:granite",
        "coefficient": 50,
        "count": 1
      },
      {
        "itemId": "minecraft:andesite",
        "coefficient": 50,
        "count": 1
      },
      {
        "itemId": "minecraft:calcite",
        "coefficient": 20,
        "count": 1
      },
      {
        "itemId": "minecraft:dripstone_block",
        "coefficient": 20,
        "count": 1
      },
      {
        "itemId": "minecraft:deepslate",
        "coefficient": 5,
        "count": 1
      }
    ]
  }
}
Upgrades default config
{
  "COUNT": 2,
  "COEFFICIENT": 2,
  "SPEED": 2
}

If u want to add own generator go here

(back to top)

Roadmap

  • [x] Customizable generators
  • [x] Generator upgrades
  • [x] EMI Integration
  • [x] Jade Integration
  • [x] REI Integration

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Modrinth is open source.

feat/theseus/tauri-v2@c5403db

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.