blob: 256fecdaf26e5cc6ec69f4c54b8c73544918424b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using DiscoBot.DSA_Game.Characters;
namespace DSALib.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);
}
}
|