Example #1
0
        // skeletonclass inherits health from monster, and the health is set with a diceroll function from the randomutils class
        //so the skeleton will have HP between 1 and whatever value you set the dice to

        public Skeleton() : base(RandomUtils.DiceRoll(6), "Skeleton")
        {
        }