Description
Adds a new trading block similar to Stardew Valley selling bin for Minecraft.
Selling Bin (yostradepost:tradepost) is located in the original utility block bar in Creative mode and can be crafted using red wool, white wool, any type of plank, and barrel.
After the player puts in the item to be traded, the Selling Bin will process the transaction on a new day, converting the specified item into another specified item (Configurable in the yostradepost.json in the config folder).
Provides a highly customizable and clean way to configure.
-
The Selling Bin will perform 3 processing times on a new day (considered as 1 transaction), and a single transaction supports three-level currency conversion (item - currency 1 - currency 2 - currency 3).
-
["Input Item ID", "Input Quantity", "Output Item ID", "Output Quantity"] (Numbers can be used without double quotation marks)
-
Example:
8 Iron ingots(minecraft:iron_ingot)-> 1 Emerald(minecraft:emerald)
["minecraft:iron_ingot", 8, "minecraft:emerald", 1]
-
Full text:
{
"trades": [
["输入物品ID", "输入数量", "输出物品ID", "输出数量"],
["minecraft:iron_ingot", 8, "minecraft:emerald", 1],
["minecraft:gold_ingot", 2, "minecraft:emerald", 1],
["minecraft:emerald", 8, "minecraft:diamond", 1]
]
}
- In this configuration, the iron and gold ingots entered by the player will be converted into emeralds (first processing), and if the number of iron/gold ingots entered can be exchanged for more than 8 emeralds, it will be automatically converted to 1 diamond (second processing) without a third processing.


