Ex Sartagine
The Ex Sartagine modification is entirely dedicated to a functional frying pan for cooking in Minecraft. The name translates as "from the frying pan," which perfectly reflects its primary purpose.
Key Benefits
This block offers several significant improvements compared to a regular furnace:
- Completely eliminates the need for coal usage
- Food cooking process is significantly faster
- More aesthetically pleasing appearance compared to two stacked furnaces
- Average experience gain is higher than with a standard furnace
- Can only be placed on top of an active furnace
Limitations and Features
Despite all advantages, the frying pan has certain restrictions:
- Requires a pickaxe to mine
- Suitable only for cooking edible products
- Must be placed directly on a working furnace
Crafting Recipes
Additional Blocks and Features
The modification includes an expanded kitchen system with various specialized blocks:
- Smelter - for smelting ores following the same principle as the frying pan
- Cooking Pot - for preparing boiled eggs, potatoes, beans, and various soups
- Cooking Range - a multifunctional block for various culinary operations
Technical Requirements
For proper operation, Ex Sartagine requires installation of SubLib library version "sublib-1.11-1.1.4.0" or newer.
For Developers
The mod adds entries to OreDictionary for registering food products:
OreDictionary.registerOre("egg", boiled_egg);
OreDictionary.registerOre("ingredientEgg", boiled_egg);
OreDictionary.registerOre("cropVegetable", boiled_potato);
OreDictionary.registerOre("cropVegetable", boiled_beans);
OreDictionary.registerOre("foodFlour", flour);
OreDictionary.registerOre("dustFlour", flour);
OreDictionary.registerOre("dustSalt", salt);
OreDictionary.registerOre("itemCheese", curd);
OreDictionary.registerOre("ingredientCheese", curd);
OreDictionary.registerOre("itemYeast", yeast);
OreDictionary.registerOre("foodDough", dough);
OreDictionary.registerOre("foodDoughFlat", pizza_dough);
OreDictionary.registerOre("foodDoughBread", bread_dough);
To add custom recipes to the cooking pot, you can use:
PotRecipes.getInstance().addRecipe((ItemStack) input, (ItemStack) output);