This commit is contained in:
william341 2017-07-28 19:34:26 -07:00
parent a9779111b5
commit 669bd3c090
4 changed files with 37 additions and 19 deletions

View file

@ -110,9 +110,26 @@ namespace ShiftOS.Frontend.Properties {
}
/// <summary>
/// Looks up a localized string similar to //Loot information table
/// Looks up a localized string similar to /* ShiftOS Loot data file
/// *
/// * This file contains information about all loot in the game&apos;s campaign.
/// *
/// */
///
///[].
///[
/// {
/// FriendlyName: &quot;Force Heartbeat&quot;,
/// LootName: &quot;sploitset_keepalive&quot;,
/// Rarity: 1,
/// PointTo: &quot;sploitset_keepalive&quot;,
/// },
/// {
/// FriendlyName: &quot;SSHardline&quot;,
/// LootName: &quot;sploitset_sshardline&quot;,
/// Rarity: 1,
/// PointTo: &quot;sploitset_sshardline&quot;,
/// }
///].
/// </summary>
public static string LootInfo {
get {
@ -132,14 +149,15 @@ namespace ShiftOS.Frontend.Properties {
/// FriendlyName: &quot;FTP Payload&quot;,
/// PayloadName: &quot;ftpull&quot;,
/// EffectiveAgainstFirewall: 1,
/// EffectiveAgainst: &quot;FileServer&quot;,
/// EffectiveAgainst: &quot;FileServer&quot;
/// },
/// {
/// FriendlyName: &quot;Ping Spam&quot;,
/// FriendlyName: &quot;Force Heartbeat&quot;,
/// PayloadName: &quot;keepalive&quot;,
/// EffectiveAgainstFirewall: 1,
/// EffectiveAgainst: &quot;SSHServer&quot;,
/// Function: 1,
/// Dependencies: &quot;sploitset_keepalive&quot;
/// }
///].
/// </summary>
@ -187,7 +205,20 @@ namespace ShiftOS.Frontend.Properties {
}
/// <summary>
/// Looks up a localized string similar to [].
/// Looks up a localized string similar to [
/// }
/// Name: &quot;sploitset_keepalive&quot;,
/// Cost: 1000000000,
/// Description: &quot;lolyouarentsupposedtobeabletobuythis&quot;,
/// Dependencies: &quot;thisupgradeshouldneverexistever;sploitset_sshardline&quot;,
/// },
/// }
/// Name: &quot;sploitset_sshardline&quot;,
/// Cost: 1000000000,
/// Description: &quot;lolyouarentsupposedtobeabletobuythis&quot;,
/// Dependencies: &quot;thisupgradeshouldneverexistever&quot;,
/// }
///].
/// </summary>
public static string Shiftorium {
get {

View file

@ -142,9 +142,6 @@
<data name="LootInfo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\LootInfo.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="Exploits" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Exploits.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>
<data name="Payloads" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Payloads.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>

View file

@ -68,15 +68,4 @@ namespace ShiftOS.Objects
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; }
}
}

View file

@ -47,6 +47,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="EngineShiftnetSubscription.cs" />
<Compile Include="Hacking\Loot.cs" />
<Compile Include="Hacking\Port.cs" />
<Compile Include="Hacking\Payload.cs" />
<Compile Include="Hacking\Exploit.cs" />