summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/NPC.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/NPC.cs
parent6ecf94cfc3e780d4c960447375b138e7473f6926 (diff)
Reworked inheritance structure
added Entity, Being, ICombatent
Diffstat (limited to 'DiscoBot/DSA_Game/Characters/NPC.cs')
-rw-r--r--DiscoBot/DSA_Game/Characters/NPC.cs13
1 files changed, 1 insertions, 12 deletions
diff --git a/DiscoBot/DSA_Game/Characters/NPC.cs b/DiscoBot/DSA_Game/Characters/NPC.cs
index 0894df6..c135e30 100644
--- a/DiscoBot/DSA_Game/Characters/NPC.cs
+++ b/DiscoBot/DSA_Game/Characters/NPC.cs
@@ -5,7 +5,7 @@
using DiscoBot.Auxiliary;
using DiscoBot.DSA_Game.Characters;
- public class Npc : ICharacter
+ public class Npc : Being, ICharacter
{
private readonly int mean, stDv;
@@ -16,17 +16,6 @@
this.Name = name;
}
- public string Name { get; set; }
-
- public int Lebenspunkte_Basis { get; set; }
- public int Lebenspunkte_Aktuell { get; set; }
-
- public int Astralpunkte_Basis { get; set; }
- public int Astralpunkte_Aktuell { get; set; }
-
- public int Ausdauer_Basis { get; set; }
- public int Ausdauer_Aktuell { get; set; }
-
public string TestTalent(string talent, int tap = 3)
{
for (int i = 0; i <= 2; i++)