blob: 27879a177cb941fb32510f7efa4dc37e945d221b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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;
}
}
|