Esempio n. 1
0
        private CraftingItem BuildCraftingItem(string name, SourceType sourceType = SourceType.Blacksmith)
        {
            var item = new CraftingItem {
                Name = name, SourceType = sourceType
            };

            item.SetMaterials(BuildSpecifiedCraftingMaterial(2, craftingMaterial).ToSingleton());

            return(item);
        }