Skip to content

Recipe Examples

One ingredient

{
"type": "trading_station:trading",
"result": {
"id": "minecraft:diamond",
"count": 5
},
"ingredients": [
{
"ingredient": {
"item": "minecraft:emerald"
},
"count": 5
}
]
}

Two ingredients

{
"type": "trading_station:trading",
"result": {
"id": "minecraft:gold_block",
"count": 5
},
"ingredients": [
{
"ingredient": {
"item": "minecraft:oak_log"
},
"count": 5
},
{
"ingredient": {
"item": "minecraft:birch_log"
},
"count": 10
}
],
"processingTime": 250
}

Enchanted Sword

{
"type": "trading_station:trading",
"result": {
"id": "minecraft:enchanted_book",
"count": 1,
"components": {
"minecraft:enchantments": {
"levels": {
"minecraft:sharpness": 3
}
}
}
},
"ingredients": [
{
"ingredient": {
"item": "minecraft:diamond"
},
"count": 5
}
],
"processingTime": 100
}

Enchanted book

{
"type": "trading_station:trading",
"result": {
"id": "minecraft:enchanted_book",
"count": 1,
"components": {
"minecraft:stored_enchantments": {
"levels": {
"minecraft:density": 3
}
}
}
},
"ingredients": [
{
"ingredient": {
"item": "minecraft:diamond"
},
"count": 5
}
],
"processingTime": 100
}

Machine Requirement

{
"type": "trading_station:trading",
"result": {
"id": "minecraft:emerald_block",
"count": 1
},
"ingredients": [
{
"ingredient": {
"item": "minecraft:diamond"
},
"count": 5
}
],
"processingTime": 100,
"requirements": [
{
"value": [
"powered",
"mechanical"
],
"type": "trading_station:machine_id"
}
]
}