summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Characters/ICharacter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dsa/DSALib/Characters/ICharacter.cs')
-rw-r--r--dsa/DSALib/Characters/ICharacter.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/dsa/DSALib/Characters/ICharacter.cs b/dsa/DSALib/Characters/ICharacter.cs
new file mode 100644
index 0000000..256fecd
--- /dev/null
+++ b/dsa/DSALib/Characters/ICharacter.cs
@@ -0,0 +1,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);
+ }
+} \ No newline at end of file