summaryrefslogtreecommitdiff
path: root/DSALib/Zauber.cs
blob: 0f460a152055cde659c809860bdd0f2f340b0a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace DSALib
{
    public class Zauber : Talent
    {
        public Zauber(string name, string probe, int value, char complexity = 'A', string representation = "Magier")
            : base(name, probe, value)
        {
            Complexity = complexity;
            Representation = Representation;
        }

        public char Complexity { get; }

        public string Representation { get; }
    }
}