Items.Weapons.Rapier.Rapier C# (CSharp) Method

Rapier() public method

public Rapier ( ) : Dices
return Dices
        public Rapier()
        {
            Name = "Rapier";
			Dice = new Dice(8);
            Range = 1;
            Enchanment = 0;
            DamageType = "Stab";
            WeaponType = WeaponTypeEnum.LightBlade;
        }
    }
Rapier