using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using BepInEx;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using ResetStats.Cards;
using UnboundLib.Cards;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("Stat-Reset-mod")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("Stat-Reset-mod")]
[assembly: AssemblyTitle("Stat-Reset-mod")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.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]
[Microsoft.CodeAnalysis.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;
}
}
}
namespace ResetStats
{
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInPlugin("com.Viper2234.Rounds.stat-reset", "Stat Reset", "0.0.0")]
[BepInProcess("Rounds.exe")]
public class Stat_Reset : BaseUnityPlugin
{
private const string ModId = "com.Viper2234.Rounds.stat-reset";
private const string ModName = "Stat Reset";
public const string Version = "0.0.0";
public const string ModInitials = "SR";
public static Stat_Reset instance { get; private set; }
private void Awake()
{
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_000c: Expected O, but got Unknown
Harmony val = new Harmony("com.Viper2234.Rounds.stat-reset");
val.PatchAll();
}
private void Start()
{
instance = this;
CustomCard.BuildCard<StatReset>();
}
}
}
namespace ResetStats.Cards
{
internal class StatReset : CustomCard
{
public override void SetupCard(CardInfo cardInfo, Gun gun, ApplyCardStats cardStats, CharacterStatModifiers statModifiers, Block block)
{
}
public void ResetGunStats(Gun gun)
{
Type type = ((object)gun).GetType();
MethodInfo method = type.GetMethod("ResetStats", BindingFlags.Instance | BindingFlags.NonPublic);
if (method != null)
{
method.Invoke(gun, null);
Debug.Log("Gun stats have been reset.");
}
else
{
Debug.LogWarning("ResetStats method not found.");
}
}
public void ResetBlockStats(Block block)
{
Type type = ((object)block).GetType();
MethodInfo method = type.GetMethod("ResetStats", BindingFlags.Instance | BindingFlags.NonPublic);
if (method != null)
{
method.Invoke(block, null);
Debug.Log("Block stats have been reset.");
}
else
{
Debug.LogWarning("ResetStats method not found.");
}
}
public void ResetStatModifiyingStats(CharacterStatModifiers statModifiers)
{
Type type = ((object)statModifiers).GetType();
MethodInfo method = type.GetMethod("ResetStats", BindingFlags.Instance | BindingFlags.NonPublic);
if (method != null)
{
method.Invoke(statModifiers, null);
Debug.Log("Block stats have been reset.");
}
else
{
Debug.LogWarning("ResetStats method not found.");
}
}
public override void OnAddCard(Player player, Gun gun, GunAmmo gunAmmo, CharacterData data, HealthHandler health, Gravity gravity, Block block, CharacterStatModifiers characterStats)
{
if ((Object)(object)gun != (Object)null)
{
ResetGunStats(gun);
}
if ((Object)(object)block != (Object)null)
{
ResetBlockStats(block);
}
if ((Object)(object)characterStats != (Object)null)
{
ResetStatModifiyingStats(characterStats);
}
}
public override void OnRemoveCard(Player player, Gun gun, GunAmmo gunAmmo, CharacterData data, HealthHandler health, Gravity gravity, Block block, CharacterStatModifiers characterStats)
{
}
protected override string GetTitle()
{
return "Stat Reset";
}
protected override string GetDescription()
{
return "Sets all stats to default";
}
protected override GameObject GetCardArt()
{
return null;
}
protected override Rarity GetRarity()
{
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0005: Unknown result type (might be due to invalid IL or missing references)
return (Rarity)0;
}
protected override CardInfoStat[] GetStats()
{
//IL_0009: Unknown result type (might be due to invalid IL or missing references)
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
//IL_0015: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_002b: Unknown result type (might be due to invalid IL or missing references)
//IL_002d: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Expected O, but got Unknown
return (CardInfoStat[])(object)new CardInfoStat[1]
{
new CardInfoStat
{
positive = true,
stat = "ALL STATS",
amount = "Default",
simepleAmount = (SimpleAmount)0
}
};
}
protected override CardThemeColorType GetTheme()
{
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0005: Unknown result type (might be due to invalid IL or missing references)
return (CardThemeColorType)7;
}
public override string GetModName()
{
return "SR";
}
}
}