summaryrefslogtreecommitdiff
path: root/DiscoBot/Characters/ICharacter.cs
blob: 135243a353d4004a5ed95b363cc5131ead2dfc0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace DiscoBot.Characters
{
    public interface ICharacter
    {
        string Name { get; set; }

        string TestTalent(string talent, int erschwernis = 0);

        string TestEigenschaft(string eigenschaft, int erschwernis = 0);

        string Angriff(string talent, int erschwernis = 0);

        string Parade(string talent, int erschwernis = 0);

        string Fernkampf(string talent, int erschwernis = 0);
    }
}