-
Notifications
You must be signed in to change notification settings - Fork 0
浇铸合成
化龙焚天 edited this page May 5, 2021
·
5 revisions
json文件位置:data/tconstruct/recipes/smeltery/casting/
- type:必须为“tconstruct:casting_basin”或“tconstruct:casting_table”
一个是盆,一个是台 - fluid:浇铸物品所耗的液体
- cast: 盆中或者台中的物品
name:液体注册名
amount:整数,所耗液体多少,单位:mB
注:一般1个锭=144mB,1个块=1000mB=1B
- result:输出物品,必须要使用物品注册名
- cooling_time:整数,浇铸所耗的时间,单位:tick(1/20秒)
- cast_consumed:布尔值,是否消耗物品
{
"type": "tconstruct:casting_basin", // 类型:铸造盆
"fluid": {
"name": "tconstruct:molten_cobalt", // 液体注册名
"amount": 1296 // 耗量,单位:mB
},
"result": "tconstruct:cobalt_block", // 输出物品
"cooling_time": 225 // 铸造时间
}
{
"type": "tconstruct:casting_table", // 类型:铸造台
"cast": {
"item": "minecraft:apple" // 槽中物品
},
"cast_consumed": true, // 是否消耗物品
"fluid": {
"name": "tconstruct:molten_gold", // 液体注册名
"amount": 1152 // 耗量,单位:mB
},
"result": "minecraft:golden_apple", // 输出物品
"cooling_time": 161 // 浇铸时间
}
图解