Description
Create: More Fans
A utility library for creating new types of processing recipes for Create's fans, similar to splashing and haunting recipes.
Overview
This mod provides a KubeJS API to create custom fan processing types without needing to directly modify or extend Create's code. The mod handles all the integration with Create's fan processing system, recipe management, and JEI/EMI compatibility.
Usage
A new CreateMoreFansEvents is available in startup scripts.
const $ParticleTypes = Java.loadClass(
"net.minecraft.core.particles.ParticleTypes"
);
CreateMoreFansEvents.registry((event) => {
event
.create(`create_more_fans:test`)
.setCatalystBlockTag(`minecraft:leaves`)
.setCatalystFluidTag(`kubejs:liquified_leaves`)
.setProcessingParticles($ParticleTypes.CHERRY_LEAVES)
.displayName("Bulk Testing")
.setJeiCategoryDisplayItem(`minecraft:cherry_leaves`)
.setJeiAttachedBlock(`minecraft:oak_leaves`);
});
Note: If a namespace isn't specified it will default to KubeJS, which may cause recipes not to display in EMI.


