Pedestal Crafting - Patched
This mod is an improved version of the original Pedestal Crafting by Axieum, featuring critical bug fixes and additional enhancements. The previous version had not been updated since June 2018.
Patch Improvements
Fixed Bugs
- Resolved crash issues during server loading
- Fixed particle effects - now all effects are displayed instead of just one
- Corrected the grass pedestal texture that previously appeared gray
Enhancements
- Added support for ingredient transformations
- Implemented ability to lock recipes to specific pedestal variants
- Expanded language support: Indonesian, Turkish, Hindi, Dutch, German, Swedish, Arabic, Italian
How It Works
Crafted pedestals are placed around the central Pedestal Core block. Ingredients are placed on the pedestals while the item to be transformed goes on the core block. Pedestals can safely be used as decorative elements, unlike the core block.
Compatibility with Other Mods
Full integration support for:
- Information mods WAILA/HWYLA The One Probe
- Inventory expansions JEI/HEI
- Recipe customization mod CraftTweaker The GroovyScript system
For Modpack Developers
This modification is popular among modpack creators due to its unique approach to crafting systems. All recipe customization is handled through the well-known CraftTweaker mod with the following syntax:
mods.pedestalcrafting.Pedestal.addRecipe(output_item, crafting_time, core_item, ingredients[]);
mods.pedestalcrafting.Pedestal.addRecipe(output_item, crafting_time, core_item, ingredients[], crafting_particles[], post_craft_core_particles[], post_craft_pedestal_particles[]);
The second function version allows customization of particle effects at different crafting stages. Particle parameters:
- Displayed in the main area throughout the crafting process
- Triggered after successful completion on the core block
- Activated on pedestals when extracting finished ingredients
Example recipe creating bedrock over 5 seconds (granite block in center with sand block, iron ingot, gold ingot, and obsidian surrounding):
mods.pedestalcrafting.Pedestal.addRecipe(<minecraft:bedrock>, 100, <minecraft:stone:1>, [
<minecraft:sand>,
<ore:ingotIron>,
<ore:ingotGold>,
<minecraft:obsidian>
]);
Another example with customized particle effects:
mods.pedestalcrafting.Pedestal.addRecipe(<minecraft:apple>, 100, <minecraft:diamond>, [
<ore:ingotIron>,
<ore:ingotIron>,
<ore:ingotIron>,
<ore:ingotIron>,
<ore:ingotIron>
], [["endRod", "2"]], [["portal", "50"]], [["smoke", "25"], ["flame", "5"]]);
If particle count is not specified, it defaults to 3.