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