aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Hackable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Objects/Hackable.cs')
-rw-r--r--ShiftOS.Objects/Hackable.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/ShiftOS.Objects/Hackable.cs b/ShiftOS.Objects/Hackable.cs
index 309ce87..4596d2d 100644
--- a/ShiftOS.Objects/Hackable.cs
+++ b/ShiftOS.Objects/Hackable.cs
@@ -14,10 +14,13 @@ namespace ShiftOS.Objects
public string PasswordHint { get; set; }
public string WelcomeMessage { get; set; }
+ public string Description { get; set; }
+
public int FirewallStrength { get; set; }
public int LootRarity { get; set; }
public int LootAmount { get; set; }
public int ConnectionTimeoutLevel { get; set; }
+ public int LockTier { get; set; }
public SystemType SystemType { get; set; }
@@ -34,6 +37,11 @@ namespace ShiftOS.Objects
return SystemName.ToLower().Replace(" ", "_");
}
}
+
+ public override string ToString()
+ {
+ return $"{FriendlyName} ({SystemName})";
+ }
}
[Flags]