summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GeneralSpell.cs
blob: 6a6e94c36f200c096df734a52f79446419fa1cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace DSACore.Models.Database
{
    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)
        {
        }
    }
}