The Fabricator is a specialized crafting station featuring unique printing animations. It uses a custom recipe system that allows developers to gate items behind specific player progression and resource costs.

Made with

4 Steel Ingot 2 Advanced Wire 1 Super Circuit 2 Any Glass Pane

image.png

{
  "type": "corewithstuff:fabricator",
  "category": "category.corewithstuff.armor",
  "display_name": "Full Diamond Armor",
  "print_time_ticks": 400,
  "energy_cost": 25000,
  "results": [
    {
      "item": "minecraft:diamond_helmet",
      "count": 1
    },
    {
      "item": "minecraft:diamond_chestplate",
      "count": 1
    },
    {
      "item": "minecraft:diamond_leggings",
      "count": 1
    },
    {
      "item": "minecraft:diamond_boots",
      "count": 1
    }
  ],
  "requirements": {
    "items": [
      {
        "item": "minecraft:diamond",
        "count": 24
      }
    ],
    "advancements": [
      "minecraft:story/mine_diamond"
    ],
    "scores": [
      {
        "objective": "fabricator_level",
        "min": 5
      }
    ]
  }
}