summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/GeneralSpell.cs
blob: 964c38efffd1a7dc2ae671e8473f7ef48ebf6cb1 (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()
        {
        }
    }
}