HomeJavaModsCreate Mechanical Spawner Mod (1.21.1, 1.20.1) – Generates Mobs with Rotation Power
Create Mechanical Spawner Mod (1.21.1, 1.20.1) – Generates Mobs with Rotation Power
ModsJava

Create Mechanical Spawner Mod (1.21.1, 1.20.1) – Generates Mobs with Rotation Power

Create Mechanical Spawner Mod adds a mechanical spawner block to the game that uses rotational force to generate mobs. Features: Random Spawn Fluid…

⬇ DownloadOpen in MCModsHubGet it on Google Play →

Create Mechanical Spawner Mod adds a mechanical spawner block to the game that uses rotational force to generate mobs.

Features:

Spawn Recipes

Random Generation Example

{
  "type": "create_mechanical_spawner:spawner", "input": { "type": "fluid_stack", "amount": 100, "fluid": "create_mechanical_spawner:spawn_fluid_random" }, "processingTime": 1500 }

Specific Mob Example

{
  "type": "create_mechanical_spawner:spawner", "input": { "type": "fluid_stack", "amount": 100, "fluid": "create_mechanical_spawner:spawn_fluid_pigling" }, "output": "minecraft:pig", "processingTime": 2500 }

Custom Loot Example

{
  "type": "create_mechanical_spawner:spawner", "customLoot": [ { "id": "minecraft:nether_star" }, { "count": 16, "id": "create:experience_nugget" }, { "chance": 0.5, "count": 8, "id": "create:experience_nugget" } ], "input": { "type": "fluid_stack", "amount": 300, "fluid": "create_mechanical_spawner:spawn_fluid_wither" }, "output": "minecraft:wither", "processingTime": 5000 }

KubeJS Support (Server Script)

Disable All Default Recipes

event.remove({ type: 'create_mechanical_spawner:spawner' })

Disable Specific Mob Recipes

event.remove({ output: 'minecraft:wolf' })

Bindings

Add Random Generation Recipe


// Random Mob (biome-dependent)
event.recipes.createMechanicalSpawnerSpawner(Fluid.of('minecraft:water', 700)).processingTime(8000);

Add Specific Mob Recipe


// Specific Mob
event.recipes.createMechanicalSpawnerSpawner(Fluid.of('minecraft:water', 700)).processingTime(8000).mob("minecraft:skeleton");

Add Recipe with Custom Loot


event.remove({ output: 'minecraft:wither_skeleton' }); // recommended
event.recipes.create_mechanical_spawner.spawner("minecraft:wither_skeleton", Fluid.of('minecraft:lava', 1000))
    .customLoot(
        [
            Output.of("minecraft:redstone", 0.5),
            Output.of("minecraft:iron_ingot", 0.1),
            Output.of("minecraft:redstone", 0.5),
            Output.of("minecraft:iron_ingot", 0.1)
        ]
    )
    .processingTime(2000);

Note: It’s recommended to disable the default recipe before adding the recipe with custom loot.

Screenshots:

Create Mechanical Spawner Mod Download Links

For Minecraft 1.19.2

Forge Version: Download from Server 1Download from Server 2

For Minecraft 1.20.1

Forge Version: Download from Server 1Download from Server 2

For Minecraft 1.21.1, 1.21

NeoForge Version: Download from Server 1Download from Server 2

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more