summaryrefslogtreecommitdiff
path: root/DSALib/Characters/ICharacter.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
commit2503ca78d3e583cb1291cb9a99a6e79526a348ee (patch)
tree5be61d23d80c23422f68831b0862918dd4f5616c /DSALib/Characters/ICharacter.cs
parent4671e76af27446a74c1015bd76b52e48ea241e74 (diff)
Created DSALib Created ZooBOTanica
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);
+ }
+}