Feed The Machine 2.0: SkyBlock Addon

Quick rating

Feed The Machine 2.0: SkyBlock Addon

No reviews yet

Addon that adds skyblock themed things for Feed The Machine 2.0 mod

Tech
Skyblock
Automation & Processing
MCreator
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
ftm2_sb-1.0.0-forge-1.20.1.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Feed The Machine 2.0: SkyBlock Addon is addon for main modification called Feed The Machine 2.0. You will find here things like sieves, barrels, hammers and other things that will help you get something from nothing.

Modification adds:

  • many variants of wooden sieves;
  • stone sieve;
  • copper sieve;
  • iron sieve;
  • golden sieve;
  • diamond sieve;
  • emerald sieve;
  • netherite sieve;
  • wooden barrels;
  • stone barrel;
  • porcelain crucible;
  • rare resources sieve [Multiblock] [Multiblock's structure tutorial how to build is inside manual in main modification Feed The Machine 2.0: https://modrinth.com/mod/feed-the-machine-2-0]
  • wooden scaffolding;
  • stone scaffolding;
  • dirt bricks;
  • machine that creates dirt;
  • machine that creates oxygen;
  • machine that creates crystalized hydrogen;
  • crude steel block;
  • wooden hammer;
  • stone hammer;
  • iron hammer;
  • golden hammer;
  • diamond hammer;
  • netherite hammer;
  • silicon;
  • crude steel ingot;
  • plant string;
  • plant mesh;
  • wooden shears;
  • rare resources mix;
  • ruthenium, osmium, rhodium, palladium, lanthanum and iridium dust;
  • porcelain ball;
  • pebbles of stone variants;
  • ore chunks of ores from Minecraft and Feed The Machine 2.0.

For Rare Resources Sieve there's config for custom recipes and compatibility with KubeJS, here's simple example:

  • file in server scripts:
    const rrs_cobble_results = [
        "minecraft:gravel",
        "minecraft:flint",
        "ftm2_sb:rare_resources_mix",
        "ftm2_sb:silicon",
        "ftm2_sb:stone_pebble"
    ]


    rrs_cobble_results.forEach(rrs1 => {
       event.custom({
            "type": "ftm2_sb:rare_resource_sieving",
            "ingredients": [
                {
                    "item": "minecraft:cobblestone"
                }
            ],
            "output": {
                "item": rrs1,
                "count": 1
            }
        }) 
    });
  • config file named cobblestone.json [just like an item in script without "minecraft:"]:
  {
  "ingredients": {
    "item": "minecraft:cobblestone",
    "time": 50.0,
    "energy": 10.0,
    "water_usage": 10.0
  },
  "output": {
    "1": {
      "item": "minecraft:gravel",
      "amount": 2.0
    },
    "2": {
      "item": "minecraft:flint",
      "amount": 1.0
    },
    "3": {
      "item": "ftm2_sb:rare_resources_mix",
      "amount": 1.0
    },
    "4": {
      "item": "ftm2_sb:silicon",
      "amount": 2.0
    },
    "5": {
      "item": "ftm2_sb:stone_pebble",
      "amount": 3.0
    },
    "6": {
      "item": "minecraft:air",
      "amount": 0.0
    },
    "7": {
      "item": "minecraft:air",
      "amount": 0.0
    },
    "8": {
      "item": "minecraft:air",
      "amount": 0.0
    },
    "9": {
      "item": "minecraft:air",
      "amount": 0.0
    }
  }
}

Hammering blocks with hammer is hardcoded this way: Stone -> Cobblestone -> Gravel -> Dirt -> 50/50 for Sand or Red Sand -> Dust.

For checking drops from gravel, dirt, sand and dust from sieves check tags: ftm2_sb:block_drop_1-8 [e.x.: ftm2_sb:sand_drop_5].

Feed The Machine 2.0 [and this addon]'s discord: Feed The Machine

Feed The Machine 2.0: SkyBlock Addon is addon for main modification called Feed The Machine 2.0. You will find here things like sieves, barrels, hammers and other things that will help you get something from nothing.

Modification adds:

  • many variants of wooden sieves;
  • stone sieve;
  • copper sieve;
  • iron sieve;
  • golden sieve;
  • diamond sieve;
  • emerald sieve;
  • netherite sieve;
  • wooden barrels;
  • stone barrel;
  • porcelain crucible;
  • rare resources sieve [Multiblock] [Multiblock's structure tutorial how to build is inside manual in main modification Feed The Machine 2.0: https://modrinth.com/mod/feed-the-machine-2-0]
  • wooden scaffolding;
  • stone scaffolding;
  • dirt bricks;
  • machine that creates dirt;
  • machine that creates oxygen;
  • machine that creates crystalized hydrogen;
  • crude steel block;
  • wooden hammer;
  • stone hammer;
  • iron hammer;
  • golden hammer;
  • diamond hammer;
  • netherite hammer;
  • silicon;
  • crude steel ingot;
  • plant string;
  • plant mesh;
  • wooden shears;
  • rare resources mix;
  • ruthenium, osmium, rhodium, palladium, lanthanum and iridium dust;
  • porcelain ball;
  • pebbles of stone variants;
  • ore chunks of ores from Minecraft and Feed The Machine 2.0.

For Rare Resources Sieve there's config for custom recipes and compatibility with KubeJS, here's simple example:

  • file in server scripts:
    const rrs_cobble_results = [
        "minecraft:gravel",
        "minecraft:flint",
        "ftm2_sb:rare_resources_mix",
        "ftm2_sb:silicon",
        "ftm2_sb:stone_pebble"
    ]


    rrs_cobble_results.forEach(rrs1 => {
       event.custom({
            "type": "ftm2_sb:rare_resource_sieving",
            "ingredients": [
                {
                    "item": "minecraft:cobblestone"
                }
            ],
            "output": {
                "item": rrs1,
                "count": 1
            }
        }) 
    });

    
  • config file named cobblestone.json [just like an item in script without "minecraft:"]:
  {
  "ingredients": {
    "item": "minecraft:cobblestone",
    "time": 50.0,
    "energy": 10.0,
    "water_usage": 10.0
  },
  "output": {
    "1": {
      "item": "minecraft:gravel",
      "amount": 2.0
    },
    "2": {
      "item": "minecraft:flint",
      "amount": 1.0
    },
    "3": {
      "item": "ftm2_sb:rare_resources_mix",
      "amount": 1.0
    },
    "4": {
      "item": "ftm2_sb:silicon",
      "amount": 2.0
    },
    "5": {
      "item": "ftm2_sb:stone_pebble",
      "amount": 3.0
    },
    "6": {
      "item": "minecraft:air",
      "amount": 0.0
    },
    "7": {
      "item": "minecraft:air",
      "amount": 0.0
    },
    "8": {
      "item": "minecraft:air",
      "amount": 0.0
    },
    "9": {
      "item": "minecraft:air",
      "amount": 0.0
    }
  }
}

Hammering blocks with hammer is hardcoded this way: Stone -> Cobblestone -> Gravel -> Dirt -> 50/50 for Sand or Red Sand -> Dust.

For checking drops from gravel, dirt, sand and dust from sieves check tags: ftm2_sb:block_drop_1-8 [e.x.: ftm2_sb:sand_drop_5].

Feed The Machine 2.0 [and this addon]'s discord: Feed The Machine

Screenshots

Gallery

  • Sieves from stone to netherite
    Sieves from stone to netherite
  • Three skyblock focused machines
    Three skyblock focused machines
  • Wooden sieves
    Wooden sieves
  • Multiblock machine: "Rare Resources Sieve"
    Multiblock machine: "Rare Resources Sieve"

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works