diff --git a/kubejs/server_scripts/mods/mysticalagriculture/crafting.js b/kubejs/server_scripts/mods/mysticalagriculture/crafting.js index 91fc242..5d597fa 100644 --- a/kubejs/server_scripts/mods/mysticalagriculture/crafting.js +++ b/kubejs/server_scripts/mods/mysticalagriculture/crafting.js @@ -107,6 +107,36 @@ ServerEvents.recipes(event => { E: 'mysticalagriculture:turtle_essence' }).id('kubejs:mysticalagriculture/turtle_egg') + // add recipe for warped wart block + event.shaped('8x minecraft:warped_wart_block', [' A ', 'A ', 'AAA'], { + A: 'mysticalagriculture:nether_essence' + }).id('allthemods:minecraft/warped_wart_block') + + // add recipe for shroomlight + event.shaped('6x minecraft:shroomlight', ['AGA', 'GAG', 'AGA'],{ + A: 'mysticalagriculture:nether_essence', + G: 'mysticalagriculture:glowstone_essence' + }).id('allthemods:minecraft/shroomlight') + + //add recipes for froglights + event.shaped('8x minecraft:ochre_froglight', ['NDG', 'GDN', 'NDG'],{ + N: 'mysticalagriculture:nature_essence', + D: 'mysticalagriculture:dye_essence', + G: 'mysticalagriculture:glowstone_essence' + }).id('allthemods:minecraft/ochre_froglight') + + event.shaped('8x minecraft:pearlescent_froglight', ['DDD', 'GNG', 'NGN'],{ + N: 'mysticalagriculture:nature_essence', + D: 'mysticalagriculture:dye_essence', + G: 'mysticalagriculture:glowstone_essence' + }).id('allthemods:minecraft/pearlescent_froglight') + + event.shaped('8x minecraft:verdant_froglight', ['NGD', 'GND', 'NGD'],{ + N: 'mysticalagriculture:nature_essence', + D: 'mysticalagriculture:dye_essence', + G: 'mysticalagriculture:glowstone_essence' + }).id('allthemods:minecraft/verdant_froglight') + // remove gaia crux event.remove({ id: "mysticalagradditions:gaia_spirit_crux" }) })