This is an abridged version of Simple Bites for those who want the food-related content without all of the extra features from the full mod.
It includes the foods and drinks, along with related trades, loot, fuels and crafting recipes.
💡Features:
- All foods & drinks from the original Simple Bites
- Foods can also be obtained naturally in the world
- Villagers and Wandering Traders can trade certain foods
- Wheat Porridge can be found in Plains, Desert and Savanna villages
- Piglins can drop Nether Feast Stew
- Piglin: ~5%
- Piglin Brute: ~12%
🔥Additional Fuels:
- Paper Fuel - paper, maps, filled maps, banner patterns
- Leaves Fuel - leaves from various vanilla trees
- Book Fuel - books, books & quill, written books
- Plant Fuel - various vanilla plants and flowers
Original Simple Bites mod: Link for Simple Bites
KubeJS example: (Used version: kubejs-forge-2001.6.5-build.26.jar)
curseforge\minecraft\Instances\modpack\kubejs\server_scripts\removerecipes.js
ServerEvents.recipes(event => {
// Removing recipes for specific items from the mod based on their modID
event.remove({ output: 'simplerbites:beef_stew' })
event.remove({ output: 'simplerbites:blueberry_juice' })
event.remove({ output: 'simplerbites:dried_rotten_flesh_block' })
})
You can also hide specific item from showing in JEI
For example: (Used version: jei-1.20.1-forge-15.20.0.112.jar)
curseforge\minecraft\Instances\yourmodpack\config\jei\blacklist.cfg
modid:item
simplerbites:beef_stew
simplerbites:apple_pie
minecraft:raw_copper

