Beispiel #1
0
 public HumanEntity()
 {
     Stats      = new BasicStats();
     Inventory  = new Inventory();
     Damageable = new HealthDamageable(Stats);
     Equipment  = new HumanEquipment(Inventory);
 }
Beispiel #2
0
 public Experience(BasicStats stats, HealthDamageable health, Profession profession)
 {
     Health     = health;
     Stats      = stats;
     Points     = 0;
     NextLevel  = 100;
     Profession = profession;
 }
Beispiel #3
0
 public CreatureEntity(string name, BasicStats stats)
 {
     Name       = name;
     Stats      = stats;
     Damageable = new HealthDamageable(stats);
 }