Decompiled source of CraftableShipSystemUpgrader v1.0.0

CraftableShipSystemUpgrader.dll

Decompiled 2 years ago
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Logging;
using CG.Client.UserData;
using CG.Ship.Object;
using Microsoft.CodeAnalysis;
using ResourceAssets;
using VoidManager;
using VoidManager.Content;
using VoidManager.MPModChecks;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyCompany("CraftableShipSystemUpgrader")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("Template")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("CraftableShipSystemUpgrader")]
[assembly: AssemblyTitle("CraftableShipSystemUpgrader")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
	internal sealed class RefSafetyRulesAttribute : Attribute
	{
		public readonly int Version;

		public RefSafetyRulesAttribute(int P_0)
		{
			Version = P_0;
		}
	}
}
namespace CraftableShipSystemUpgrader
{
	[BepInPlugin("CraftableShipSystemUpgrader", "CraftableShipSystemUpgrader", "1.0.0")]
	[BepInProcess("Void Crew.exe")]
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	public class BepinPlugin : BaseUnityPlugin
	{
		internal static ManualLogSource Log;

		private void Awake()
		{
			//IL_001d: Unknown result type (might be due to invalid IL or missing references)
			//IL_001e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0023: Unknown result type (might be due to invalid IL or missing references)
			//IL_0027: Unknown result type (might be due to invalid IL or missing references)
			//IL_0031: Unknown result type (might be due to invalid IL or missing references)
			//IL_0036: Unknown result type (might be due to invalid IL or missing references)
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_0046: Unknown result type (might be due to invalid IL or missing references)
			//IL_0052: Unknown result type (might be due to invalid IL or missing references)
			//IL_005a: Unknown result type (might be due to invalid IL or missing references)
			//IL_006c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0071: Unknown result type (might be due to invalid IL or missing references)
			Log = ((BaseUnityPlugin)this).Logger;
			GUIDUnion val = default(GUIDUnion);
			((GUIDUnion)(ref val))..ctor("49991ea1005c0134cb8e8febcd0dfe8b");
			CraftingRules recipe = Craftables.Instance.GetRecipe(val);
			recipe.CraftingMethod = (CraftMethod)2;
			recipe.Creation = new ResourceCurrency((ResourceType)2, 24);
			Craftables.Instance.SetRecipe(val, "CraftableShipSystemUpgrader", recipe);
			Unlocks.Instance.SetUnlockOptions(val, "CraftableShipSystemUpgrader", new UnlockOptions
			{
				RankRequirement = 30,
				UnlockCriteria = (UnlockCriteriaType)2
			});
			((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin CraftableShipSystemUpgrader is loaded!");
		}
	}
	public class VoidManagerPlugin : VoidPlugin
	{
		public override MultiplayerType MPType => (MultiplayerType)10;

		public override string Author => "Dragon";

		public override string Description => "Makes ship system upgraders craftable. All must have.";
	}
	public static class MyPluginInfo
	{
		public const string PLUGIN_GUID = "CraftableShipSystemUpgrader";

		public const string PLUGIN_NAME = "CraftableShipSystemUpgrader";

		public const string PLUGIN_VERSION = "1.0.0";
	}
}