vandoom Posted July 17, 2023 Share Posted July 17, 2023 Поддерживаемые обработчики Поддерживаются следующие обработчики: Компостирование Тигель Молоток Сито В каждый из этих обработчиков можно добавлять или удалять рецепты: //Компостирование //InputStack, FillAmount, HexColor mods.exnihilo.Composting.addRecipe(<minecraft:hay_block>, 0.72, "E3E162"); //InputStack mods.exnihilo.Composting.removeRecipe(<minecraft:sapling>); //Тигель //BlockStack, OutputFluid mods.exnihilo.Crucible.addRecipe(<minecraft:packed_ice>, <liquid:water> * 1000); //OutputFluid mods.exnihilo.Crucible.removeRecipe(<liquid:lava>); //BlockStack, HeatValue mods.exnihilo.Crucible.addHeatSource(<minecraft:coal_block>, 0.1); //BlockStack mods.exnihilo.Crucible.removeHeatSource(<minecraft:lava>); //Молоток //BlockStack, OuputStack OR OutputArray, Chance OR ChanceArray, LuckModifier OR LuckModifierArray mods.exnihilo.Hammer.addRecipe(<minecraft:cactus>, <minecraft:dye:2>, 0.45, 1.25); mods.exnihilo.Hammer.addRecipe(<minecraft:tnt>, [<minecraft:gunpowder>, <minecraft:sand>], [0.25, 0.50], [1.00, 1.50]); //BlockStack mods.exnihilo.Hammer.removeRecipe(<minecraft:sand>); //Сито //BlockStack, OutputStack OR OutputArray, Rarity OR RarityArray (Rarity goes in Fractions, 1 = 100Pe, 2 = 50Pe, 3 = 33Pe) mods.exnihilo.Sieve.addRecipe(<minecraft:clay>, <minecraft:waterlily>, 5); mods.exnihilo.Sieve.addRecipe(<minecraft:mycelium>, [<minecraft:red_mushroom>, <minecraft:brown_mushroom>], [2, 2]); //OutputStack mods.exnihilo.Sieve.removeRecipe(<minecraft:dirt>); Поддерживаемые команды Отпечатки хранятся в журнале minetweaker в каталоге minecraft. /minetweaker exnihilo [HANDLER] - Outputs a list of all ExNihilo recipes Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.