initial commit
All checks were successful
CI / build (push) Successful in 32s
CI / release (push) Successful in 32s
CI / lint (push) Successful in 30s

This commit is contained in:
Kamal Tufekcic 2026-07-05 13:28:35 +03:00
commit d701598350
67 changed files with 9351 additions and 0 deletions

View file

@ -0,0 +1,20 @@
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";
}