From 89dfed83afbb8272388940cd0b4b46b8b066153f Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 27 Jul 2017 12:03:55 -0400 Subject: Hacking UI is coming in. --- ShiftOS.Objects/Hackable.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ShiftOS.Objects') 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] -- cgit v1.2.3