Items.EnchantedLongSword.EnchantedLongSword C# (CSharp) Method

EnchantedLongSword() public method

public EnchantedLongSword ( ) : Dices
return Dices
        public EnchantedLongSword()
        {
            Name = "Long Sword of Mighty Swing";
            Dice = new Dice(8);
            Enchanment = 1;
            WeaponType = WeaponTypeEnum.HeavyBlade;
            DamageType = "Force";
        }
    }
EnchantedLongSword