RegisterBlacksmithRecipeSet - Aidanamite/AssetsLib GitHub Wiki

Description:

Registers a recipe to the blacksmith's crafting menu.

Returns: void

Arguments:

  • string Id The recipe set id name. See: RecipeIds

  • Recipe... Recipes The one or more 'Recipe' objects in this recipe set. See: CreateRecipe

Example:

the 'recipe_1' and 'recipe_2' are variables each containing a Recipe object

AssetLib.AssetLibTools.RegisterBlacksmithRecipeSet(RecipeIds.Blacksmith.ShortSwords, recipe_1, recipe_2);