Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
Create Sifting

Create Sifting

A sifter block for the amazing Create mod

271.8k
108
Game Mechanics
Technology

Compatibility

Minecraft: Java Edition

1.21.1
1.20–1.20.1
1.19.2–1.19.4
1.18.2

Platforms

Forge
NeoForge

Supported environments

Client and server

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Links

Report issues View source Visit wiki

Creators

oierbravo
oierbravo Owner

Details

Licensed LGPL-3.0-only
Published 2 years ago
Updated last month
DescriptionChangelogVersions

Create Sifting

A simple sifter for the amazing Create mod. This mod it's meant to be used in modpacks.

Heavily inspired on ex nihilo sieve.

Dedicated wiki

1.21.1-2.x Version Requires Mechanicals Lib

  • Modrinth

Version support & documentation

  • 1.21.1: Supported. Documentation refers to this version.
  • 1.20.1: Only critical issues 1.20.x Documentation
  • 1.19.x: Unsupported: 1.19.x Documentation
  • 1.18.x: Unsupported: 1.18.x Documentation

Meshes

Works with the sifter or in hand (like create sandpaper)

  • String, Andesite, Brass, Sturdy
  • Advanced meshes only work with the brass sifter.
  • Configurable mesh durability.
    • By default, only applies to hand sifting.
    • Enchantable with Unbreaking
  • Added zinc mesh for modpacks.

Sifter

Automated sifting. Based on the Millstone block works more or less in the same way. You can toss items on top or feed it with any item automated way (hoppers, funnels, chute...)

  • Right Click with a mesh to add it.
  • Right Click with empty hand to clear inventories.
    1. Output
    2. Input
    3. Shift + right click: Mesh

Brass Sifter

  • High redstone disables processing
  • Output filter.
  • 8x processing per cycle, configurable.
  • Bigger output capaticy, configurable.

Recipes

Waterlogged feature (optional)

  • "waterlogged":"true"
  • Sifters can be waterlogged to get different output.
  • In hand meshes act as waterlogged when the player is in a LiquidBlock

Advanced sifter per recipe (optional)

  • "advancedSifter":"true"
  • Recipes can require brass sifter for normal meshes too.

Compact recipes.

  • Recipes with same mesh and input block gets merged allowing easier compat.
  • Current mods:
    • EnderIO
    • Ars nouveau
    • AE2

Recipes examples

  • See Included recipes

KubeJS

  • Remove al Sifting recipes.
ServerEvents.recipes(event => {
  event.remove({ type: 'createsifter:sifting' })
})
  • Chanced output (binding)
Output.of('minecraft:clay', 0.5)
  • Add recipes
ServerEvents.recipes(event => {
  /** 
    createsifter.sifting(Output[] result, Ingredient ingredient, ItemStack mesh)
    .processingTime(int time) // optional, default: 500
    .waterlogged(true) //optional, default: false
    .advancedSifter(true) //optional, default: false
  **/
  event.recipes.createsifter.sifting([Output.of('minecraft:clay',0.5),Output.of('minecraft:redstone')],'minecraft:sand',"createsifter:andesite_mesh")
})
  • Custom meshes
    • Texture location (for this examples): kubejs/assets/kubejs/textures/item/diamond_mesh.png
StartupEvents.registry('item', event => {
    
    //Basic mesh
	event.create('diamond_mesh','createsifter:mesh')
      .displayName('Diamond Mesh')
      .parentModel("createsifter:block/meshes/mesh")
      .texture("mesh","kubejs:item/diamond_mesh")
      .maxDamage(77) //Mesh durability
	
	//Advanced mesh
	event.create('advanced_diamond_mesh','createsifter:advanced_mesh')
      .displayName('Advanced Diamond Mesh')
      .parentModel("createsifter:block/meshes/mesh")
      .texture("mesh","kubejs:item/diamond_mesh")
      .texture("frame","micraft:block/diamond_block")
      .maxDamage(200) //Mesh durability
	
})

Thanks to the Creators of Create.

Modrinth is open source.

main@acf2694

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.