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

Die Emptying 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 und Lava (Flüssigkeit) ausgibt, wenn ein Stück Erde mit einer Dauer von 100 Ticks geleert wird.

ZenScript
Copy
// <recipetype:create:emptying>.addRecipe(String name, IItemStack outputItem, IFluidStack outputFluid, IIngredient inputContainer, @Optional(100) int duration)

<recipetype:create:emptying>.addRecipe("emptying_test", <item:minecraft:diamond>, <fluid:minecraft:lava>, <item:minecraft:dirt>);

Rezepte für Items entfernen

Link to rezepte-für-items-entfernen

The following script will remove all Emptying recipes that output a Bucket.

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

<recipetype:create:emptying>.removeRecipe(<item:minecraft:bucket>);

Rezepte für Flüssigkeiten entfernen

Link to rezepte-für-flüssigkeiten-entfernen

The following script will remove all Compacting recipes that output Honey (Fluid)

ZenScript
Copy
// <recipetype:create:emptying>.removeRecipe(IFluidStack output)

<recipetype:create:emptying>.removeRecipe(<fluid:create:honey>);