private static void WriteStatsProperty(AllText allText)
 {
     foreach (UnitStatsProperty property in System.Enum.GetValues(typeof(UnitStatsProperty)))
     {
         allText.AddText(property.ToString(), property.ToString());
     }
 }
 private static void WriteSpiritType(AllText allText)
 {
     foreach (SpiritType property in System.Enum.GetValues(typeof(SpiritType)))
     {
         allText.AddText(property.ToString(), property.ToString());
     }
 }