You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
385 B
9 lines
385 B
// priority: 0 |
|
|
|
onEvent("recipes", event => { |
|
for (let material of [ "zinc", "tin", "lead", "silver", "nickel", "aluminum", "uranium" ]) { |
|
let nugget = AlmostUnified.getPreferredItemForTag(`forge:nuggets/${material}`); |
|
event.smelting(nugget.withCount(6), `malum:${material}_node`).xp(0.25); |
|
event.blasting(nugget.withCount(6), `malum:${material}_node`).xp(0.25); |
|
} |
|
});
|
|
|