Files
WaifuCellar/Characters/Character.cs
Samuele Lorefice abfde63278 Added base parts
2024-12-31 03:05:17 +01:00

20 lines
869 B
C#

namespace WaifuCellar.Characters;
public class Character : Part {
[Trait] public int Age { get; set; }
[Trait] public EBodyBuild BodyBuild { get; set; }
[Attribute] public int Strength { get; set; }
[Trait] public EPersonality Personality { get; set; }
[State] public EMood Mood { get; set; }
[Trait] public int Adaptability { get; set; }
[Trait] public int Endurance { get; set; }
[Attribute] public int PainTolerance { get; set; }
[State] public int Stamina { get; set; }
[Trait] public float LearningScalar { get; set; }
[Attribute] public int Agility { get; set; }
[State] public int Equilibrium { get; set; }
//Only for this part
public override List<IBuff> Buffs { get; set; } = new();
public override Part? ParentPart { get; set; }
public override List<Part> AttachedParts { get; set; } = new();
}