summaryrefslogtreecommitdiff
path: root/DSALib/Characters/ICharacter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Characters/ICharacter.cs')
-rw-r--r--DSALib/Characters/ICharacter.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/DSALib/Characters/ICharacter.cs b/DSALib/Characters/ICharacter.cs
new file mode 100644
index 0000000..aabebe6
--- /dev/null
+++ b/DSALib/Characters/ICharacter.cs
@@ -0,0 +1,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);
+ }
+}