blob: 3c7533fd36f409dd208215b5758a99a55a5558b0 (
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)
{
this.Complexity = complexity;
this.Representation = this.Representation;
}
public char Complexity { get; }
public string Representation { get; }
}
}
|