summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Characters/ICombatant.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dsa/DSALib/Characters/ICombatant.cs')
-rw-r--r--dsa/DSALib/Characters/ICombatant.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/dsa/DSALib/Characters/ICombatant.cs b/dsa/DSALib/Characters/ICombatant.cs
new file mode 100644
index 0000000..a4ce601
--- /dev/null
+++ b/dsa/DSALib/Characters/ICombatant.cs
@@ -0,0 +1,20 @@
+namespace DiscoBot.DSA_Game.Characters
+{
+ public interface ICombatant
+ {
+ string Name { get; set; }
+
+ int Lebenspunkte_Basis { get; set; }
+ int Lebenspunkte_Aktuell { get; set; }
+
+ int Ausdauer_Basis { get; set; }
+ int Ausdauer_Aktuell { get; set; }
+
+ int Astralpunkte_Basis { get; set; }
+ int Astralpunkte_Aktuell { get; set; }
+
+ string Angriff(string talent, int erschwernis = 0);
+
+ string Parade(string talent, int erschwernis = 0);
+ }
+} \ No newline at end of file