This page relates to Ars-Nouveau, which has built-in support!

Ars-Nouveau Glyphenpresse

Link to ars-nouveau-glyphenpresse

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

Rezept hinzufügen

Link to rezept-hinzufügen

Das folgende Skript fügt der Glyphenpresse ein Tier "1" Rezept hinzu, das einen Diamanten ausgibt, wenn der Presse Erde gegeben wird.

ZenScript
Copy
// <recipetype:ars_nouveau:glyph_recipe>.addRecipe(name as String, tier as String, reagent as IItemStack, output as IItemStack);

<recipetype:ars_nouveau:glyph_recipe>.addRecipe("glyph_test", "one", <item:minecraft:dirt>, <item:minecraft:diamond>);

The following script will remove all recipes from the Glyph Press that output Glyph: Touch.

ZenScript
Copy
// <recipetype:ars_nouveau:glyph_recipe>.removeRecipe(output as IItemStack);

<recipetype:ars_nouveau:glyph_recipe>.removeRecipe(<item:ars_nouveau:glyph_touch>);