Add FlatStatModifier and PercentStatModifier classes; introduce Stat enum for character attributes

This commit is contained in:
2025-07-11 23:05:36 +02:00
parent cf586916c0
commit c50b91eacb
8 changed files with 181 additions and 0 deletions

View File

@@ -4,6 +4,20 @@ using Sirenix.Serialization;
namespace Data
{
public enum Stat
{
Health,
MaxHealth,
MoveSpeed,
Luck,
Armor,
Damage,
RangedDamage,
MeleeDamage,
AttackRange,
AttackSpeed
}
[Serializable]
public class CharacterAttributes
{