求助各位大佬,如何选中某个特定模组内的物品,并返回一个数组对象? - // Add all items from the forge:stone tag to the c:stone tag, unless the id contains diorite
- const stones = event.get('forge:stone').getObjectIds()
- const blacklist = Ingredient.of(/.*diorite.*/)
- stones.forEach(stone => {
- if (!blacklist.test(stone)) event.add('c:stone', stone)
- })
复制代码我希望对特定模组的物品也进行类似的操作,以便通过函数批量更改配方。例如,将机械动力模组所有物品中,注册名字符串中含有“andesite_alloy”的物品的配方全部删除。 本人 JS 水平有限,望各位大佬见谅! |