summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/ICharacter.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 00:48:46 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 00:48:46 +0200
commitac3f4ef1a70c4cdb538a0f0629c97bf34871a58b (patch)
tree19ba132dd5d5ca5a53830176c64f7a864b626c3c /DiscoBot/DSA_Game/Characters/ICharacter.cs
parentdeb3640255abe60289e042944abf66bedcf1184e (diff)
Revert "Revert "Reworked inheritance structure""
This reverts commit deb3640255abe60289e042944abf66bedcf1184e.
Diffstat (limited to 'DiscoBot/DSA_Game/Characters/ICharacter.cs')
-rw-r--r--DiscoBot/DSA_Game/Characters/ICharacter.cs19
1 files changed, 1 insertions, 18 deletions
diff --git a/DiscoBot/DSA_Game/Characters/ICharacter.cs b/DiscoBot/DSA_Game/Characters/ICharacter.cs
index 3ec4258..aabebe6 100644
--- a/DiscoBot/DSA_Game/Characters/ICharacter.cs
+++ b/DiscoBot/DSA_Game/Characters/ICharacter.cs
@@ -1,28 +1,11 @@
namespace DiscoBot.DSA_Game.Characters
{
- public interface ICharacter
+ public interface ICharacter : 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; }
-
- //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);