summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Dsa/Zauber.cs
blob: e4387bfe159ebd9fe272c0395877897991fdcd89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace DSALib.Models.Dsa
{
    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; }
    }
}