IMC-Vocality/kubejs/server_scripts/slabfix.js
2025-04-09 22:50:07 -05:00

75 lines
4.4 KiB
JavaScript

ServerEvents.recipes(event => {
function sleb(output, slebInput) {
event.shaped(output,
['SSS'
],
{
S: slebInput
}
)
}
sleb('6x upgrade_aquatic:river_slab', 'upgrade_aquatic:river_planks')
sleb('6x upgrade_aquatic:driftwood_slab', 'upgrade_aquatic:driftwood_planks')
sleb('6x betternether:willow_slab', 'betternether:willow_planks')
sleb('6x forbidden_arcanus:aurum_slab', 'forbidden_arcanus:aurum_planks')
sleb('6x forbidden_arcanus:edelwood_slab', 'forbidden_arcanus:edelwood_planks')
sleb('6x forbidden_arcanus:fungyss_slab', 'forbidden_arcanus:fungyss_planks')
sleb('6x autumnity:maple_slab', 'autumnity:maple_planks')
sleb('6x betterend:mossy_glowshroom_slab', 'betterend:mossy_glowshroom_planks')
sleb('6x betterend:lucernia_slab', 'betterend:lucernia_planks')
sleb('6x betterend:pythadendron_slab', 'betterend:pythadendron_planks')
sleb('6x betterend:end_lotus_slab', 'betterend:end_lotus_planks')
sleb('6x betterend:lacugrove_slab', 'betterend:lacugrove_planks')
sleb('6x betterend:dragon_tree_slab', 'betterend:dragon_tree_planks')
sleb('6x betterend:tenanea_slab', 'betterend:tenanea_planks')
sleb('6x betterend:helix_tree_slab', 'betterend:helix_tree_planks')
sleb('6x betterend:umbrella_tree_slab', 'betterend:umbrella_tree_planks')
sleb('6x betterend:jellyshroom_slab', 'betterend:jellyshroom_planks')
sleb('6x regions_unexplored:redwood_slab', 'regions_unexplored:redwood_planks')
sleb('6x regions_unexplored:kapok_slab', 'regions_unexplored:kapok_planks')
sleb('6x regions_unexplored:blackwood_slab', 'regions_unexplored:blackwood_planks')
sleb('6x regions_unexplored:blue_bioshroom_slab', 'regions_unexplored:blue_bioshroom_planks')
sleb('6x regions_unexplored:pink_bioshroom_slab', 'regions_unexplored:pink_bioshroom_planks')
sleb('6x regions_unexplored:yellow_bioshroom_slab', 'regions_unexplored:yellow_bioshroom_planks')
sleb('6x regions_unexplored:green_bioshroom_slab', 'regions_unexplored:green_bioshroom_planks')
sleb('6x regions_unexplored:brimwood_slab', 'regions_unexplored:brimwood_planks')
sleb('6x regions_unexplored:joshua_slab', 'regions_unexplored:joshua_planks')
sleb('6x regions_unexplored:alpha_slab', 'regions_unexplored:alpha_planks')
sleb('6x regions_unexplored:socotra_slab', 'regions_unexplored:socotra_planks')
sleb('6x regions_unexplored:baobab_slab', 'regions_unexplored:baobab_planks')
sleb('6x regions_unexplored:mauve_slab', 'regions_unexplored:mauve_planks')
sleb('6x regions_unexplored:magnolia_slab', 'regions_unexplored:magnolia_planks')
sleb('6x regions_unexplored:palm_slab', 'regions_unexplored:palm_planks')
sleb('6x regions_unexplored:pine_slab', 'regions_unexplored:pine_planks')
sleb('6x regions_unexplored:cobalt_slab', 'regions_unexplored:cobalt_planks')
sleb('6x regions_unexplored:dead_slab', 'regions_unexplored:dead_planks')
sleb('6x regions_unexplored:larch_slab', 'regions_unexplored:larch_planks')
sleb('6x regions_unexplored:eucalyptus_slab', 'regions_unexplored:eucalyptus_planks')
sleb('6x regions_unexplored:mauve_slab', 'regions_unexplored:mauve_planks')
sleb('6x netherexp:claret_slab', 'netherexp:claret_planks')
sleb('6x mynethersdelight:powdery_slab', 'mynethersdelight:powdery_planks')
sleb('6x hexerei:mahogany_slab', 'hexerei:mahogany_planks')
sleb('6x hexerei:willow_slab', 'hexerei:willow_planks')
sleb('6x hexerei:witch_hazel_slab', 'hexerei:witch_hazel_planks')
sleb('6x cataclysm:chorus_slab', 'cataclysm:chorus_planks')
sleb('6x alexscaves:pewen_slab', 'alexscaves:pewen_planks')
sleb('6x alexscaves:thornwood_slab', 'alexscaves:thornwood_planks')
sleb('6x environmental:plum_slab', 'environmental:plum_planks')
sleb('6x environmental:wisteria_slab', 'environmental:wisteria_planks')
sleb('6x environmental:pine_slab', 'environmental:pine_planks')
sleb('6x environmental:willow_slab', 'environmental:willow_planks')
sleb('6x caverns_and_chasms:azalea_slab', 'caverns_and_chasms:azalea_planks')
sleb('6x atmospheric:kousa_slab', 'atmospheric:kousa_planks')
sleb('6x atmospheric:grimwood_slab', 'atmospheric:grimwood_planks')
sleb('6x atmospheric:aspen_slab', 'atmospheric:aspen_planks')
sleb('6x atmospheric:yucca_slab', 'atmospheric:yucca_planks')
sleb('6x atmospheric:laurel_slab', 'atmospheric:laurel_planks')
sleb('6x atmospheric:morado_slab', 'atmospheric:morado_planks')
}
)