public CarpentersCraftsmanSatchel()
            : base()
        {
            if (this.Items.Count < 2 && 0.5 > Utility.RandomDouble())
            {
                this.DropItem(Reward.CarpRecipe());
            }

            if (0.01 > Utility.RandomDouble())
            {
                this.DropItem(Reward.CarpRunic());
            }
        }