Items.LongSword.LongSword C# (CSharp) Method

LongSword() public method

public LongSword ( ) : Dices
return Dices
        public LongSword()
        {
            Name = "Longsword";
            Dice = new Dice(8);
            Range = 1;
            Enchanment = 0;
            DamageType = "Slash";
            WeaponType = WeaponTypeEnum.HeavyBlade;
        }
    }
LongSword