summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/Character.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 00:47:20 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 00:47:20 +0200
commitdeb3640255abe60289e042944abf66bedcf1184e (patch)
tree77654523901f42ed3c26ddcde12bc1ff5314531d /DiscoBot/DSA_Game/Characters/Character.cs
parentf0d68ad8edb06ff68400644fd4c943f66705cc97 (diff)
Revert "Reworked inheritance structure"
This reverts commit f0d68ad8edb06ff68400644fd4c943f66705cc97.
Diffstat (limited to 'DiscoBot/DSA_Game/Characters/Character.cs')
-rw-r--r--DiscoBot/DSA_Game/Characters/Character.cs15
1 files changed, 14 insertions, 1 deletions
diff --git a/DiscoBot/DSA_Game/Characters/Character.cs b/DiscoBot/DSA_Game/Characters/Character.cs
index c2d14eb..6616a03 100644
--- a/DiscoBot/DSA_Game/Characters/Character.cs
+++ b/DiscoBot/DSA_Game/Characters/Character.cs
@@ -9,7 +9,7 @@
using DiscoBot.Audio;
using DiscoBot.Auxiliary;
- public class Character : Being, ICharacter
+ public class Character : ICharacter
{
public Character()
{
@@ -61,6 +61,19 @@
this.Post_process(); // calculate derived values
}
+ public string Name { get; set; } // char name
+
+ 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 Dictionary<string, int> Eigenschaften { get; set; } = new Dictionary<string, int>(); // char properties
public List<Talent> Talente { get; set; } = new List<Talent>(); // list of talent objects (talents)