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

        int Lebenspunkte { 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);
    }
}