Hi 
So I've decided to take a gamble on the fact that when the new game engine is released we'll still be able to use Java as a plugin language.
I'm actually re-writing my server plugin from scratch - forgot how much code there was! 
Anyways, I've been looking at Custom Recipes, I appreciate no new API features are going to be added (not for along time now). However, I was trying to get a custom item created using custom items.
My question is should this work?
CustomRecipe recipe = new CustomRecipe("diamond_pickaxe", CustomRecipe.Type.CustomItem, 0, "special", "workbench");
//Define the required ingredients
recipe.setIngredients("8x lumber", "4x ironplate" , "1x diamond");
Or can we only create custom items from "stock" items?
(diamond is the UUID of a custom item, loaded prior to loading the custom recipe)
Many thanks,
Yahwho