initial commit
This commit is contained in:
commit
d701598350
67 changed files with 9351 additions and 0 deletions
20
Outnumbered/Domain/StatKeys.cs
Normal file
20
Outnumbered/Domain/StatKeys.cs
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue