parent
12e53b78f4
commit
f526f1c348
2 changed files with 20 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||||||
|
// priority: 0
|
||||||
|
|
||||||
|
onEvent("recipes", event => { |
||||||
|
let material_to_nugget = { |
||||||
|
zinc: "create:zinc_nugget", |
||||||
|
tin: "thermal:tin_nugget", |
||||||
|
lead: "thermal:lead_nugget", |
||||||
|
silver: "thermal:silver_nugget", |
||||||
|
nickel: "thermal:nickel_nugget", |
||||||
|
aluminum: "immersiveengineering:nugget_aluminum", |
||||||
|
uranium: "immersiveengineering:nugget_uranium", |
||||||
|
}; |
||||||
|
|
||||||
|
for (let [material, nugget] of Object.entries(material_to_nugget)) { |
||||||
|
event.smelting(`6x ${nugget}`, `malum:${material}_node`); |
||||||
|
event.blasting(`6x ${nugget}`, `malum:${material}_node`); |
||||||
|
} |
||||||
|
}); |
Loading…
Reference in new issue