summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Database/Dsa/GeneralSpell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dsa/DSALib/Models/Database/Dsa/GeneralSpell.cs')
-rw-r--r--dsa/DSALib/Models/Database/Dsa/GeneralSpell.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/dsa/DSALib/Models/Database/Dsa/GeneralSpell.cs b/dsa/DSALib/Models/Database/Dsa/GeneralSpell.cs
new file mode 100644
index 0000000..964c38e
--- /dev/null
+++ b/dsa/DSALib/Models/Database/Dsa/GeneralSpell.cs
@@ -0,0 +1,20 @@
+namespace DSALib.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