Mod
JSON Recipe Manager
No reviews yet
A mod that allows you to load recipes from various JSON files
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
About
Project Details
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.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
About
Description
This mod allows you to load recipes from various JSON files found in the mod's config folder.
It supports the vanilla minecraft json recipe format.
Example Json files (placed in config/JSONRecipes):
_constants.json <-- special file that contains constants that can be used in all recipes
[{
"name": "MIXED",
"ingredient": [
{
"type": "forge:ore_dict",
"ore": "stickWood"
},
{
"item": "minecraft:torch"
}
]
}]
test_1.json <-- single recipe file
{
"type": "forge:ore_shaped",
"group": "json.recipes",
"result": { "item": "minecraft:diamond_ore" },
"pattern": [
"x x",
" x ",
"x x"
],
"key": {
"x": { "type": "forge:ore_dict", "ore": "gemDiamond" }
}
}
test_2.json <-- multiple recipes file
[{
"type": "forge:ore_shaped",
"group": "json.recipes",
"result": { "item": "minecraft:coal_ore" },
"pattern": [
"x x",
" y ",
"x x"
],
"key": {
"x": { "item": "minecraft:coal", "data": 0 },
"y": { "item": "#MIXED" }
}
}, {
"type": "forge:ore_shaped",
"group": "json.recipes",
"result": { "item": "minecraft:iron_ore" },
"pattern": [
"x x",
" y ",
"x x"
],
"key": {
"x": { "type": "forge:ore_dict", "ore": "ingotIron" },
"y": { "item": "#MIXED" }
}
}]
test_3.json <-- shows how to remove an existing recipe and replace it
{
"remove": [
{ "item": "minecraft:wooden_axe" }
],
"add": [
{
"type": "forge:ore_shaped",
"group": "json.recipes",
"result": {
"item": "minecraft:wooden_axe"
},
"pattern": [
"xx ",
"xx ",
" x"
],
"key": {
"x": {
"type": "forge:ore_dict",
"ore": "stickWood"
}
}
}
]
}
test_4.json <-- shows how to replace a recipe during the 'init' event
{
"when": "init",
"remove": [
{ "item": "stevescarts:modulecomponents", "data": 43 }
],
"add": [
{
"type": "forge:ore_shaped",
"group": "json.recipes",
"result": {
"item": "stevescarts:modulecomponents", "data": 43, "count": 12
},
"pattern": [
"xx ",
"xx ",
" "
],
"key": {
"x": {
"type": "forge:ore_dict",
"ore": "stickWood"
}
}
}
]
}
If you feel the need to talk dirty to the developer:
MMD Cat Mods - Discord <-- use this or github issues instead of curse comments
Screenshots
Gallery
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
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers