mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 04:01:05 +00:00
18 lines
336 B
C#
18 lines
336 B
C#
namespace ServerManagerTool.Enums
|
|
{
|
|
public enum StatsMultiplier
|
|
{
|
|
Health = 0,
|
|
Stamina = 1,
|
|
Torpidity = 2,
|
|
Oxygen = 3,
|
|
Food = 4,
|
|
Water = 5,
|
|
Temperature = 6,
|
|
Weight = 7,
|
|
Melee = 8,
|
|
Speed = 9,
|
|
Fortitude = 10,
|
|
Crafting = 11
|
|
};
|
|
}
|