19 lines
325 B
C#
19 lines
325 B
C#
namespace ParasiticGod.Scripts.Core;
|
|
|
|
public enum Stat
|
|
{
|
|
// Primary Resources
|
|
Faith,
|
|
Followers,
|
|
Corruption,
|
|
Production,
|
|
|
|
// Passive Generation Stats
|
|
ProductionPerSecond,
|
|
CorruptionPerSecond,
|
|
FollowersPerSecond,
|
|
|
|
// Modifying Stats
|
|
FaithPerFollower,
|
|
ProductionPerFollower,
|
|
} |