Compost Mod — Configuration
Configuration & Data Packs
The Compost mod is built to be a framework for pack creators. All composting rewards are handled through standard Minecraft JSON loot tables.
Customizing Rewards
To change the rewards, you must create a data pack and navigate to:
data/compost/loot_tables/composter.json
Within this file, you can define multiple "pools" of items. You can use standard vanilla predicates (like location_check or weather_check) and the mod's custom match_compostable condition to create complex logic.
Example Logic:
* If is_raining is true, add brown_mushroom to the pool with a weight of 50.
* If composted_item is minecraft:apple, add minecraft:apple_seeds to the pool.