This page relates to Create, which does not have built-in support, you will need to install CreateTweaker as well!

Die Crushing Mechanik ist vom Typ IRecipeManager und implementiert alle Methoden, die IRecipeManager zur Verfügung stehen wie removeRecipe() und removeAll().

Rezept hinzufügen

Link to rezept-hinzufügen

Das folgende Skript fügt ein Rezept hinzu, das einen Diamanten mit einer Chance von 10% ausgibt, in der ein Stück Erde mit einer Dauer von 100 Ticks zerkleinert wird.

ZenScript
Copy
// <recipetype:create:crushing>.addRecipe(String name, MCWeightedItemStack[] output, IIngredient input, @Optional(100) int duration)

<recipetype:create:crushing>.addRecipe("hopes_and_dreams", [<item:minecraft:diamond> % 10], <item:minecraft:dirt>);

The following script will remove all Crushing recipes that output a Crushed Zinc Ore.

ZenScript
Copy
// <recipetype:create:crushing>.removeRecipe(IItemStack output)

<recipetype:create:crushing>.removeRecipe(<item:create:crushed_zinc_ore>);