create-enchantment-industry: add the kubejs anyways
This commit is contained in:
34
kubejs/server_scripts/mods/create_enchantment_industry.js
Normal file
34
kubejs/server_scripts/mods/create_enchantment_industry.js
Normal file
@ -0,0 +1,34 @@
|
||||
ServerEvents.recipes(event => {
|
||||
event.remove({output: 'create_enchantment_industry:disenchanter'});
|
||||
event.remove({output: 'create_enchantment_industry:printer'});
|
||||
|
||||
event.recipes.ars_nouveau.enchanting_apparatus(
|
||||
[
|
||||
'create:item_drain',
|
||||
'#kubejs:grist/intelligent/improved'
|
||||
],
|
||||
'create_enchantment_industry:disenchanter'
|
||||
);
|
||||
|
||||
event.recipes.ars_nouveau.enchanting_apparatus(
|
||||
[
|
||||
'#kubejs:grist/intelligent/improved',
|
||||
'#kubejs:grist/build/improved'
|
||||
],
|
||||
'create:item_drain',
|
||||
'create_enchantment_industry:disenchanter',
|
||||
2000
|
||||
);
|
||||
|
||||
event.recipes.ars_nouveau.enchanting_apparatus(
|
||||
[
|
||||
'#kubejs:grist/intelligent/improved',
|
||||
'#kubejs:grist/build/improved',
|
||||
'minecraft:book',
|
||||
'minecraft:book'
|
||||
],
|
||||
'create:spout',
|
||||
'create_enchantment_industry:printer',
|
||||
2000
|
||||
);
|
||||
});
|
Reference in New Issue
Block a user