summaryrefslogtreecommitdiff
path: root/DSALib/Zauber.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
commit2503ca78d3e583cb1291cb9a99a6e79526a348ee (patch)
tree5be61d23d80c23422f68831b0862918dd4f5616c /DSALib/Zauber.cs
parent4671e76af27446a74c1015bd76b52e48ea241e74 (diff)
Created DSALib Created ZooBOTanica
Diffstat (limited to 'DSALib/Zauber.cs')
-rw-r--r--DSALib/Zauber.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/DSALib/Zauber.cs b/DSALib/Zauber.cs
new file mode 100644
index 0000000..bf49a2e
--- /dev/null
+++ b/DSALib/Zauber.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DiscoBot.DSA_Game
+{
+ 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; }
+ }
+}