summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GeneralSpell.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-30 02:06:02 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-30 02:06:02 +0200
commit560f454c9beb2f691730b126fc6b3e23d68d6681 (patch)
tree944ac498da2d3d231ef928769c55bf29a39070d0 /DSACore/Models/Database/GeneralSpell.cs
parent7db0e121521733273a8ca3977e91e6f88756f38a (diff)
added mot of the database infrastructure
Diffstat (limited to 'DSACore/Models/Database/GeneralSpell.cs')
-rw-r--r--DSACore/Models/Database/GeneralSpell.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/DSACore/Models/Database/GeneralSpell.cs b/DSACore/Models/Database/GeneralSpell.cs
index 807a09b..6a6e94c 100644
--- a/DSACore/Models/Database/GeneralSpell.cs
+++ b/DSACore/Models/Database/GeneralSpell.cs
@@ -7,6 +7,15 @@ namespace DSACore.Models.Database
{
public class GeneralSpell : Talent
{
- public string Comlexity = "A";
+ public char Comlexity = 'A';
+
+ public GeneralSpell(string name, string roll, char comlexity = 'A') :base(name, roll)
+ {
+ Comlexity = comlexity;
+ }
+
+ public GeneralSpell(string name, string roll) : base(name, roll)
+ {
+ }
}
}