From ac3f4ef1a70c4cdb538a0f0629c97bf34871a58b Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Jul 2018 00:48:46 +0200 Subject: Revert "Revert "Reworked inheritance structure"" This reverts commit deb3640255abe60289e042944abf66bedcf1184e. --- DiscoBot/DSA_Game/Characters/Being.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 DiscoBot/DSA_Game/Characters/Being.cs (limited to 'DiscoBot/DSA_Game/Characters/Being.cs') diff --git a/DiscoBot/DSA_Game/Characters/Being.cs b/DiscoBot/DSA_Game/Characters/Being.cs new file mode 100644 index 0000000..154e69e --- /dev/null +++ b/DiscoBot/DSA_Game/Characters/Being.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DiscoBot.DSA_Game.Characters +{ + public class Being : Entity + { + public int Lebenspunkte_Basis { get; set; } = 30; + + public int Lebenspunkte_Aktuell { get; set; } = 30; + + public int Ausdauer_Basis { get; set; } = 30; + + public int Ausdauer_Aktuell { get; set; } = 30; + + public int Astralpunkte_Basis { get; set; } = 0; + + public int Astralpunkte_Aktuell { get; set; } = 0; + } +} -- cgit v1.2.3-70-g09d2