summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GeneralSpell.cs
diff options
context:
space:
mode:
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 4f2a8cb..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
{
- private 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)
+ {
+ }
}
}