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.cs21
1 files changed, 20 insertions, 1 deletions
diff --git a/ShiftOS.Objects/Hackable.cs b/ShiftOS.Objects/Hackable.cs
index cb05b0c..309ce87 100644
--- a/ShiftOS.Objects/Hackable.cs
+++ b/ShiftOS.Objects/Hackable.cs
@@ -22,8 +22,8 @@ namespace ShiftOS.Objects
public SystemType SystemType { get; set; }
public string OnHackCompleteStoryEvent { get; set; }
+ public string OnHackFailedStoryEvent { get; set; }
-
public string Dependencies { get; set; }
@@ -52,4 +52,23 @@ namespace ShiftOS.Objects
public string GUID { get; set; }
public string Contents { get; set; }
}
+
+ public class LootInfo
+ {
+ public string Filename { get; set; }
+ public string ResourceId { get; set; }
+ public int Rarity { get; set; }
+ }
+
+ public class Loot
+ {
+ public Loot(LootInfo info, byte[] data)
+ {
+ Data = data;
+ Info = info;
+ }
+
+ public LootInfo Info { get; private set; }
+ public byte[] Data { get; private set; }
+ }
}