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

Handaxe() public method

public Handaxe ( ) : Dices
return Dices
        public Handaxe()
        {
            Name = "Handaxe";
			Dice = new Dice(6);
            Range = 1;
            Enchanment = 0;
            DamageType = "Slash";
            WeaponType = WeaponTypeEnum.Axe;
        }
    }
Handaxe