20 lines
943 B
C#
20 lines
943 B
C#
namespace Outnumbered;
|
|
|
|
// Canonical stat keys (upgrade dictionary keys + JSON stat ids). CSSharp-free so the Domain layer + the test project
|
|
// can reference them without the engine. Kept in the root Outnumbered namespace (not Domain) for back-compat with the
|
|
// many engine-side call sites that use the unqualified name.
|
|
public static class StatKeys
|
|
{
|
|
public const string Damage = "damage";
|
|
public const string CritChance = "crit_chance";
|
|
public const string CritDamage = "crit_damage";
|
|
public const string HeadshotDamage = "hs_damage";
|
|
public const string MaxHp = "max_hp";
|
|
public const string MaxArmor = "max_armor";
|
|
public const string Lifesteal = "lifesteal";
|
|
public const string ArmorLifesteal = "armor_lifesteal";
|
|
public const string HpRegen = "hp_regen";
|
|
public const string ArmorRegen = "armor_regen";
|
|
public const string Thorns = "thorns";
|
|
public const string XpBoost = "xp_boost";
|
|
}
|