贸易站

贸易站

物品交易机。

经济

Trading Station

  • 物品交易机器。
  • 为整合包制作。它不会添加任何配方。

专用 Wiki

1.21.1-1.x 版本需要 Mechanicals Lib

特性

  • 无电力需求的基础交易站。
  • 需要 RF 电力的供能交易站。
  • 自定义交易配方
  • 每个配方可自定义配方需求。
  • 每种交易站都有对应的不可破坏变体。
  • 可配置的消耗与进度。
  • 搭配附属模组可使用机械(Create 附属)交易站。链接

交易配方

  • "type": "trading_station:trading"
  • result:输出物品。允许使用物品 components
  • ingredients:所需物品。
  • processingTime:所需时间,以刻为单位。
  • recipeRequirements:自定义配方需求。WIKI

示例(一种材料)

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

示例(两种材料)

{
  "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
}

示例(附魔书)

{
	"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
}

示例(机器需求)

{
	"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"
		}
	]
}

KubeJS

一些示例

// Processing time
event.recipes.trading_station.trading(Item.of('minecraft:gold_block', 5),[Item.of("5x minecraft:oak_log"),Item.of("10x minecraft:birch_log")]).processingTime(250);

//Enchanted book result
event.recipes.trading_station.trading(Item.of('minecraft:enchanted_book[stored_enchantments={levels:{"minecraft:unbreaking":3}}]', 1),[Item.of("minecraft:diamond", 5)]).processingTime(100);

//With machine requirement
event.recipes.trading_station.trading(Item.of('minecraft:emerald_block'),[Item.of("5x minecraft:diamond")]).processingTime(100).requirements(MachineId.of(["powered","mechanical"]));

机器 ID(绑定)

MachineId.of(["powered","mechanical"])