summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/Combatant.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 00:35:52 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 00:35:52 +0200
commitf0d68ad8edb06ff68400644fd4c943f66705cc97 (patch)
tree19ba132dd5d5ca5a53830176c64f7a864b626c3c /DiscoBot/DSA_Game/Characters/Combatant.cs
parent6ecf94cfc3e780d4c960447375b138e7473f6926 (diff)
Reworked inheritance structure
added Entity, Being, ICombatent
Diffstat (limited to 'DiscoBot/DSA_Game/Characters/Combatant.cs')
-rw-r--r--DiscoBot/DSA_Game/Characters/Combatant.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/DiscoBot/DSA_Game/Characters/Combatant.cs b/DiscoBot/DSA_Game/Characters/Combatant.cs
new file mode 100644
index 0000000..a99bff9
--- /dev/null
+++ b/DiscoBot/DSA_Game/Characters/Combatant.cs
@@ -0,0 +1,26 @@
+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);
+ }
+}