Example #1
0
        public FletcherCraftsmanSatchel()
            : base()
        {
            if (Items.Count < 2)
            {
                var recipe = Reward.FletcherRecipe();

                if (recipe != null)
                {
                    DropItem(recipe);
                }
            }

            var runic = Reward.FletcherRunic();

            if (runic != null)
            {
                DropItem(runic);
            }
        }