summaryrefslogtreecommitdiff
path: root/DSALib/Models/Dsa/Zauber.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Models/Dsa/Zauber.cs')
-rw-r--r--DSALib/Models/Dsa/Zauber.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/DSALib/Models/Dsa/Zauber.cs b/DSALib/Models/Dsa/Zauber.cs
new file mode 100644
index 0000000..e4387bf
--- /dev/null
+++ b/DSALib/Models/Dsa/Zauber.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file