Elin Modding Docs Doc
Loading...
Searching...
No Matches
StatsHunger.cs
1using System;
2
3// Token: 0x020002AD RID: 685
4public class StatsHunger : Stats
5{
6 // Token: 0x17000630 RID: 1584
7 // (get) Token: 0x0600163C RID: 5692 RVA: 0x00095D4B File Offset: 0x00093F4B
8 public override bool TrackPhaseChange
9 {
10 get
11 {
12 return BaseStats.CC.IsPC;
13 }
14 }
15
16 // Token: 0x04001051 RID: 4177
17 public const int Bloated = 0;
18
19 // Token: 0x04001052 RID: 4178
20 public const int Filled = 1;
21
22 // Token: 0x04001053 RID: 4179
23 public const int Normal = 2;
24
25 // Token: 0x04001054 RID: 4180
26 public const int Hungry = 3;
27
28 // Token: 0x04001055 RID: 4181
29 public const int VeryHungry = 4;
30
31 // Token: 0x04001056 RID: 4182
32 public const int Starving = 5;
33}
Definition Stats.cs:6