summaryrefslogtreecommitdiff
path: root/DSALib/Characters/ICombatant.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Characters/ICombatant.cs')
-rw-r--r--DSALib/Characters/ICombatant.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/DSALib/Characters/ICombatant.cs b/DSALib/Characters/ICombatant.cs
deleted file mode 100644
index a99bff9..0000000
--- a/DSALib/Characters/ICombatant.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-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);
- }
-}