67 lines
1.6 KiB
JavaScript
Executable File
67 lines
1.6 KiB
JavaScript
Executable File
ServerEvents.recipes(event => {
|
|
event.replaceInput(
|
|
{id: 'ars_nouveau:enchanting_apparatus'},
|
|
'minecraft:diamond',
|
|
'#kubejs:grist/intelligent/improved'
|
|
);
|
|
|
|
event.shaped('ars_nouveau:imbuement_chamber', [
|
|
'ABA',
|
|
'ACA',
|
|
'ABA'
|
|
], {
|
|
'A': 'ars_nouveau:archwood_planks',
|
|
'B': 'minecraft:gold_ingot',
|
|
'C': '#kubejs:grist/intelligent/basic'
|
|
});
|
|
|
|
event.replaceInput(
|
|
{mod: 'ars_nouveau'},
|
|
'minecraft:lapis_lazuli',
|
|
'#kubejs:grist/intelligent/basic'
|
|
);
|
|
|
|
event.replaceInput(
|
|
{mod: 'ars_nouveau'},
|
|
'minecraft:redstone_block',
|
|
'#kubejs:grist/energetic/basic'
|
|
);
|
|
|
|
event.shaped('ars_nouveau:novice_spell_book', [
|
|
' A ',
|
|
'ABA',
|
|
' A '
|
|
], {
|
|
'A': '#kubejs:grist/intelligent/basic',
|
|
'B': 'minecraft:book'
|
|
});
|
|
|
|
event.shaped('ars_nouveau:dominion_wand', [
|
|
' AC',
|
|
' BA',
|
|
'B ',
|
|
], {
|
|
'A': 'ars_nouveau:source_gem',
|
|
'B': 'minecraft:stick',
|
|
'C': '#kubejs:grist/intelligent/basic'
|
|
});
|
|
|
|
event.recipes.ars_nouveau.imbuement(
|
|
'kubejs:grist_intelligent_basic_block',
|
|
'2x ars_nouveau:source_gem_block',
|
|
800,
|
|
['minecraft:gold_block', 'kubejs:insightful_blend', 'minecraft:lapis_block']
|
|
);
|
|
|
|
event.replaceInput(
|
|
{output: 'ars_nouveau:arcane_pedestal'},
|
|
'ars_nouveau:source_gem',
|
|
'kubejs:grist_intelligent_basic'
|
|
);
|
|
|
|
event.replaceInput(
|
|
{output: 'ars_nouveau:sourcestone'},
|
|
'ars_nouveau:source_gem',
|
|
'minecraft:lapis_lazuli'
|
|
);
|
|
}); |