Added in the recipe for the grinder.

This commit is contained in:
JoshuaNavarro 2019-09-25 15:56:32 -07:00
parent 90523d61da
commit 9dfe8a3783
1 changed files with 9 additions and 1 deletions

View File

@ -516,12 +516,20 @@ namespace Revitalize.Framework.Crafting
AnvilRecipes.addCraftingRecipe("LightHouse", new UnlockableCraftingRecipe("Default", new Recipe(new List<CraftingRecipeComponent>()
{
new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.IronBar,5),45),
new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.IronBar,5),5),
new CraftingRecipeComponent(ModCore.ObjectManager.resources.getResource("Glass"),5),
new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.Wood,10), 10)
}, new CraftingRecipeComponent(ModCore.ObjectManager.GetItem("Lighthouse"), 1)), true));
AnvilRecipes.addCraftingRecipe("Grinder", new UnlockableCraftingRecipe("Default", new Recipe(new List<CraftingRecipeComponent>()
{
new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.IronBar,10),10),
new CraftingRecipeComponent(ModCore.ObjectManager.GetItem("SteelIngot"),30),
new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.CopperBar,10), 10),
new CraftingRecipeComponent(new StardewValley.Objects.Chest(true),1)
}, new CraftingRecipeComponent(ModCore.ObjectManager.GetItem("Grinder"), 1)), true));;
if (CraftingRecipesByGroup.ContainsKey(AnvilRecipes.craftingGroup))
{