namespace EDPlayerJournal; 
/// 
/// Static strings related to combat zones
/// 
public class CombatZones {
    /// 
    /// Type string for ground combat zone
    /// 
    public static readonly string GroundCombatZone = "Ground";
    /// 
    /// Type string for ship combat zones
    /// 
    public static readonly string ShipCombatZone = "Ship";
    /// 
    /// Thargoid combat zone
    /// 
    public static readonly string ThargoidCombatZone = "Thargoid";
    /// 
    /// Difficulty low
    /// 
    public static readonly string DifficultyLow = "Low";
    /// 
    /// Difficulty medium
    /// 
    public static readonly string DifficultyMedium = "Medium";
    /// 
    /// Difficulty high
    /// 
    public static readonly string DifficultyHigh = "High";
}