8    public override bool TrackPhaseChange
 
   18    public override int max
 
   27    public override int GetPhase()
 
   29        int num = (this.value < 100) ? 0 : ((this.value - 100) / 10 + 1);
 
   34        return base.source.phase[num];
 
   38    public static int GetPhase(
int value)
 
   40        int num = (value < 100) ? 0 : ((value - 100) / 10 + 1);
 
   45        return EClass.pc.burden.source.phase[num];
 
   49    public const int None = 0;
 
   52    public new const int Burden = 1;
 
   55    public const int BurdenHeavy = 2;
 
   58    public const int OverWeight = 3;
 
   61    public const int Squashed = 4;