summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/GeneralSpell.cs
blob: 6fe6a78c6390eb76d1ca22ebd3a6471fdef8a199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()
        {
        }
    }
}