summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/GeneralSpell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Models/Database/DSA/GeneralSpell.cs')
-rw-r--r--DSALib/Models/Database/DSA/GeneralSpell.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/DSALib/Models/Database/DSA/GeneralSpell.cs b/DSALib/Models/Database/DSA/GeneralSpell.cs
new file mode 100644
index 0000000..b4dbc0b
--- /dev/null
+++ b/DSALib/Models/Database/DSA/GeneralSpell.cs
@@ -0,0 +1,20 @@
+namespace DSACore.Models.Database.DSA
+{
+ public class GeneralSpell : Talent
+ {
+ 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)
+ {
+ }
+
+ public GeneralSpell()
+ {
+ }
+ }
+} \ No newline at end of file