memes
This commit is contained in:
parent
a9779111b5
commit
669bd3c090
4 changed files with 37 additions and 19 deletions
41
ShiftOS.Frontend/Properties/Resources.Designer.cs
generated
41
ShiftOS.Frontend/Properties/Resources.Designer.cs
generated
|
@ -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's campaign.
|
||||
/// *
|
||||
/// */
|
||||
///
|
||||
///[].
|
||||
///[
|
||||
/// {
|
||||
/// FriendlyName: "Force Heartbeat",
|
||||
/// LootName: "sploitset_keepalive",
|
||||
/// Rarity: 1,
|
||||
/// PointTo: "sploitset_keepalive",
|
||||
/// },
|
||||
/// {
|
||||
/// FriendlyName: "SSHardline",
|
||||
/// LootName: "sploitset_sshardline",
|
||||
/// Rarity: 1,
|
||||
/// PointTo: "sploitset_sshardline",
|
||||
/// }
|
||||
///].
|
||||
/// </summary>
|
||||
public static string LootInfo {
|
||||
get {
|
||||
|
@ -132,14 +149,15 @@ namespace ShiftOS.Frontend.Properties {
|
|||
/// FriendlyName: "FTP Payload",
|
||||
/// PayloadName: "ftpull",
|
||||
/// EffectiveAgainstFirewall: 1,
|
||||
/// EffectiveAgainst: "FileServer",
|
||||
/// EffectiveAgainst: "FileServer"
|
||||
/// },
|
||||
/// {
|
||||
/// FriendlyName: "Ping Spam",
|
||||
/// FriendlyName: "Force Heartbeat",
|
||||
/// PayloadName: "keepalive",
|
||||
/// EffectiveAgainstFirewall: 1,
|
||||
/// EffectiveAgainst: "SSHServer",
|
||||
/// Function: 1,
|
||||
/// Dependencies: "sploitset_keepalive"
|
||||
/// }
|
||||
///].
|
||||
/// </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: "sploitset_keepalive",
|
||||
/// Cost: 1000000000,
|
||||
/// Description: "lolyouarentsupposedtobeabletobuythis",
|
||||
/// Dependencies: "thisupgradeshouldneverexistever;sploitset_sshardline",
|
||||
/// },
|
||||
/// }
|
||||
/// Name: "sploitset_sshardline",
|
||||
/// Cost: 1000000000,
|
||||
/// Description: "lolyouarentsupposedtobeabletobuythis",
|
||||
/// Dependencies: "thisupgradeshouldneverexistever",
|
||||
/// }
|
||||
///].
|
||||
/// </summary>
|
||||
public static string Shiftorium {
|
||||
get {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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" />
|
||||
|
|
Reference in a new issue