As the title says, im trying to figure out how to use NBT data or another type of data in both the ingredient and results. an example being the following:
event.custom({
type: "create:milling",
ingredients: [{ item: "kubejs:basalt_remnants" }],
processing_time: 200.0,
results: [
{
id: "kubejs:basalt_shard", nbt:{"stage1"}
},
],
});
event.custom({
type: "create:milling",
ingredients: [{ id: "kubejs:basalt_shard", nbt:{"stage1"} }],
processing_time: 200.0,
results: [
{
id: "kubejs:basalt_shard", nbt:{"stage2"}
},
],
});
event.custom({
type: "create:milling",
ingredients: [{ id: "kubejs:basalt_shard", nbt:{"stage2"} }],
processing_time: 200.0,
results: [
{
id: "minecraft:gold_block"
},
],
});
if theres another method like tags or somthing else thats easier, that works too