10RF
本帖最后由 Kaze_Fengxi 于 2024-10-15 06:44 编辑
如下,1.20.1,KubeJS版本2001.6.5-build.14,KubeJS Create版本2001.2.5-build,脚本按wiki写的- //煤炭块 - 八次滚压 - 钻石
- ServerEvents.recipes(e => {
- let inter = 'create_wt:diamond_nugget'
- e.recipes.create.sequenced_assembly([
- Item.of('create:precision_mechanism').withChance(95.0),
- Item.of('2x coal').withChance(5.0)
- ], 'coal_block'[
- e.recipes.createPressing(inter, inter)
- ]).transitionalItem(inter).loops(8)
- })
复制代码
|
最佳答案
查看完整内容
《], 'coal_block'[》
这里少了个逗号
加了逗号应该是
《], 'coal_block',[》
|