summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/ICharacter.cs
blob: aabebe6ed2b806221fd3555cd893efbe84b0584e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace DiscoBot.DSA_Game.Characters
{
    public interface ICharacter : ICombatant
    {
        string TestTalent(string talent, int erschwernis = 0);

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

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

        string TestZauber(string waffe, int erschwernis);
    }
}