using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using HarmonyLib;
using UnityEngine;
using loaforcsSoundAPI;
using loaforcsSoundAPI.SoundPacks.Data.Conditions;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("LalalatteLoadstone")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("LalalatteLoadstone")]
[assembly: AssemblyCopyright("Copyright © 2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("ca66baa5-bd5a-475e-9f3c-95df9bc6940e")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace LalalatteLoadstone;
[BepInPlugin("ZetaArcade.LalalatteLoadstone", "LalalatteLoadstone", "1.0.2")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class LalalatteBase : BaseUnityPlugin
{
private const string modGUID = "ZetaArcade.LalalatteLoadstone";
private const string modName = "LalalatteLoadstone";
private const string modVersion = "1.0.2";
private readonly Harmony harmony = new Harmony("ZetaArcade.LalalatteLoadstone");
private void Awake()
{
SoundAPI.RegisterAll(Assembly.GetExecutingAssembly());
((BaseUnityPlugin)this).Logger.LogInfo((object)"Loadstone music replacements are loaded!");
}
}
[SoundAPICondition("LethalCompany:weather:name", false, null)]
public class WeatherNameCondition : Condition
{
public string Value { get; internal set; }
public override bool Evaluate(IContext context)
{
if (!Object.op_Implicit((Object)(object)StartOfRound.Instance))
{
return false;
}
if (!Object.op_Implicit((Object)(object)StartOfRound.Instance.currentLevel))
{
return false;
}
string b = ((object)(LevelWeatherType)(ref StartOfRound.Instance.currentLevel.currentWeather)).ToString();
return string.Equals(Value, b, StringComparison.InvariantCultureIgnoreCase);
}
}