using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using SpookularSpiders;
using SpookySpiders.Patches;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("SpookularSpiders")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SpookularSpiders")]
[assembly: AssemblyCopyright("Copyright © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("69711c0e-0731-4f0c-a3d6-89d763525eac")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace SpookularSpiders
{
[BepInPlugin("Timetuhgetspookeh", "SpookularSpiders", "1.0.0")]
public class SpiderModBase : BaseUnityPlugin
{
private const string modGUID = "Timetuhgetspookeh";
private const string modName = "SpookularSpiders";
private const string modVersion = "1.0.0";
private readonly Harmony harmony = new Harmony("Timetuhgetspookeh");
private static SpiderModBase Instance;
internal ManualLogSource mls;
internal static List<AudioClip> SoundFX;
internal static AssetBundle Bundle;
private void Awake()
{
if ((Object)(object)Instance == (Object)null)
{
Instance = this;
}
mls = Logger.CreateLogSource("Timetuhgetspookeh");
mls.LogInfo((object)"arachnaphobia");
harmony.PatchAll(typeof(SpiderModBase));
harmony.PatchAll(typeof(SandSpiderPatch));
mls = ((BaseUnityPlugin)this).Logger;
SoundFX = new List<AudioClip>();
string location = ((BaseUnityPlugin)Instance).Info.Location;
location = location.TrimEnd("SpookularSpiders.dll".ToCharArray());
Bundle = AssetBundle.LoadFromFile(location + "clicking");
if ((Object)(object)Bundle != (Object)null)
{
mls.LogInfo((object)"Succeded to load asset bundle");
SoundFX = Bundle.LoadAllAssets<AudioClip>().ToList();
}
else
{
mls.LogError((object)"Failed to load assetbundle");
}
}
}
}
namespace SpookySpiders.Patches
{
[HarmonyPatch(typeof(StartOfRound))]
internal class SandSpiderPatch
{
[HarmonyPatch("Start")]
[HarmonyPostfix]
private static void OverrideAudio(StartOfRound __instance)
{
__instance.shipIntroSpeechSFX = SpiderModBase.SoundFX[0];
}
}
}