using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Linq; 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 Microsoft.CodeAnalysis; using PEAKLib.Core; using Peak.Afflictions; using UnityEngine; using UnityEngine.UI; using Zorro.Core.Serizalization; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] [assembly: IgnoresAccessChecksTo("Assembly-CSharp")] [assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] [assembly: AssemblyCompany("Shiro.ChocolateMilk")] [assembly: AssemblyConfiguration("Debug")] [assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyInformationalVersion("0.1.0")] [assembly: AssemblyProduct("Shiro.ChocolateMilk")] [assembly: AssemblyTitle("ChocolateMilkPlugin")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("0.1.0.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] namespace System.Runtime.CompilerServices { [CompilerGenerated] [Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)] internal sealed class NullableAttribute : Attribute { public readonly byte[] NullableFlags; public NullableAttribute(byte P_0) { NullableFlags = new byte[1] { P_0 }; } public NullableAttribute(byte[] P_0) { NullableFlags = P_0; } } [CompilerGenerated] [Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)] internal sealed class NullableContextAttribute : Attribute { public readonly byte Flag; public NullableContextAttribute(byte P_0) { Flag = P_0; } } [CompilerGenerated] [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 BepInEx { [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)] [Conditional("CodeGeneration")] [Embedded] internal sealed class BepInAutoPluginAttribute : Attribute { public BepInAutoPluginAttribute(string? id = null, string? name = null, string? version = null) { } } } namespace BepInEx.Preloader.Core.Patching { [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)] [Conditional("CodeGeneration")] [Embedded] internal sealed class PatcherAutoPluginAttribute : Attribute { public PatcherAutoPluginAttribute(string? id = null, string? name = null, string? version = null) { } } } namespace Microsoft.CodeAnalysis { [Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace ChocolateMilkPlugin { [HarmonyPatch(typeof(Affliction), "CreateBlankAffliction")] internal static class AfflictionFactoryPatch { [HarmonyPostfix] private static void Postfix(AfflictionType afflictionType, ref Affliction __result) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Invalid comparison between Unknown and I4 if ((int)afflictionType == 24501) { __result = (Affliction)(object)new Affliction_ChocolateWeightless(); } } } [Serializable] public class Affliction_ChocolateWeightless : Affliction { public const int TypeId = 24501; public static readonly AfflictionType Type = (AfflictionType)24501; private static readonly Color ChocolateColor = new Color(0.42f, 0.18f, 0.07f); internal bool removing; public override AfflictionType GetAfflictionType() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) return Type; } public override void OnApplied() { removing = false; if ((Object)(object)base.character != (Object)null && base.character.IsLocal) { base.character.refs.afflictions.SetStatus((STATUSTYPE)7, 0f, true); } Plugin.Log.LogInfo((object)$"Chocolate Weightless applied for {base.totalTime} seconds."); } public override void Stack(Affliction incomingAffliction) { base.totalTime = incomingAffliction.totalTime; base.timeElapsed = 0f; removing = false; if ((Object)(object)base.character != (Object)null && base.character.IsLocal) { base.character.refs.afflictions.SetStatus((STATUSTYPE)7, 0f, true); } Plugin.Log.LogInfo((object)$"Chocolate Weightless refreshed to {base.totalTime} seconds."); } public override void UpdateEffect() { if (!((Object)(object)base.character == (Object)null) && base.character.IsLocal) { base.character.refs.afflictions.SetStatus((STATUSTYPE)7, 0f, true); float num = 0f; if (base.totalTime > 0f) { num = Mathf.Clamp01((base.totalTime - base.timeElapsed) / base.totalTime); } } } public override void UpdateEffectNetworked() { //IL_0064: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)base.character == (Object)null) && !base.character.refs.afflictions.afflictionList.Exists((Affliction affliction) => affliction is Affliction_Invincibility)) { base.character.refs.customization.PulseStatus(ChocolateColor, Mathf.Clamp01(base.totalTime - base.timeElapsed)); } } public override void OnRemoved() { removing = true; if ((Object)(object)base.character != (Object)null && base.character.IsLocal) { WeightPatch.RecalculateWeight(base.character.refs.afflictions); } Plugin.Log.LogInfo((object)"Chocolate Weightless removed."); } public override void Serialize(BinarySerializer serializer) { serializer.WriteFloat(base.totalTime); } public override void Deserialize(BinaryDeserializer serializer) { base.totalTime = serializer.ReadFloat(); } } [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInPlugin("Shiro.ChocolateMilk", "ChocolateMilkPlugin", "0.1.0")] public class Plugin : BaseUnityPlugin { private Harmony _harmony = null; public const string Id = "Shiro.ChocolateMilk"; internal static ManualLogSource Log { get; private set; } internal static ConfigEntry WeightlessDurationSeconds { get; private set; } public static string Name => "ChocolateMilkPlugin"; public static string Version => "0.1.0"; private void Awake() { //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Expected O, but got Unknown Log = ((BaseUnityPlugin)this).Logger; WeightlessDurationSeconds = ((BaseUnityPlugin)this).Config.Bind("General", "WeightlessDurationSeconds", 120f, "How many seconds Chocolate Milk makes the player weightless."); _harmony = new Harmony("Shiro.ChocolateMilk"); _harmony.PatchAll(); LocalizedText.mainTable["NAME_CHOCOLATE MILK"] = new List(15) { "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk", "Chocolate Milk" }; BundleLoader.LoadBundleWithName((BaseUnityPlugin)(object)this, "chocolatemilk.peakbundle", (Action)delegate(PeakBundle bundle) { GameObject val = bundle.LoadAsset("ChocolateMilk.prefab"); if ((Object)(object)val == (Object)null) { Log.LogError((object)"Could not find ChocolateMilk.prefab!"); } else { float num = Mathf.Max(1f, WeightlessDurationSeconds.Value); Action_ApplyAffliction val2 = val.GetComponent(); if ((Object)(object)val2 == (Object)null) { val2 = val.AddComponent(); Log.LogWarning((object)"ChocolateMilk had no Action_ApplyAffliction; created one at runtime."); } ((ItemAction)val2).OnCastFinished = true; val2.affliction = (Affliction)(object)new Affliction_ChocolateWeightless { totalTime = num }; bundle.Mod.RegisterContent(); Log.LogInfo((object)("Chocolate Milk loaded! " + $"Weightless duration: {num}s")); } }); } } [HarmonyPatch(typeof(StaminaBar), "Update")] internal static class StaminaBarPatch { private static readonly Color ChocolateBrown = new Color(0.42f, 0.18f, 0.07f); private static readonly Dictionary OriginalColors = new Dictionary(); [HarmonyPostfix] private static void Postfix(StaminaBar __instance) { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) Character observedCharacter = Character.observedCharacter; if ((Object)(object)observedCharacter == (Object)null) { return; } Affliction val = default(Affliction); bool flag = observedCharacter.refs.afflictions.HasAfflictionType(Affliction_ChocolateWeightless.Type, ref val); bool isInvincible = observedCharacter.data.isInvincible; __instance.shield.SetActive(isInvincible || flag); Image[] componentsInChildren = __instance.shield.GetComponentsInChildren(true); Image[] array = componentsInChildren; foreach (Image val2 in array) { if (!OriginalColors.ContainsKey(val2)) { OriginalColors[val2] = ((Graphic)val2).color; } } if (isInvincible) { RestoreVanillaColors(componentsInChildren); } else if (flag) { Image[] array2 = componentsInChildren; foreach (Image val3 in array2) { Color val4 = OriginalColors[val3]; ((Graphic)val3).color = new Color(ChocolateBrown.r, ChocolateBrown.g, ChocolateBrown.b, val4.a); } } else { RestoreVanillaColors(componentsInChildren); } } private static void RestoreVanillaColors(Image[] images) { //IL_0022: Unknown result type (might be due to invalid IL or missing references) foreach (Image val in images) { if (OriginalColors.TryGetValue(val, out var value)) { ((Graphic)val).color = value; } } } } [HarmonyPatch(typeof(CharacterAfflictions), "UpdateWeight")] internal static class WeightPatch { private static readonly MethodInfo? UpdateWeightMethod = AccessTools.Method(typeof(CharacterAfflictions), "UpdateWeight", (Type[])null, (Type[])null); [HarmonyPrefix] private static bool Prefix(CharacterAfflictions __instance) { Character character = __instance.character; if ((Object)(object)character == (Object)null) { return true; } if (!character.IsLocal) { return true; } if (!__instance.afflictionList.Any((Affliction affliction) => affliction is Affliction_ChocolateWeightless affliction_ChocolateWeightless && !affliction_ChocolateWeightless.removing)) { return true; } __instance.SetStatus((STATUSTYPE)7, 0f, true); return false; } internal static void RecalculateWeight(CharacterAfflictions afflictions) { if (UpdateWeightMethod == null) { Plugin.Log.LogError((object)"Couldn't find CharacterAfflictions.UpdateWeight!"); } else { UpdateWeightMethod.Invoke(afflictions, null); } } } } namespace System.Diagnostics.CodeAnalysis { [AttributeUsage(AttributeTargets.Parameter, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class ConstantExpectedAttribute : Attribute { public object? Min { get; set; } public object? Max { get; set; } } [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class ExperimentalAttribute : Attribute { public string DiagnosticId { get; } public string? UrlFormat { get; set; } public ExperimentalAttribute(string diagnosticId) { DiagnosticId = diagnosticId; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)] [ExcludeFromCodeCoverage] internal sealed class MemberNotNullAttribute : Attribute { public string[] Members { get; } public MemberNotNullAttribute(string member) { Members = new string[1] { member }; } public MemberNotNullAttribute(params string[] members) { Members = members; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)] [ExcludeFromCodeCoverage] internal sealed class MemberNotNullWhenAttribute : Attribute { public bool ReturnValue { get; } public string[] Members { get; } public MemberNotNullWhenAttribute(bool returnValue, string member) { ReturnValue = returnValue; Members = new string[1] { member }; } public MemberNotNullWhenAttribute(bool returnValue, params string[] members) { ReturnValue = returnValue; Members = members; } } [AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class SetsRequiredMembersAttribute : Attribute { } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class StringSyntaxAttribute : Attribute { public const string CompositeFormat = "CompositeFormat"; public const string DateOnlyFormat = "DateOnlyFormat"; public const string DateTimeFormat = "DateTimeFormat"; public const string EnumFormat = "EnumFormat"; public const string GuidFormat = "GuidFormat"; public const string Json = "Json"; public const string NumericFormat = "NumericFormat"; public const string Regex = "Regex"; public const string TimeOnlyFormat = "TimeOnlyFormat"; public const string TimeSpanFormat = "TimeSpanFormat"; public const string Uri = "Uri"; public const string Xml = "Xml"; public string Syntax { get; } public object?[] Arguments { get; } public StringSyntaxAttribute(string syntax) { Syntax = syntax; Arguments = new object[0]; } public StringSyntaxAttribute(string syntax, params object?[] arguments) { Syntax = syntax; Arguments = arguments; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class UnscopedRefAttribute : Attribute { } } namespace System.Runtime.Versioning { [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class RequiresPreviewFeaturesAttribute : Attribute { public string? Message { get; } public string? Url { get; set; } public RequiresPreviewFeaturesAttribute() { } public RequiresPreviewFeaturesAttribute(string? message) { Message = message; } } } namespace System.Runtime.CompilerServices { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] internal sealed class IgnoresAccessChecksToAttribute : Attribute { public IgnoresAccessChecksToAttribute(string assemblyName) { } } [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class CallerArgumentExpressionAttribute : Attribute { public string ParameterName { get; } public CallerArgumentExpressionAttribute(string parameterName) { ParameterName = parameterName; } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class CollectionBuilderAttribute : Attribute { public Type BuilderType { get; } public string MethodName { get; } public CollectionBuilderAttribute(Type builderType, string methodName) { BuilderType = builderType; MethodName = methodName; } } [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class CompilerFeatureRequiredAttribute : Attribute { public const string RefStructs = "RefStructs"; public const string RequiredMembers = "RequiredMembers"; public string FeatureName { get; } public bool IsOptional { get; set; } public CompilerFeatureRequiredAttribute(string featureName) { FeatureName = featureName; } } [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute { public string[] Arguments { get; } public InterpolatedStringHandlerArgumentAttribute(string argument) { Arguments = new string[1] { argument }; } public InterpolatedStringHandlerArgumentAttribute(params string[] arguments) { Arguments = arguments; } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class InterpolatedStringHandlerAttribute : Attribute { } [EditorBrowsable(EditorBrowsableState.Never)] [ExcludeFromCodeCoverage] internal static class IsExternalInit { } [AttributeUsage(AttributeTargets.Method, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class ModuleInitializerAttribute : Attribute { } [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class OverloadResolutionPriorityAttribute : Attribute { public int Priority { get; } public OverloadResolutionPriorityAttribute(int priority) { Priority = priority; } } [AttributeUsage(AttributeTargets.Parameter, Inherited = true, AllowMultiple = false)] [ExcludeFromCodeCoverage] internal sealed class ParamCollectionAttribute : Attribute { } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class RequiredMemberAttribute : Attribute { } [AttributeUsage(AttributeTargets.Parameter, Inherited = false)] [EditorBrowsable(EditorBrowsableState.Never)] [ExcludeFromCodeCoverage] internal sealed class RequiresLocationAttribute : Attribute { } [AttributeUsage(AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Interface, Inherited = false)] [ExcludeFromCodeCoverage] internal sealed class SkipLocalsInitAttribute : Attribute { } }