
Create Sifting
A sifter block for the amazing Create mod
752K загрузок137 подписчиковLGPL-3.0-onlyforgeneoforge
Обновлён 21 июня 2026 г. · опубликован 22 сентября 2022 г.
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
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.
- Output
- Input
- Shift + right click: Mesh
Brass Sifter
Highredstone 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
- Texture location (for this examples):
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.
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 1.21.1-2.2.2 | Бета | 1.21.1 | neoforge | 21 июня 2026 г. | .jar (693 КБ) |
| 1.21.1-2.2.1 | Бета | 1.21.1 | neoforge | 13 декабря 2025 г. | .jar (693 КБ) |
| 1.21.1-2.2.0 | Бета | 1.21.1 | neoforge | 15 ноября 2025 г. | .jar (692 КБ) |
| 1.21.1-2.1.6 | Бета | 1.21.1 | neoforge | 22 июня 2025 г. | .jar (695 КБ) |
| 1.20.1-1.8.6-6.0.6 | Релиз | 1.20.1 | forge, neoforge | 16 июня 2025 г. | .jar (606 КБ) |
| 1.21.1-2.1.4 | Бета | 1.21.1 | neoforge | 13 июня 2025 г. | .jar (686 КБ) |
| 1.21.1-2.1.3 | Бета | 1.21.1 | neoforge | 24 мая 2025 г. | .jar (685 КБ) |
| 1.21.1-2.1.2 | Бета | 1.21.1 | neoforge | 23 мая 2025 г. | .jar (685 КБ) |
| 1.21.1-2.1.1 | Бета | 1.21.1 | neoforge | 18 мая 2025 г. | .jar (682 КБ) |
| 1.21.1-2.1.1 | Бета | 1.21.1 | neoforge | 8 мая 2025 г. | .jar (678 КБ) |
| 1.21.1-2.1.0 | Бета | 1.21.1 | neoforge | 7 мая 2025 г. | .jar (678 КБ) |
| 1.21.1-2.0.7-6.0.4 | Бета | 1.21.1 | neoforge | 20 апреля 2025 г. | .jar (758 КБ) |
| 1.21.1-2.0.6-6.0.4 | Бета | 1.21.1 | neoforge | 20 апреля 2025 г. | .jar (752 КБ) |
| 1.21.1-2.0.5-6.0.4 | Бета | 1.21.1 | neoforge | 18 апреля 2025 г. | .jar (758 КБ) |
| 1.21.1-2.0.4-6.0.4 | Бета | 1.21.1 | neoforge | 18 апреля 2025 г. | .jar (757 КБ) |
Показаны последние 15 из 54 версий. Все версии — на Modrinth.
Ченджлог
1.21.1-2.2.2Бета1.21.1 · 21 июня 2026 г.
- Support Create 6.0.10
- Adjusted sifter bounding boxes by @anzuftnw
1.21.1-2.2.1Бета1.21.1 · 13 декабря 2025 г.
- Fixed JEI
1.21.1-2.2.0Бета1.21.1 · 15 ноября 2025 г.
- Support Create 6.0.8 by @Jishuna
- Support KubeJS 7.2 by @Jishuna
- Support for EMI
1.21.1-2.1.6Бета1.21.1 · 22 июня 2025 г.
- Compat for Farmers delight
1.20.1-1.8.6-6.0.6Релиз1.20.1 · 16 июня 2025 г.
- Update for create 6.0.6
1.21.1-2.1.4Бета1.21.1 · 13 июня 2025 г.
- Update for Create 6.0.6
- Fixed Recipe Requirements not showing in JEI
1.21.1-2.1.3Бета1.21.1 · 24 мая 2025 г.
- Fixed mesh pulling.
1.21.1-2.1.2Бета1.21.1 · 23 мая 2025 г.
- Added fern.
- Fixed advanced brass netherite scrap.
- Fixed particles showing without speed.
- Fixed mesh durability whe used in the sifters.
- Added Unbreaking enchantment to the meshes.
- Added copper piece.
Полная история изменений — на Modrinth.
Комментарии
Загружаем…