Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

Dawnstone Anvil

Importing the Package

script.zs
import mods.embers.DawnstoneAnvil;

Adding Recipes

Note: A bin placed below the dawnstone anvil will only collect one output.

script.zs
mods.embers.DawnstoneAnvil.add(IItemStack[] outputs, IIngredient inputTop, IIngredient inputBottom);

Removing Recipes

script.zs
mods.embers.DawnstoneAnvil.remove(IIngredient inputTop, IIngredient inputBottom);

Blacklisting Repair

script.zs
mods.embers.DawnstoneAnvil.blacklistRepair(IIngredient input);
mods.embers.DawnstoneAnvil.blacklistMateriaRepair(IIngredient input);

Blacklisting Breakdown

script.zs
mods.embers.DawnstoneAnvil.blacklistBreakdown(IIngredient input);