From deb3640255abe60289e042944abf66bedcf1184e Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Jul 2018 00:47:20 +0200 Subject: Revert "Reworked inheritance structure" This reverts commit f0d68ad8edb06ff68400644fd4c943f66705cc97. --- DiscoBot/DSA_Game/Characters/ICharacter.cs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'DiscoBot/DSA_Game/Characters/ICharacter.cs') diff --git a/DiscoBot/DSA_Game/Characters/ICharacter.cs b/DiscoBot/DSA_Game/Characters/ICharacter.cs index aabebe6..3ec4258 100644 --- a/DiscoBot/DSA_Game/Characters/ICharacter.cs +++ b/DiscoBot/DSA_Game/Characters/ICharacter.cs @@ -1,11 +1,28 @@ namespace DiscoBot.DSA_Game.Characters { - public interface ICharacter : ICombatant + public interface ICharacter { + 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; } + + //int Karmapunkte { get; set; } + string TestTalent(string talent, int erschwernis = 0); string TestEigenschaft(string eigenschaft, int erschwernis = 0); + string Angriff(string talent, int erschwernis = 0); + + string Parade(string talent, int erschwernis = 0); + string Fernkampf(string talent, int erschwernis = 0); string TestZauber(string waffe, int erschwernis); -- cgit v1.2.3-54-g00ecf