Skip to main content

Creating Memory Programmer Recipes and Categories

In this article we will look into how to make Memory Programmer Categories and Program recipes.

Memory Programmer Categories

Folder Location: data/NAMESPACE_HERE/envirocore/memory_programmer_category/

This is a base blank category without item Icons:

{}

Yup that's right, all you need is an empty json file for the base category although you will need to add Localizations to the category id using some sort of resource loader or resource pack. Below is what you'd need to add to your lang file to add a localization to the category:

"memory_programmer_category.NAPESPACE_HERE.multi_miners": "NAME OF CATEGORY HERE"

You can add item icons to your Category too, below is an example of a Memory Programmer Category with icons:

{
  "icons":[
    {"raw:item": "minecraft:diamond_ore"},
    {"raw:item": "minecraft:gold_ore"}
  ]
}
Memory Programmer Recipes

Folder Location: data/NAMESPACE_HERE/envirocore/memory_programmer/

This is the base Memory Programmer recipe.

{
  "categories": [],
  "program": "",
  "r": 255, "g": 255, "b": 255,
  "input": {
  },
  "output": {
  },
  "duration": {"raw:int": 40}
}