summaryrefslogtreecommitdiff
path: root/DSALib/Characters/Being.cs
blob: cf338f9bac41025e5ccd9cad416e02a927555d68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using DiscoBot.DSA_Game.Characters;

namespace DSALib.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;
    }
}