Decompiled source of NovasBoomboxes v1.0.0

NovasBoomboxes.dll

Decompiled 7 months ago
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.Configuration;
using BepInEx.Logging;
using HarmonyLib;
using PersonalBoombox;
using UnityEngine;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = "")]
[assembly: AssemblyCompany("NovasBoomboxes")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyDescription("A template for Lethal Company")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("NovasBoomboxes")]
[assembly: AssemblyTitle("NovasBoomboxes")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
namespace NovasBoomboxes;

[BepInPlugin("CoomerCompany.NovasBoomboxes", "Novas_Boomboxes", "1.0.0")]
[BepInProcess("Lethal Company.exe")]
[BepInDependency("ImoutoSama.PersonalBoombox", "1.3.0")]
public class CustomBoombox : BaseUnityPlugin
{
	private const string modGUID = "CoomerCompany.NovasBoomboxes";

	private const string modName = "Novas_Boomboxes";

	private const string modVersion = "1.0.0";

	private readonly Harmony harmony = new Harmony("CoomerCompany.NovasBoomboxes");

	internal ManualLogSource logger;

	public ConfigEntry<bool> overridePriceFlagConfig;

	public ConfigEntry<int> overridePriceValueConfig;

	private void Awake()
	{
		logger = Logger.CreateLogSource("CoomerCompany.NovasBoomboxes");
		logger.LogInfo((object)"Plugin Novas_Boomboxes has been added!");
		overridePriceFlagConfig = ((BaseUnityPlugin)this).Config.Bind<bool>("General", "Override Price Flag", false, "If you want to override price of the boomboxes, you MUST set this to true.");
		overridePriceValueConfig = ConfigBindClamp("General", "Override Price Value", 30, "Overrides the price of the boomboxes by this value. Clamped from 0 to 1000.", 0, 1000);
		RequestData obj = PersonalBoomboxPlugin.AddFromAssemblyDll(Assembly.GetExecutingAssembly().Location);
		obj.overridePriceFlag = overridePriceFlagConfig.Value;
		obj.overridePriceValue = overridePriceValueConfig.Value;
	}

	public ConfigEntry<int> ConfigBindClamp(string section, string key, int defaultValue, string description, int min, int max)
	{
		ConfigEntry<int> obj = ((BaseUnityPlugin)this).Config.Bind<int>(section, key, defaultValue, description);
		obj.Value = Mathf.Clamp(obj.Value, min, max);
		return obj;
	}
}